From: Martin Quinson Date: Wed, 24 Jul 2019 08:29:55 +0000 (+0200) Subject: travis: manually use apt-get since the apt addon is borken on bionic X-Git-Tag: v3.24~269 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/059afc351bbd60776422b07a243b4b48a03aab3c travis: manually use apt-get since the apt addon is borken on bionic https://travis-ci.community/t/apt-addon-doesnt-run-in-bionic/4061/2 --- diff --git a/.travis.yml b/.travis.yml index badc6a05f1..301758da4b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -56,6 +56,8 @@ script: ctest -j2 --output-on-failure; fi - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then + sudo apt-get update -qq; + sudo apt-get install cmake valgrind gfortran libboost-dev libboost-all-dev libdw-dev libevent-dev libunwind8-dev pybind11-dev; cmake -Denable_model-checking=ON -Denable_documentation=OFF -Denable_coverage=ON -Denable_java=ON -Denable_lua=OFF -Denable_compile_optimizations=ON -Denable_smpi=ON -Denable_smpi_MPICH3_testsuite=ON -Denable_compile_warnings=ON . || (echo XXX CMakeOutput.log; cat /home/travis/build/simgrid/simgrid/CMakeFiles/CMakeOutput.log; echo XXX CMakeError.log;cat /home/travis/build/simgrid/simgrid/CMakeFiles/CMakeError.log; exit 1); make -j2 VERBOSE=1 all tests; ctest -j2 --output-on-failure;