From 53efff3968ecaa1363526339a6ab7466ae830ace Mon Sep 17 00:00:00 2001 From: Kim Wittenburg Date: Fri, 26 Jan 2018 19:19:44 +0000 Subject: [PATCH] Update .gitlab-ci.yml --- .gitlab-ci.yml | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 088f4ff..0e33ce0 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,18 +1,10 @@ image: blang/latex -# stages: -# - build -# - documentation - build: script: + # Build the actual *.cls file - pdflatex uhhassignment.ins - artifacts: - paths: - - "uhhassignment.cls" - -documentation: - script: + # Build the documentation files - pdflatex uhhassignment.dtx - makeindex -s gind.ist uhhassignment - makeindex -s gglo.ist -o uhhassignment.gls uhhassignment.glo @@ -20,5 +12,5 @@ documentation: - pdflatex uhhassignment.dtx artifacts: paths: + - "uhhassignment.cls" - "uhhassignment.pdf" -