X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/57ccd4af447dc1e037515729aed10d86db3fac44..2ea79162b045f519a573e82448ee6c5df68d84ae:/.gitlab-ci.yml?ds=sidebyside diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 2830b95244..e52c8bdaea 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,21 +1,30 @@ image: simgrid/build-deps +stages: + - build + - test + pages: + stage: test script: - pip3 install --requirement docs/requirements.txt - - cmake -Denable_model-checking=OFF -Denable_documentation=OFF -Denable_coverage=OFF -Denable_java=OFF -Denable_lua=OFF -Denable_compile_optimizations=OFF -Denable_smpi=OFF . - - make -j4 python-bindings - cd docs - LC_ALL=C.UTF-8 ./Build.sh - mv build/html ../public - - linkchecker --ignore-url='.*\.css$' ../public + # - The CSS contains a reference to a font or something, not something we gonna fix on our side + # - The javasphinx output does not exist in the git, so the "open on GitLab" link is broken. + # I'd like to report this as a bug, but javasphinx seems abandonned upstream. + # - public/search.html and public/genindex.html are also generated. + - linkchecker --check-extern --ignore-url='.*\.css$' --ignore-url=public/java/org ../public artifacts: paths: - public only: - master + allow_failure: true ctest: + stage: build script: - 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 . - make VERBOSE=1 all tests && ctest --output-on-failure