shared-libraries/.gitlab-ci.yml

16 lines
311 B
YAML
Raw Permalink Normal View History

2021-07-20 09:11:23 +02:00
image: ubuntu
2020-04-08 18:08:35 +02:00
2020-04-08 18:40:22 +02:00
pages:
script:
2021-07-20 09:11:23 +02:00
- cd docs/
- apt update && apt install -y git doxygen python3-pip
2020-04-08 18:08:35 +02:00
- git clone git://github.com/mosra/m.css
2021-07-20 09:11:23 +02:00
- pip3 install jinja2 Pygments
2020-04-08 19:43:06 +02:00
- ./m.css/documentation/doxygen.py ./Doxyfile-mcss
2021-07-20 09:11:23 +02:00
- mv ./html ../public
2020-04-08 18:08:35 +02:00
artifacts:
paths:
- public
only:
- master