fix pipeline
installing python packages without gcc seems to be very hard also fix pip caching
This commit is contained in:
parent
f3025928a3
commit
c748b267a6
2 changed files with 3 additions and 3 deletions
|
|
@ -5,12 +5,13 @@ variables:
|
||||||
|
|
||||||
cache:
|
cache:
|
||||||
paths:
|
paths:
|
||||||
- "$CI_PROJECT_DIR/pip-cache"
|
- "$PIP_CACHE_DIR"
|
||||||
key: "$CI_PROJECT_ID"
|
key: "$CI_PROJECT_ID"
|
||||||
|
|
||||||
.install_sphinx:
|
.install_sphinx:
|
||||||
before_script:
|
before_script:
|
||||||
- pip install -U -r docs/requirements.txt
|
- apk add gcc musl-dev
|
||||||
|
- pip install --cache-dir "$PIP_CACHE_DIR" -U -r docs/requirements.txt
|
||||||
|
|
||||||
test-docs:
|
test-docs:
|
||||||
stage: test
|
stage: test
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,4 @@
|
||||||
reno[sphinx]==3.5.0
|
reno[sphinx]==3.5.0
|
||||||
dulwich --global-option='--pure'
|
|
||||||
Sphinx==5.1.1
|
Sphinx==5.1.1
|
||||||
sphinx-theme-pd==0.8.3
|
sphinx-theme-pd==0.8.3
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue