# # 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