Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
new version of the masterworkers tuto, with s4u and sphinx
[simgrid.git] / .gitlab-ci.yml
index 61ab078..6c945b2 100644 (file)
@@ -2,13 +2,13 @@ image: debian:testing-slim
 
 .build: &build
   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
+  - apt-get update >/dev/null
+  - apt-get install -y python3-pip cmake doxygen libboost-all-dev libboost-dev fig2dev >/dev/null
+  - 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