From b15f9fa9093a4cd354128c57fa5595fa741d554b Mon Sep 17 00:00:00 2001 From: Hendrik Langer Date: Thu, 23 Mar 2017 14:43:17 +0100 Subject: [PATCH] Update .gitlab-ci.yml --- .gitlab-ci.yml | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) 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