bath/.gitlab-ci.yml

28 lines
556 B
YAML

compile_pdf:
image: latexpygments
script:
- cd tikz
- latexmk -pdf mon48v.tex
- latexmk -pdf mon48i.tex
- cd ..
- latexmk -f -pdf -shell-escape ./thesis.tex
artifacts:
paths:
- tikz/*.pdf
pages:
image: alpine
script:
- apk --no-cache add py2-pip python-dev
- pip install sphinx
- apk --no-cache add make
- cd data/raspi-i2c/docs
- make html
- mv _build/html/ ../../../public/
artifacts:
paths:
- public
only:
- master