X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/86a592bf55456983007c19a0e58b2c66c8a5377d..d77fa111d7895ba052dafcd2838f9f33f8b19917:/.gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 61ab0780a5..922b1d45cf 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,27 +1,18 @@ -image: debian:testing-slim +image: simgrid/build-deps -.build: &build +pages: script: - - apt-get update - - apt-get install -y python3-pip cmake doxygen libboost-all-dev libboost-dev fig2dev - - pip3 install exhale sphinx breathe sphinx_rtd_theme - - cmake -Denable_documentation=ON . - - make documentation - - mkdir docs/doxyoutput - - mv doc/xml docs/doxyoutput + - pip3 install --requirement docs/requirements.txt - cd docs - - sphinx-build -M html source/ build/ + - LC_ALL=C.UTF-8 ./Build.sh - mv build/html ../public artifacts: paths: - public - -pages: - <<: *build only: - master -test: - <<: *build - except: - - master +ctest: + 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 . + - ./tools/internal/travis-sonarqube.sh make VERBOSE=1 && ctest --output-on-failure