Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
fix dead links on the webpage, and linkcheck it upon generation
[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   - linkchecker --ignore-url=https://simgrid.org/doc/3 https://simgrid.org
12   artifacts:
13     paths:
14     - public
15   only:
16   - master
17
18 ctest:
19   script:
20   - 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 .
21   - make VERBOSE=1 all tests && ctest --output-on-failure
22
23 release:
24   only:
25   - stable
26   script:
27   - apt update && apt install -y binutils-x86-64-linux-gnu wget unzip zip
28   # Build the linux version of the jarfile without the boost dependency
29   - cmake -Denable_documentation=OFF -Denable_java=ON -Denable_lib_in_jar=ON -Dminimal_java=ON -Denable_compile_optimizations=ON -Denable_smpi=OFF .
30   - make VERBOSE=1 dist simgrid simgrid-java_jar
31   # Get the foreign architectures
32   - wget https://ci.appveyor.com/api/projects/mquinson/simgrid/artifacts/simgrid.jar -O simgrid-windows.jar
33   - export SGVER=`(echo '#include "simgrid/config.h"'; echo SIMGRID_VERSION_MAJOR.SIMGRID_VERSION_MINOR.SIMGRID_VERSION_PATCH)|gcc -E - -Iinclude|tail -1|sed 's/ //g'`
34   - wget https://ci.inria.fr/simgrid/job/SimGrid/build_mode=Debug,node=simgrid-osx-highsierra/lastSuccessfulBuild/artifact/build/SimGrid-${SGVER}/build/simgrid.jar -O simgrid-mac.jar
35   # Open all jar files, and strip them
36   - mkdir content ; cd content
37   - for j in  ../simgrid.jar ../simgrid-windows.jar ../simgrid-mac.jar ; do unzip -n $j ; done
38   - strip NATIVE/*/*/*.so
39   - x86_64-linux-gnu-strip NATIVE/*/*/lib*dll
40   - zip -r ../SimGrid-${SGVER}.jar *
41   artifacts:
42     paths:
43     - SimGrid-*.jar
44     - SimGrid-*.tar.gz