Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of scm.gforge.inria.fr:/gitroot/simgrid/simgrid
[simgrid.git] / .gitlab-ci.yml
index 5335925..be34650 100644 (file)
@@ -3,13 +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 python3-pip
-  - apt-get install -y cmake doxygen libboost-all-dev libboost-dev
-  - pip3 install --no-deps exhale
+  - 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
-  - mv doc/xml docs/doxyoutput
+  - cp -r doc/xml docs/doxyoutput
   - cd docs
   - sphinx-build -M html source/ build/
   - mv build/html ../public