1
This commit is contained in:
2023-03-02 18:21:47 +01:00
parent 3f02dfd309
commit 257677d546

15
.gitlab-ci.yml Normal file
View File

@ -0,0 +1,15 @@
stages:
- build
# Build pdf file
latex:
image: texlive/texlive:latest
stage: build
script:
- apt-get update -qq && apt-get install --no-install-recommends -y inkscape
- apt-get autoclean autoremove && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
- latexmk -cd -pdf -shell-escape document/thesis.tex
artifacts:
paths:
- "document/thesis.pdf"
expire_in: 1 day