Skip to content
Snippets Groups Projects
.gitlab-ci.yml 423 B
Newer Older
Ondřej Guth's avatar
Ondřej Guth committed
image: texlive/texlive
Ondřej Guth's avatar
Ondřej Guth committed

Ondřej Guth's avatar
Ondřej Guth committed
LuaLaTeX:
Ondřej Guth's avatar
Ondřej Guth committed
    script: 
        - latexmk -pdflua thesis.tex
Ondřej Guth's avatar
Ondřej Guth committed

XeLaTeX:
    script: 
Ondřej Guth's avatar
Ondřej Guth committed
        - latexmk -pdfxe thesis.tex
Ondřej Guth's avatar
Ondřej Guth committed

pdfLaTeX:
    script: 
Ondřej Guth's avatar
Ondřej Guth committed
        - latexmk -pdf thesis.tex
Ondřej Guth's avatar
Ondřej Guth committed
    artifacts:
        paths:
            - thesis.pdf

LaTeX:
    script: 
        - apt-get update && apt-get install ghostscript
        - latexmk -pdfps thesis.tex
Ondřej Guth's avatar
Ondřej Guth committed
    artifacts:
        paths:
            - thesis.pdf