diff options
author | Phillip Smyth <phillip.smyth@codethink.co.uk> | 2018-10-02 16:00:43 +0100 |
---|---|---|
committer | Phillip Smyth <phillip.smyth@codethink.co.uk> | 2018-10-02 17:40:18 +0100 |
commit | d5b396e01f41bc7577092d5345c3ef77a236493a (patch) | |
tree | 29fbfdfc44194e1f253692d2cfdd82d39fdd4ea5 /.gitlab-ci.yml | |
parent | 0458bc4e6173e499d6d3be4f46e5484331f411b6 (diff) | |
download | buildstream-d5b396e01f41bc7577092d5345c3ef77a236493a.tar.gz |
Forcing CI to install Sphinx 1.7.9docs_Search_not_working
.gitlab-ci.yml: forced pip3 install Sphinx 1.7.9
The theme we use in our docs "sphinx_rtd_theme"
Does not support the latest version of Sphinx (>1.8)
This results in search functionality failing
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 239f30f80..07fa859d8 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -145,7 +145,8 @@ docs: stage: test script: - export BST_SOURCE_CACHE="$(pwd)/cache/integration-cache/sources" - - pip3 install sphinx + # Currently sphinx_rtd_theme does not support Sphinx >1.8, this breaks search functionality + - pip3 install sphinx==1.7.9 - pip3 install sphinx-click - pip3 install sphinx_rtd_theme - cd dist && ./unpack.sh && cd buildstream |