Add new file
This commit is contained in:
parent
d078505c8c
commit
ead4743378
1 changed files with 16 additions and 0 deletions
16
.gitlab-ci.yml
Normal file
16
.gitlab-ci.yml
Normal file
|
@ -0,0 +1,16 @@
|
|||
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
|
Reference in a new issue