From 9e2a58db51353e053008d686fdd8942fab191c94 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20Tr=C3=A4ger?= Date: Wed, 30 Nov 2016 19:07:51 +0000 Subject: [PATCH] Add .gitlab-ci.yml --- .gitlab-ci.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..cc18ff1 --- /dev/null +++ b/.gitlab-ci.yml @@ -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 + artifacts: + paths: + - "*.pdf"