From 5d79ab82cedc08b34c8cb7c7b1647e3698431b0a Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Fri, 25 Aug 2017 14:22:43 +0200 Subject: [PATCH] Split building and running tests in 2 steps on Travis CI This might prevent us from running into Travis timeouts in OS X builds so often. --- .travis.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index b9f248aa74..899f0b5993 100644 --- a/.travis.yml +++ b/.travis.yml @@ -44,9 +44,12 @@ script: - echo 'Building...' && echo -en 'travis_fold:start:script.build\\r' - make - echo -en 'travis_fold:end:script.build\\r' - - echo 'Testing...' && echo -en 'travis_fold:start:script.test\\r' - - make -C tests && pushd tests && ./test -t && popd - - echo -en 'travis_fold:end:script.test\\r' + - echo 'Building tests...' && echo -en 'travis_fold:start:script.tests\\r' + - make -C tests + - echo -en 'travis_fold:end:script.tests\\r' + - echo 'Testing...' && echo -en 'travis_fold:start:script.testing\\r' + - pushd tests && ./test -t && popd + - echo -en 'travis_fold:end:script.testing\\r' - echo 'Building samples...' && echo -en 'travis_fold:start:script.samples\\r' - (test "$wxSKIP_SAMPLES" && echo 'SKIPPED') || make samples - echo -en 'travis_fold:end:script.samples\\r'