This repository has been archived by the owner on Aug 31, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 97
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: attempt at separate linter CI job
Refs: #71
- Loading branch information
1 parent
f7bfec8
commit 183439e
Showing
2 changed files
with
16 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#!/bin/bash | ||
set -ev | ||
|
||
# always change the working directory to the project's root directory | ||
cd $(dirname $0)/.. | ||
|
||
if [ "${LINTER_ONLY}" = "true" ]; then | ||
make lint | ||
else | ||
make -j2 test-ci | ||
fi |