diff options
author | Heinrich Schuchardt <heinrich.schuchardt@canonical.com> | 2023-01-12 20:30:58 +0100 |
---|---|---|
committer | Heinrich Schuchardt <heinrich.schuchardt@canonical.com> | 2023-01-13 09:09:07 +0100 |
commit | e9cc7029e881f470369ae2fc2c80029ef9e03923 (patch) | |
tree | d264c2c4849c387f4e57c257dae2ed073b9716e5 /.azure-pipelines.yml | |
parent | 6c39d0ef1eece4d8aa966b77a1362a53abd254a8 (diff) |
doc: build infodocs target on Gitlab CI, Azure
Add infodocs target to CI testing.
Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to '.azure-pipelines.yml')
-rw-r--r-- | .azure-pipelines.yml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml index 5fe3b8751d..49fc34fbf2 100644 --- a/.azure-pipelines.yml +++ b/.azure-pipelines.yml @@ -76,8 +76,8 @@ stages: steps: - script: cppcheck -j$(nproc) --force --quiet --inline-suppr . - - job: htmldocs - displayName: 'Build HTML documentation' + - job: docs + displayName: 'Build documentation' pool: vmImage: $(ubuntu_vm) container: @@ -89,6 +89,7 @@ stages: . /tmp/venvhtml/bin/activate pip install -r doc/sphinx/requirements.txt make htmldocs + make infodocs - job: todo displayName: 'Search for TODO within source tree' |