From 98206975f5672095aa02806ed62a2a417aaaeae6 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Tue, 24 Mar 2020 00:02:38 +0100 Subject: [PATCH] Run compilation failures tests on Travis "failtest" target is not built by default and it's not trivial to change this, as it needs to be built before anything else (and not in parallel with it, as otherwise object files created while building the tests could be removed), so just build it manually before building the tests themselves in Travis CI builds (or at least those of them using configure and make). --- build/tools/travis-ci.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/build/tools/travis-ci.sh b/build/tools/travis-ci.sh index 85d7d6c2dc..3d88b54116 100755 --- a/build/tools/travis-ci.sh +++ b/build/tools/travis-ci.sh @@ -62,6 +62,7 @@ case $wxTOOLSET in echo -en 'travis_fold:end:script.build\\r' echo 'Building tests...' && echo -en 'travis_fold:start:script.tests\\r' + make -C tests $wxJOBS failtest make -C tests $wxJOBS echo -en 'travis_fold:end:script.tests\\r'