This repository has been archived on 2024-06-03. You can view files and clone it, but cannot push or open issues or pull requests.
shared-libraries/.gitlab-ci.yml
2020-04-08 17:40:33 +00:00

21 lines
552 B
YAML

# you can delete this line if you're not using Docker
# image: busybox:latest
pages:
script:
- mkdir -p docs
- cd docs
- apt install doxygen texlive-base texlive-latex-extra texlive-fonts-extra texlive-fonts-recommended python3-pip
- git clone git://github.com/mosra/m.css
- cd m.css/documentation
- pip3 install jinja2 Pygments
- ./doxygen.py ../../Doxyfile-mcss
- cd ../../latex
- make
- cp refman.pdf ../html/ScStwSharedLibraries.pdf
- mv ../../html/ ../../../public/
artifacts:
paths:
- public
only:
- master