Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
sonar: move the simgrid project in the simgrid organization
[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 abandonned upstream.
14   # - public/search.html and public/genindex.html are also generated.
15   - linkchecker --check-extern --ignore-url='.*\.css$' --ignore-url=public/java/org ../public
16   artifacts:
17     paths:
18     - public
19   only:
20   - master
21
22 ctest:
23   script:
24   - 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 .
25   - make VERBOSE=1 all tests && ctest --output-on-failure
26
27 release:
28   only:
29   - stable
30   script:
31   - apt update && apt install -y binutils-x86-64-linux-gnu wget unzip zip
32   # Build the linux version of the jarfile without the boost dependency
33   - cmake -Denable_documentation=OFF -Denable_java=ON -Denable_lib_in_jar=ON -Dminimal_java=ON -Denable_compile_optimizations=ON -Denable_smpi=OFF .
34   - make VERBOSE=1 dist simgrid simgrid-java_jar
35   # Get the foreign architectures
36   - wget https://ci.appveyor.com/api/projects/mquinson/simgrid/artifacts/simgrid.jar -O simgrid-windows.jar
37   - 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'`
38   - 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
39   # Open all jar files, and strip them
40   - mkdir content ; cd content
41   - for j in  ../simgrid.jar ../simgrid-windows.jar ../simgrid-mac.jar ; do unzip -n $j ; done
42   - strip NATIVE/*/*/*.so
43   - x86_64-linux-gnu-strip NATIVE/*/*/lib*dll
44   - zip -r ../SimGrid-${SGVER}.jar *
45   artifacts:
46     paths:
47     - SimGrid-*.jar
48     - SimGrid-*.tar.gz