mirror of
https://github.com/clearlinux/clear-linux-documentation.git
synced 2026-04-28 11:03:58 +00:00
19 lines
502 B
YAML
19 lines
502 B
YAML
image: alpine
|
|
|
|
pages:
|
|
script:
|
|
- apk --no-cache add python3
|
|
- python3 -m ensurepip
|
|
- pip3 install sphinx==1.8.0 docutils==0.14 sphinx_rtd_theme breathe==4.9.1 sphinxcontrib-plantuml sphinx-intl==2.0.0 sphinx-sitemap==1.0.2
|
|
- apk --no-cache add make
|
|
- apk --no-cache add doxygen
|
|
- apk --no-cache add graphviz
|
|
- apk --no-cache add ttf-dejavu
|
|
- apk --no-cache add openjdk8-jre
|
|
- make htmlall
|
|
- mv source/_build/html/ public/
|
|
artifacts:
|
|
paths:
|
|
- public
|
|
only:
|
|
- rtd-theme |