Skip to content

Commit 74afa68

Browse files
committed
travis cleanup: no need for install target
This should re-enable linting as a parallel, separate task.
1 parent 1994969 commit 74afa68

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 .. && DIFF=`git diff --name-only master HEAD` && if [ "$DIFF" != "" ]; then python scripts/cpplint.py $DIFF; fi
48+
script: DIFF=`git diff --name-only master HEAD` && if [ "$DIFF" != "" ]; then python scripts/cpplint.py $DIFF; fi

0 commit comments

Comments
 (0)