From: Martin Quinson Date: Mon, 6 Aug 2018 19:22:00 +0000 (+0200) Subject: doc on framagit: use pip to install sphinx and friends, not apt X-Git-Tag: v3_21~285 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/86a592bf55456983007c19a0e58b2c66c8a5377d doc on framagit: use pip to install sphinx and friends, not apt --- diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 02c5db1b5c..61ab0780a5 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -3,9 +3,8 @@ 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 fig2dev - - pip3 install --no-deps exhale + - 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