Skip to content

Commit 47f8558

Browse files
Merge pull request #361 from tautschnig/travis-reconfig
Travis reconfig
2 parents 3d9eba2 + 74afa68 commit 47f8558

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

.travis.yml

+3-6
Original file line numberDiff line numberDiff line change
@@ -38,14 +38,11 @@ addons:
3838
packages:
3939
- libwww-perl
4040

41-
install:
42-
- chmod a+x regression/failed-tests-printer.pl
43-
- cd src && make minisat2-download
44-
4541
script:
46-
- make CXXFLAGS="-Wall -O2 -g -Werror -Wno-deprecated-register -pedantic -Wno-sign-compare" -j2 && cd ../regression && make test
42+
- make -C src minisat2-download
43+
- make -C src CXXFLAGS="-Wall -O2 -g -Werror -Wno-deprecated-register -pedantic -Wno-sign-compare" -j2 && make -C regression test
4744

4845
matrix:
4946
include:
5047
- env: NAME="CPP-LINT"
51-
script: cd .. && python scripts/cpplint.py `git diff --name-only master HEAD`
48+
script: DIFF=`git diff --name-only master HEAD` && if [ "$DIFF" != "" ]; then python scripts/cpplint.py $DIFF; fi

0 commit comments

Comments
 (0)