We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3d9eba2 + 74afa68 commit 47f8558Copy full SHA for 47f8558
.travis.yml
@@ -38,14 +38,11 @@ addons:
38
packages:
39
- libwww-perl
40
41
-install:
42
- - chmod a+x regression/failed-tests-printer.pl
43
- - cd src && make minisat2-download
44
-
45
script:
46
- - make CXXFLAGS="-Wall -O2 -g -Werror -Wno-deprecated-register -pedantic -Wno-sign-compare" -j2 && cd ../regression && make test
+ - make -C src minisat2-download
+ - make -C src CXXFLAGS="-Wall -O2 -g -Werror -Wno-deprecated-register -pedantic -Wno-sign-compare" -j2 && make -C regression test
47
48
matrix:
49
include:
50
- env: NAME="CPP-LINT"
51
- script: cd .. && python scripts/cpplint.py `git diff --name-only master HEAD`
+ script: DIFF=`git diff --name-only master HEAD` && if [ "$DIFF" != "" ]; then python scripts/cpplint.py $DIFF; fi
0 commit comments