Update .gitlab-ci.yml

This commit is contained in:
Kim Wittenburg
2018-01-26 19:19:44 +00:00
parent 438a21050f
commit 53efff3968

View File

@@ -1,18 +1,10 @@
image: blang/latex image: blang/latex
# stages:
# - build
# - documentation
build: build:
script: script:
# Build the actual *.cls file
- pdflatex uhhassignment.ins - pdflatex uhhassignment.ins
artifacts: # Build the documentation files
paths:
- "uhhassignment.cls"
documentation:
script:
- pdflatex uhhassignment.dtx - pdflatex uhhassignment.dtx
- makeindex -s gind.ist uhhassignment - makeindex -s gind.ist uhhassignment
- makeindex -s gglo.ist -o uhhassignment.gls uhhassignment.glo - makeindex -s gglo.ist -o uhhassignment.gls uhhassignment.glo
@@ -20,5 +12,5 @@ documentation:
- pdflatex uhhassignment.dtx - pdflatex uhhassignment.dtx
artifacts: artifacts:
paths: paths:
- "uhhassignment.cls"
- "uhhassignment.pdf" - "uhhassignment.pdf"