2021-04-05 21:01:40 +00:00
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
#
|
2021-04-06 06:00:06 +00:00
|
|
|
image: aergus/latex
|
2021-04-05 21:01:40 +00:00
|
|
|
|
|
|
|
build:
|
2021-04-06 06:00:06 +00:00
|
|
|
script: latexmk thesis && latexmk abstract-cz && latexmk abstract-en;
|
2021-04-05 21:01:40 +00:00
|
|
|
artifacts:
|
|
|
|
paths:
|
|
|
|
- thesis.pdf
|
|
|
|
- abstract-cz.pdf
|
|
|
|
- abstract-en.pdf
|