Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
replace SIMIX_process_count by simgrid_get_actor_count
[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 jobs:
40   include:
41     - os: linux
42       script:
43       - sudo apt-get update -qq
44       - sudo apt-get install cmake valgrind gfortran libboost-dev libboost-all-dev libdw-dev libevent-dev libunwind8-dev pybind11-dev
45       - (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))
46       - make -j2 VERBOSE=1 all tests && ctest -j2 --output-on-failure
47     - os: windows
48       script:
49       - mv "C:/Program Files/Git/usr/bin/sh.exe" "sh-ignored.exe"
50       -  df -h
51       -  du -hs /tmp || true
52       -  choco install boost-msvc-12 python jdk8
53       -  export CC=gcc
54       -  export CXX=g++
55       -  export PATH='C:\Python38':'C:\local\boost_1_58_0':$PATH
56       -  export BOOST_LIBRARYDIR='C:/local/boost_1_58_0/lib64-msvc-12.0'
57       -  export BOOST_INCLUDEDIR='C:/local/boost_1_58_0/include'
58       -  export JAVA_HOME='C:/Program Files/Java/jdk1.8.0_211'
59       -  cmake -G "MinGW Makefiles" -Denable_lua=OFF -Denable_documentation=OFF -Denable_java=ON -Denable_smpi=OFF -Denable_mallocators=OFF -Denable_lto=OFF .
60       -  df -h
61       -  du -hs /tmp || true
62       -  mingw32-make.exe VERBOSE=1 java-all && ctest --output-on-failure -R java
63       -  df -h
64       -  du -hc /tmp || true
65     - os: osx
66       osx_image: xcode11
67       script:
68       - export LIBRARY_PATH=/usr/local/lib/gcc/9
69       - 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 .
70       - make -j2 VERBOSE=1 all tests && ctest -j2 --output-on-failure
71 notifications:
72   recipients:
73     - martin.quinson@ens-rennes.fr
74   email:
75     on_success: change
76     on_failure: always
77   irc:
78     on_success: change
79     on_failure: always
80     channels:
81       - "irc.debian.org#simgrid"
82   template:
83     - "%{repository}/%{branch} (%{commit} - %{author}): %{message}"