shared-libraries/.gitlab-ci.yml

22 lines
540 B
YAML
Raw Normal View History

2020-04-08 18:08:35 +02:00
# you can delete this line if you're not using Docker
# image: busybox:latest
2020-04-08 18:40:22 +02:00
pages:
script:
2020-04-08 18:20:11 +02:00
- mkdir -p docs
- cd docs
2020-05-11 10:00:54 +02:00
# - apt install doxygen texlive-base texlive-latex-extra texlive-fonts-extra texlive-fonts-recommended python3-pip
2020-04-08 18:08:35 +02:00
- git clone git://github.com/mosra/m.css
2020-05-11 10:00:54 +02:00
# - pip3 install jinja2 Pygments
2020-04-08 19:43:06 +02:00
- ./m.css/documentation/doxygen.py ./Doxyfile-mcss
- cd ./latex
2020-04-08 19:40:33 +02:00
- make
- cp refman.pdf ../html/ScStwSharedLibraries.pdf
2020-04-08 19:43:06 +02:00
- cd ../
- mv ./html/ ../public/
2020-04-08 18:08:35 +02:00
artifacts:
paths:
- public
only:
- master