.gitlab-ci: install doc/sphinx/requirements.txt
Install all requirements according to doc/sphinx/requirements.txt in the virtual environment used for testing 'make htmldocs'. Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
This commit is contained in:
@@ -67,7 +67,11 @@ jobs:
|
|||||||
image: $(ci_runner_image)
|
image: $(ci_runner_image)
|
||||||
options: $(container_option)
|
options: $(container_option)
|
||||||
steps:
|
steps:
|
||||||
- script: make htmldocs
|
- script: |
|
||||||
|
virtualenv -p /usr/bin/python3 /tmp/venvhtml
|
||||||
|
. /tmp/venvhtml/bin/activate
|
||||||
|
pip install -r doc/sphinx/requirements.txt
|
||||||
|
make htmldocs
|
||||||
|
|
||||||
- job: todo
|
- job: todo
|
||||||
displayName: 'Search for TODO within source tree'
|
displayName: 'Search for TODO within source tree'
|
||||||
|
@@ -122,6 +122,9 @@ htmldocs:
|
|||||||
tags: [ 'all' ]
|
tags: [ 'all' ]
|
||||||
stage: testsuites
|
stage: testsuites
|
||||||
script:
|
script:
|
||||||
|
- virtualenv -p /usr/bin/python3 /tmp/venvhtml
|
||||||
|
- . /tmp/venvhtml/bin/activate
|
||||||
|
- pip install -r doc/sphinx/requirements.txt
|
||||||
- make htmldocs
|
- make htmldocs
|
||||||
|
|
||||||
# some statistics about the code base
|
# some statistics about the code base
|
||||||
|
Reference in New Issue
Block a user