Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
try to fix broken detection of boost_stacktrace on mojave. Hope it does not break...
[simgrid.git] / .travis.yml
1 # NS3 is disabled because the version in ubuntu precise does not lead
2 # to the same timings (precision error?)
3 # Reenable with 
4 #   cmake -Denable_ns3
5 #   apt-get libns3-dev ns3
6 #
7 #
8 dist: bionic
9 language: cpp
10 compiler:
11    - gcc
12 #  - clang 
13 jdk:
14    - openjdk11
15 addons:
16   apt:
17     packages:
18     - cmake
19     - valgrind
20     - gfortran
21     - libboost-dev
22     - libboost-all-dev
23     - libdw-dev
24     - libevent-dev
25     - libunwind8-dev
26     - pybind11-dev
27   homebrew:
28     packages:
29     - python
30   coverity_scan:
31     project:
32       name: "simgrid/simgrid"
33       description: "Build submitted via Travis CI"
34     notification_email: martin.quinson@ens-rennes.fr
35     build_command_prepend: "cmake -Denable_documentation=OFF -Denable_coverage=ON -Denable_java=OFF -Denable_model-checking=OFF -Denable_lua=OFF -Denable_compile_optimizations=ON -Denable_smpi=ON -Denable_smpi_MPICH3_testsuite=OFF -Denable_compile_warnings=OFF ."
36     build_command:   "make VERBOSE=1"
37     branch_pattern: coverity
38
39 script:
40    - if [[ "$TRAVIS_OS_NAME" == "windows"   ]]; then
41        mv "C:/Program Files/Git/usr/bin/sh.exe" "sh-ignored.exe";
42        choco install boost-msvc-12 python jdk8;
43        export CC=gcc;
44        export CXX=g++;
45        export PATH='C:\Python37':'C:\local\boost_1_58_0':$PATH;
46        export BOOST_LIBRARYDIR='C:/local/boost_1_58_0/lib64-msvc-12.0';
47        export BOOST_INCLUDEDIR='C:/local/boost_1_58_0/include';
48        export JAVA_HOME='C:/Program Files/Java/jdk1.8.0_211';
49        cmake -G "MinGW Makefiles" -Denable_lua=OFF -Denable_documentation=OFF -Denable_java=ON -Denable_smpi=OFF -Denable_mallocators=OFF -Denable_lto=OFF .;
50        mingw32-make.exe VERBOSE=1 java-all; 
51        ctest --output-on-failure -R java;
52      fi
53    - if [[ "$TRAVIS_OS_NAME" == "osx"   ]]; then
54        cmake -Denable_model-checking=OFF -Denable_documentation=OFF -Denable_coverage=ON -Denable_java=ON -Denable_lua=OFF -Denable_compile_optimizations=ON -Denable_smpi=ON -Denable_smpi_MPICH3_testsuite=OFF -Denable_compile_warnings=ON .;
55        make -j2 VERBOSE=1 all tests;
56        ctest -j2 --output-on-failure;
57      fi
58    - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
59        sudo apt-get update -qq;
60        sudo apt-get install cmake valgrind gfortran libboost-dev libboost-all-dev libdw-dev libevent-dev libunwind8-dev pybind11-dev;
61        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);
62        make -j2 VERBOSE=1 all tests;
63        ctest -j2 --output-on-failure;
64      fi
65 notifications:
66   recipients:
67     - martin.quinson@ens-rennes.fr
68   email:
69     on_success: change
70     on_failure: always
71   irc:
72     on_success: change
73     on_failure: always
74     channels:
75       - "irc.debian.org#simgrid"
76   template:
77     - "%{repository}/%{branch} (%{commit} - %{author}): %{message}"
78 os:
79   - linux
80   - osx
81   - windows