Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
2734415d8221b47b9a23debd03bac1a2951b8c10
[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 addons:
14   apt:
15     update: true
16     allow_unauthenticated: yes
17     packages:
18     - cmake
19     - valgrind
20     - default-jdk
21     - gfortran
22     - libboost-dev
23     - libboost-all-dev
24     - libdw-dev
25     - libevent-dev
26     - libunwind8-dev
27 #    - pybind11-dev # Not available in Xenial
28   homebrew:
29     packages:
30     - python
31   coverity_scan:
32     project:
33       name: "simgrid/simgrid"
34       description: "Build submitted via Travis CI"
35     notification_email: martin.quinson@ens-rennes.fr
36     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 ."
37     build_command:   "make VERBOSE=1"
38     branch_pattern: coverity
39
40 # Don't install lua from Debian as we need 5.3 and don't have a backport.
41 #   Installing lua from the source does not make any dynamic library.
42 #   - curl http://www.lua.org/ftp/lua-5.3.1.tar.gz | tar xz
43 #   - cd lua-5.3.1 
44 #   -   if [ ${TRAVIS_OS_NAME} = 'linux' ] ; then make linux ; else make macosx ; fi
45 #   -   make INSTALL_TOP=$TRAVIS_BUILD_DIR/LuaInstall install
46 #   - cd ..
47 #   - ls -lR $TRAVIS_BUILD_DIR/LuaInstall
48
49 script:
50    - if [[ "$TRAVIS_OS_NAME" == "osx"   ]]; then 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 .; fi
51    - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then 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) ; fi
52    # run make and ctest in the sonar wrapper on master/linux; run it directly in PR or OSX
53    - if [[ -e Makefile ]] && [[ "$TRAVIS_OS_NAME" == "linux" ]] && [[ "${TRAVIS_PULL_REQUEST}" == "false" ]]; then ./tools/internal/travis-sonarqube.sh make -j2 VERBOSE=1; else make -j2 VERBOSE=1 && ctest -j2 --output-on-failure ; fi
54 notifications:
55   recipients:
56     - martin.quinson@ens-rennes.fr
57   email:
58     on_success: change
59     on_failure: always
60   irc:
61     on_success: change
62     on_failure: always
63     channels:
64       - "irc.debian.org#simgrid"
65   template:
66     - "%{repository}/%{branch} (%{commit} - %{author}): %{message}"
67 os:
68   - linux
69   - osx