bachelor-thesis/.gitlab-ci.yml
2021-04-06 08:09:24 +02:00

16 lines
357 B
YAML

#
# This GitLab CI configuration builds the thesis on each push
# The thesis is stored as an repository artifact
#
# It works with the gitlab.mff.cuni.cz instance.
#
image: aergus/latex
build:
script: latexmk thesis && latexmk abstract-cz && latexmk abstract-en;
artifacts:
paths:
- thesis.pdf
- abstract-cz.pdf
- abstract-en.pdf