Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
use setters
[simgrid.git] / .gitlab-ci.yml
1 image: simgrid/build-deps
2
3 pages:
4   script:
5   - pip3 install --requirement docs/requirements.txt
6   - cmake -Denable_model-checking=OFF -Denable_documentation=OFF -Denable_coverage=OFF -Denable_java=OFF -Denable_lua=OFF -Denable_compile_optimizations=OFF -Denable_smpi=OFF .
7   - make -j4 python-bindings
8   - cd docs
9   - LC_ALL=C.UTF-8 ./Build.sh
10   - mv build/html ../public
11   artifacts:
12     paths:
13     - public
14   only:
15   - master
16
17 ctest:
18   script:
19   - 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=ON -Denable_compile_warnings=ON .
20   - make VERBOSE=1 all tests && ctest --output-on-failure