diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 5977c6d..3ecf712 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,8 +1,11 @@ -stages: -- test +before_script: + - apt-get update -qq && apt-get install -y -qq texlive + - pdflatex -version + - which pdflatex -run-test: -stage: test -script: -- touch foo -- test foo \ No newline at end of file +build: + script: + - latexmk -pdf article.tex + artifacts: + paths: + - article.pdf \ No newline at end of file