Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
tuto-s4u: explain beforehand what to expect from this content
[simgrid.git] / .gitlab-ci.yml
1 image: debian:testing
2
3 pages:
4   script:
5   - apt update
6   - apt install -y libboost-all-dev libboost-dev python3-pip doxygen fig2dev
7   - pip3 install --requirement docs/requirements.txt 
8   - cd docs
9   - sphinx-build -M html source/ build/
10   - mv build/html ../public
11   artifacts:
12     paths:
13     - public
14   only:
15   - master
16
17 tests:
18   script:
19   - apt update
20   - apt install -y libboost-all-dev libboost-dev cmake chrpath default-jdk valgrind gfortran build-essential libunwind-dev libdw-dev libelf-dev libevent-dev
21   - 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 .
22   - make VERBOSE=1 && ctest --output-on-failure