Skip to content

Commit 4ad67d0

Browse files
committed
Move make check into an independent execution on travis
1 parent e929341 commit 4ad67d0

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

.travis.yml

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -84,14 +84,13 @@ script:
8484
qemu-arm -L /usr/arm-linux-gnueabi/ ./.libs/http_utils ;
8585
qemu-arm -L /usr/arm-linux-gnueabi/ ./.libs/threaded ;
8686
fi
87-
else
88-
make check ;
89-
if [ "$VALGRIND" = "valgrind" ]; then make check-valgrind; fi;
90-
cat test/test-suite.log ;
91-
ls -l /usr/local/lib/ ;
92-
ls -l /usr/lib/ ;
93-
if [ "$TRAVIS_OS_NAME" = "linux" ]; then cd ../src/; cppcheck --error-exitcode=1 .; cd ../build; fi
94-
fi
87+
- make check
88+
- cat test/test-suite.log
89+
- if [ "$VALGRIND" = "valgrind" ]; then make check-valgrind; fi;
90+
- if [ "$VALGRIND" = "valgrind" ]; then cat test/test-suite-memcheck.log; fi;
91+
- ls -l /usr/local/lib/
92+
- ls -l /usr/lib/
93+
- if [ "$TRAVIS_OS_NAME" = "linux" ]; then cd ../src/; cppcheck --error-exitcode=1 .; cd ../build; fi
9594
after_success:
9695
- if [ "$DEBUG" = "debug" ] && [ "$COVERAGE" = "coverage" ] && [ "$TRAVIS_OS_NAME" = "linux" ]; then bash <(curl -s https://codecov.io/bash); fi
9796
matrix:

0 commit comments

Comments
 (0)