From 836049d63eedd3b1f2351831d1439b668cdbeb0e Mon Sep 17 00:00:00 2001 From: Heinrich Schuchardt Date: Mon, 25 Jan 2021 22:06:25 +0100 Subject: .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 --- .azure-pipelines.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to '.azure-pipelines.yml') diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml index 620696c22e0..7a3eb78a5ea 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' -- cgit v1.2.3