Logo AND Algorithmique Numérique Distribuée

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