X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/11673f3ecfc57039950bd9c70ecf1c5a28eda54e..969b2289cb602ac88647e9d8d5a411ab481f4910:/.gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 1a005826f7..be346507e2 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -3,7 +3,12 @@ image: debian:testing-slim .build: &build script: - apt-get update - - apt-get install -y python3-sphinx doxygen python3-breathe python3-sphinx-rtd-theme + - apt-get install -y python3-pip cmake doxygen libboost-all-dev libboost-dev fig2dev + - pip3 install --requirement docs/requirements.txt + - cmake -Denable_documentation=ON . + - make documentation + - mkdir docs/doxyoutput + - cp -r doc/xml docs/doxyoutput - cd docs - sphinx-build -M html source/ build/ - mv build/html ../public