summaryrefslogtreecommitdiff
path: root/.azure-pipelines.yml
diff options
context:
space:
mode:
authorHeinrich Schuchardt <xypron.glpk@gmx.de>2021-01-26 00:06:25 +0300
committerHeinrich Schuchardt <xypron.glpk@gmx.de>2021-01-27 14:52:57 +0300
commit836049d63eedd3b1f2351831d1439b668cdbeb0e (patch)
tree4e97f9b219cb3fc6cf858c5e04048930adc69f0d /.azure-pipelines.yml
parenta6aaeb2a91bc01c84a746c7ee964f8927ac75de3 (diff)
downloadu-boot-836049d63eedd3b1f2351831d1439b668cdbeb0e.tar.xz
.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>
Diffstat (limited to '.azure-pipelines.yml')
-rw-r--r--.azure-pipelines.yml6
1 files changed, 5 insertions, 1 deletions
diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml
index 620696c22e..7a3eb78a5e 100644
--- a/.azure-pipelines.yml
+++ b/.azure-pipelines.yml
@@ -67,7 +67,11 @@ jobs:
image: $(ci_runner_image)
options: $(container_option)
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
displayName: 'Search for TODO within source tree'