From 31a1779a8603269ce3d5e010a17a0bbd176a9cd2 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Mon, 6 Jul 2020 12:45:57 +0200 Subject: [PATCH] Keep building libraries/samples/tests in Travis CI tests This is useful to see all the warnings at once instead of having to run many builds to see them all. --- build/tools/travis-ci.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build/tools/travis-ci.sh b/build/tools/travis-ci.sh index ce02523dde..7ea4a21cd4 100755 --- a/build/tools/travis-ci.sh +++ b/build/tools/travis-ci.sh @@ -70,13 +70,13 @@ case $wxTOOLSET in echo 'travis_fold:start:building' echo 'Building...' - make $wxBUILD_ARGS + make -k $wxBUILD_ARGS echo 'travis_fold:end:building' echo 'travis_fold:start:tests' echo 'Building tests...' [ "$wxSKIP_GUI" = 1 ] || make -C tests $wxBUILD_ARGS failtest - make -C tests $wxBUILD_ARGS $wxMAKEFILE_FLAGS + make -k -C tests $wxBUILD_ARGS $wxMAKEFILE_FLAGS echo 'travis_fold:end:tests' if [ "$wxSKIP_TESTING" = 1 ]; then @@ -103,7 +103,7 @@ case $wxTOOLSET in echo 'travis_fold:start:samples' echo 'Building samples...' - (test "$wxSKIP_SAMPLES" && echo 'SKIPPED') || make samples + (test "$wxSKIP_SAMPLES" && echo 'SKIPPED') || make -k samples echo 'travis_fold:end:samples' echo 'travis_fold:start:install'