library/.gitlab-ci.yml

16 lines
314 B
YAML
Raw Normal View History

2021-07-09 15:34:08 +02:00
image: ubuntu
2021-07-09 14:50:00 +02:00
2018-12-01 22:10:32 +01:00
pages:
script:
2021-07-09 15:33:29 +02:00
- cd doxygen/
2021-07-09 17:11:30 +02:00
- apt update && apt install -y git doxygen python3-pip
2020-04-08 19:48:47 +02:00
- git clone git://github.com/mosra/m.css
2021-07-09 14:50:00 +02:00
- pip3 install jinja2 Pygments
2020-04-08 19:48:47 +02:00
- ./m.css/documentation/doxygen.py ./Doxyfile-mcss
2021-07-09 17:19:22 +02:00
- mv ./html ../public
2018-12-01 22:10:32 +01:00
artifacts:
paths:
2021-07-09 17:19:22 +02:00
- public
2018-12-01 22:10:32 +01:00
only:
- master