library/.gitlab-ci.yml

20 lines
410 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:07:09 +02:00
- apt update && apt install -y git doxygen python3-pip texlive-latex-base
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
- cd ./latex
- make
2020-04-08 19:52:22 +02:00
- cp refman.pdf ../html/Coderacer.pdf
2020-04-08 19:48:47 +02:00
- cd ../
2021-07-09 17:07:09 +02:00
- mv ./html/ ../public/
2018-12-01 22:10:32 +01:00
artifacts:
paths:
- public
only:
- master