Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
travis: cleanups and simplify our use of the apt addon
[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        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);
60        make -j2 VERBOSE=1 all tests;
61        ctest -j2 --output-on-failure;
62      fi
63 notifications:
64   recipients:
65     - martin.quinson@ens-rennes.fr
66   email:
67     on_success: change
68     on_failure: always
69   irc:
70     on_success: change
71     on_failure: always
72     channels:
73       - "irc.debian.org#simgrid"
74   template:
75     - "%{repository}/%{branch} (%{commit} - %{author}): %{message}"
76 os:
77   - linux
78   - osx
79   - windows