library/.gitlab-ci.yml

21 lines
482 B
YAML
Raw Normal View History

2021-07-09 14:50:00 +02:00
image: ubuntu/latest
2018-12-01 22:10:32 +01:00
pages:
script:
2020-04-08 19:48:47 +02:00
- mkdir -p docs
- cd Doku/Doxygen/
2021-07-09 14:50:00 +02:00
- apt install doxygen texlive-base texlive-latex-extra texlive-fonts-extra texlive-fonts-recommended 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
- 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 ../
- mv ./html/ ../../public/
2018-12-01 22:10:32 +01:00
artifacts:
paths:
- public
only:
- master