Skip to content

Commit 3a98efe

Browse files
committed
Move make check into an independent execution on travis
1 parent 27a430f commit 3a98efe

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

.travis.yml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -82,13 +82,11 @@ script:
8282
qemu-arm -L /usr/arm-linux-gnueabi/ ./.libs/http_utils ;
8383
qemu-arm -L /usr/arm-linux-gnueabi/ ./.libs/threaded ;
8484
fi
85-
else
86-
make check ;
87-
cat test/test-suite.log ;
88-
ls -l /usr/local/lib/ ;
89-
ls -l /usr/lib/ ;
90-
if [ "$TRAVIS_OS_NAME" = "linux" ]; then cd ../src/; cppcheck --error-exitcode=1 .; cd ../build; fi
91-
fi
85+
- make check
86+
- cat test/test-suite.log
87+
- ls -l /usr/local/lib/
88+
- ls -l /usr/lib/
89+
- if [ "$TRAVIS_OS_NAME" = "linux" ]; then cd ../src/; cppcheck --error-exitcode=1 .; cd ../build; fi
9290
after_success:
9391
- if [ "$DEBUG" = "debug" ] && [ "$COVERAGE" = "coverage" ] && [ "$TRAVIS_OS_NAME" = "linux" ]; then bash <(curl -s https://codecov.io/bash); fi
9492
matrix:

0 commit comments

Comments
 (0)