This repository has been archived on 2022-08-16. You can view files and clone it, but cannot push or open issues or pull requests.
connect-four/.gitlab-ci.yml

16 lines
348 B
YAML
Raw Normal View History

2020-04-08 22:21:15 +02:00
pages:
script:
- mkdir -p docs
- cd docs
- apt install doxygen texlive-base texlive-latex-extra texlive-fonts-extra texlive-fonts-recommended python3-pip
- doxygen ./Doxyfile-mcss
- cd ./latex
- make
- cp refman.pdf ../html/ConnectFour.pdf
- cd ../
- mv ./html/ ../public/
artifacts:
paths:
- public
only:
- master