From: Martin Quinson Date: Fri, 3 Mar 2017 12:29:43 +0000 (+0100) Subject: travis: don't run the tests on OSX when the build failed X-Git-Tag: v3_15~229 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/fca6c9d27543a06d50b622424ad18d4d67d5e837 travis: don't run the tests on OSX when the build failed bin/graphicator is the last built binary. If it exists, then everything else was built too. --- diff --git a/.travis.yml b/.travis.yml index 9634e83d60..106ad7f3d2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -49,8 +49,8 @@ script: - cmake -Denable_documentation=OFF -Denable_coverage=ON -Denable_java=ON -Denable_model-checking=OFF -Denable_lua=OFF -Denable_compile_optimizations=OFF -Denable_smpi=ON -Denable_smpi_MPICH3_testsuite=OFF -Denable_compile_warnings=ON . # run make in the sonar wrapper && run the tests before sonar to get coverage info - ./tools/internal/travis-sonarqube.sh make VERBOSE=1 - # if sonar was not run, run the tests manually - - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then ctest --output-on-failure --timeout 100 ; fi + # if sonar was not run (and if the build succeeded), run the tests manually + - if [[ "$TRAVIS_OS_NAME" == "osx" && -e bin/graphicator ]]; then ctest --output-on-failure --timeout 100 ; fi notifications: recipients: - martin.quinson@ens-rennes.fr