From 17a2e537dbdbd00cf85221a57736e78950b3655b Mon Sep 17 00:00:00 2001 From: Kim Wittenburg Date: Fri, 26 Jan 2018 19:02:31 +0000 Subject: [PATCH] Add .gitlab-ci.yml --- .gitlab-ci.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..82b7292 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,23 @@ +image: blang/latex + +# stages: +# - build +# - documentation + +build: + script: + - pdflatex uhhassignment.ins + artifacts: + paths: + - "uhhassignment.cls" + +documentation: + script: + - pdflatex uhhassignment.dtx + - makeindex -s gind.ist uhhassignment + - makeindex -s gglo.ist -o uhhassignment.gls uhhassignment.glo + - pdflatex uhhassignment.dtx + - pdflatex uhhassignment.dtx + artifacts: + paths: + - "uhhassignment.pdf"