Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[cmake] Fix Java binding generation
[simgrid.git] / .travis.yml
1 language: cpp
2 compiler:
3    - gcc
4 #   - clang # does not work for us on debian stable (boost is too old there)
5 before_install: 
6    - sudo apt-get update  -qq
7    - sudo apt-get install -qq doxygen valgrind default-jdk gfortran liblua5.1-dev lua5.1 libboost-dev transfig ghostscript texlive-font-utils
8 script:
9    - cmake -Denable_documentation=OFF -Denable_coverage=OFF -Denable_java=ON -Denable_model-checking=OFF -Denable_lua=ON -Denable_compile_optimizations=ON -Denable_smpi=ON -Denable_smpi_MPICH3_testsuite=ON -Denable_compile_warnings=ON . && make && ctest --output-on-failure --timeout 100
10 branches:
11   only:
12      - master
13 notifications:
14   recipients:
15     - martin.quinson@loria.fr
16   email:
17     on_success: change
18     on_failure: always
19   irc:
20     channels:
21       - "irc.debian.org#simgrid"
22   template:
23     - "%{repository}/%{branch} (%{commit} - %{author}): %{message}"
24 os:
25   - linux
26   - osx
27   - windows