This commit is contained in:
Lukas Heiligenbrunner 2020-04-16 17:42:46 +00:00
parent 2b027c2650
commit b47010a16b

12
.gitlab-ci.yml Normal file
View File

@ -0,0 +1,12 @@
# This file is a template, and might need editing before it works on your project.
# use docker image with latex preinstalled
# since there is no official latex image, use https://github.com/blang/latex-docker
# possible alternative: https://github.com/natlownes/docker-latex
image: blang/latex
build:
script:
- latexmk -pdf src/main.tex
artifacts:
paths:
- "*.pdf"