Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
really build on mojave
[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: xenial
9 language: cpp
10 compiler:
11    - gcc
12 #  - clang 
13 jdk:
14    - openjdk11
15 addons:
16   apt:
17     update: true
18     allow_unauthenticated: yes
19     packages:
20     - cmake
21     - valgrind
22     - gfortran
23     - libboost-dev
24     - libboost-all-dev
25     - libdw-dev
26     - libevent-dev
27     - libunwind8-dev
28 #    - pybind11-dev # Not available in Xenial
29   homebrew:
30     packages:
31     - python
32   coverity_scan:
33     project:
34       name: "simgrid/simgrid"
35       description: "Build submitted via Travis CI"
36     notification_email: martin.quinson@ens-rennes.fr
37     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 ."
38     build_command:   "make VERBOSE=1"
39     branch_pattern: coverity
40
41 # Don't install lua from Debian as we need 5.3 and don't have a backport.
42 #   Installing lua from the source does not make any dynamic library.
43 #   - curl http://www.lua.org/ftp/lua-5.3.1.tar.gz | tar xz
44 #   - cd lua-5.3.1 
45 #   -   if [ ${TRAVIS_OS_NAME} = 'linux' ] ; then make linux ; else make macosx ; fi
46 #   -   make INSTALL_TOP=$TRAVIS_BUILD_DIR/LuaInstall install
47 #   - cd ..
48 #   - ls -lR $TRAVIS_BUILD_DIR/LuaInstall
49
50 jobs:
51   include:
52     - os: linux
53       script:
54       - (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))
55       - make -j2 VERBOSE=1 all tests && ctest -j2 --output-on-failure
56     - os: windows
57       script:
58       - mv "C:/Program Files/Git/usr/bin/sh.exe" "sh-ignored.exe"
59       -  choco install boost-msvc-12 python jdk8
60       -  export CC=gcc
61       -  export CXX=g++
62       -  export PATH='C:\Python37':'C:\local\boost_1_58_0':$PATH
63       -  export BOOST_LIBRARYDIR='C:/local/boost_1_58_0/lib64-msvc-12.0'
64       -  export BOOST_INCLUDEDIR='C:/local/boost_1_58_0/include'
65       -  export JAVA_HOME='C:/Program Files/Java/jdk1.8.0_211'
66       -  cmake -G "MinGW Makefiles" -Denable_lua=OFF -Denable_documentation=OFF -Denable_java=ON -Denable_smpi=OFF -Denable_mallocators=OFF -Denable_lto=OFF .
67       -  mingw32-make.exe VERBOSE=1 java-all && ctest --output-on-failure -R java
68     - os: osx
69       osx_image: xcode11
70       script:
71       - export LIBRARY_PATH=/usr/local/lib/gcc/9
72       - 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 .
73       - make -j2 VERBOSE=1 all tests && ctest -j2 --output-on-failure
74 notifications:
75   recipients:
76     - martin.quinson@ens-rennes.fr
77   email:
78     on_success: change
79     on_failure: always
80   irc:
81     on_success: change
82     on_failure: always
83     channels:
84       - "irc.debian.org#simgrid"
85   template:
86     - "%{repository}/%{branch} (%{commit} - %{author}): %{message}"
87 cache:
88   directories:
89     - ~/mycache