summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorErik Faye-Lund <erik.faye-lund@collabora.com>2022-11-04 16:13:20 +0100
committerErik Faye-Lund <erik.faye-lund@collabora.com>2022-11-10 17:26:19 +0100
commit72718daeac3d2f908fe1f8cef9585539f2043ebe (patch)
tree139e4b37c31074324f09a4909033aa680aa0fe90 /.gitlab-ci.yml
parent1efc92fe8c0f1d53634b9589058c60424f68aaee (diff)
downloadmesa-72718daeac3d2f908fe1f8cef9585539f2043ebe.tar.gz
docs/ci: allow overriding sphinx builder
Reviewed-by: Eric Engestrom <eric@igalia.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/19574>
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml4
1 files changed, 3 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index d55feabeb25..a073289729f 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -128,6 +128,8 @@ stages:
.docs-base:
+ variables:
+ BUILDER: html
extends:
- .fdo.ci-fairy
- .build-rules
@@ -135,7 +137,7 @@ stages:
- apk --no-cache add graphviz doxygen
- pip3 install sphinx===5.1.1 breathe===4.34.0 mako===1.2.3 sphinx_rtd_theme===1.0.0
- docs/doxygen-wrapper.py --out-dir=docs/doxygen_xml
- - sphinx-build -W -b html docs public
+ - sphinx-build -W -b $BUILDER docs public
pages:
extends: .docs-base