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
344 B
YAML

pages:
script:
- mkdir -p docs
- cd docs
# - apt install doxygen texlive-base texlive-latex-extra texlive-fonts-extra texlive-fonts-recommended graphviz -y
- doxygen ./Doxyfile
- cd ./latex
- make
- cp refman.pdf ../html/ConnectFour.pdf
- cd ../
- mv ./html/ ../public/
artifacts:
paths:
- public
only:
- master