gitlab ci
This commit is contained in:
parent
0a53482c3e
commit
cce9d07349
|
|
@ -1,13 +1,12 @@
|
||||||
image: python:3.7.3-slim-stretch
|
image: python:3.7.3-alpine
|
||||||
|
|
||||||
pages:
|
pages:
|
||||||
script:
|
script:
|
||||||
- apt update && apt install -y build-essential
|
- pip install -r dev_requirements.txt
|
||||||
- pip3 install -r dev_requirements.txt
|
- apk --no-cache add make
|
||||||
- cd docs
|
- cd docs
|
||||||
- make html
|
- make html
|
||||||
- mkdir public
|
- mv _build/html/ public/
|
||||||
- mv _build/html public/
|
|
||||||
artifacts:
|
artifacts:
|
||||||
paths:
|
paths:
|
||||||
- public
|
- public
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue