shared-libraries/.gitlab-ci.yml

25 lines
515 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
before_script:
2020-04-08 18:20:11 +02:00
- mkdir -p docs
- cd docs
2020-04-08 18:14:44 +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
- cd m.css/documentation
2020-04-08 18:15:43 +02:00
- pip3 install jinja2 Pygments
2020-04-08 18:08:35 +02:00
build1:
stage: build
script:
2020-04-08 18:17:21 +02:00
- ./doxygen.py ../../Doxyfile-mcss
2020-04-08 18:08:35 +02:00
pages:
script:
- mv docs/html/ public/
artifacts:
paths:
- public
only:
- master