Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
MC: rename some files
[simgrid.git] / .gitlab-ci.yml
1 image: simgrid/build-deps
2
3 stages:
4  - build
5  - test
6
7 pages:
8   stage: test
9   script:
10   - pip3 install --requirement docs/requirements.txt
11   - cd docs
12   - LC_ALL=C.UTF-8 ./Build.sh
13   - mv build/html ../public
14   # - The CSS contains a reference to a font or something, not something we gonna fix on our side
15   # - The javasphinx output does not exist in the git, so the "open on GitLab" link is broken.
16   #   I'd like to report this as a bug, but javasphinx seems abandonned upstream.
17   # - public/search.html and public/genindex.html are also generated.
18   - linkchecker --check-extern --ignore-url='.*\.css$' --ignore-url=public/java/org ../public
19   artifacts:
20     paths:
21     - public
22   only:
23   - master
24   allow_failure: true
25
26 ctest:
27   stage: build
28   script:
29   - 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 .
30   - make VERBOSE=1 all tests && ctest --output-on-failure
31
32 release:
33   only:
34   - stable
35   script:
36   - apt update && apt install -y binutils-x86-64-linux-gnu wget unzip zip
37   # Build the linux version of the jarfile without the boost dependency
38   - cmake -Denable_documentation=OFF -Denable_java=ON -Denable_lib_in_jar=ON -Dminimal_java=ON -Denable_compile_optimizations=ON -Denable_smpi=OFF .
39   - make VERBOSE=1 dist simgrid simgrid-java_jar
40   # Get the foreign architectures
41   - wget https://ci.appveyor.com/api/projects/mquinson/simgrid/artifacts/simgrid.jar -O simgrid-windows.jar
42   - 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'`
43   - 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
44   # Open all jar files, and strip them
45   - mkdir content ; cd content
46   - for j in  ../simgrid.jar ../simgrid-windows.jar ../simgrid-mac.jar ; do unzip -n $j ; done
47   - strip NATIVE/*/*/*.so
48   - x86_64-linux-gnu-strip NATIVE/*/*/lib*dll
49   - zip -r ../SimGrid-${SGVER}.jar *
50   artifacts:
51     paths:
52     - SimGrid-*.jar
53     - SimGrid-*.tar.gz