Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
linkcheck doc: we won't fix javasphinx ourselves
[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   # The CSS contains a reference to a font or something, not something we gonna fix on our side
12   # The javasphinx output does not exist in the git, so the "open on GitLab" link is broken.
13   #  I'd like to report this as a bug, but javasphinx seems abandoned upstream. 
14   - linkchecker --check-extern --ignore-url='.*\.css$' --ignore-url=/public/java/org ../public
15   artifacts:
16     paths:
17     - public
18   only:
19   - master
20
21 ctest:
22   script:
23   - 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 .
24   - make VERBOSE=1 all tests && ctest --output-on-failure
25
26 release:
27   only:
28   - stable
29   script:
30   - apt update && apt install -y binutils-x86-64-linux-gnu wget unzip zip
31   # Build the linux version of the jarfile without the boost dependency
32   - cmake -Denable_documentation=OFF -Denable_java=ON -Denable_lib_in_jar=ON -Dminimal_java=ON -Denable_compile_optimizations=ON -Denable_smpi=OFF .
33   - make VERBOSE=1 dist simgrid simgrid-java_jar
34   # Get the foreign architectures
35   - wget https://ci.appveyor.com/api/projects/mquinson/simgrid/artifacts/simgrid.jar -O simgrid-windows.jar
36   - 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'`
37   - 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
38   # Open all jar files, and strip them
39   - mkdir content ; cd content
40   - for j in  ../simgrid.jar ../simgrid-windows.jar ../simgrid-mac.jar ; do unzip -n $j ; done
41   - strip NATIVE/*/*/*.so
42   - x86_64-linux-gnu-strip NATIVE/*/*/lib*dll
43   - zip -r ../SimGrid-${SGVER}.jar *
44   artifacts:
45     paths:
46     - SimGrid-*.jar
47     - SimGrid-*.tar.gz