Add .gitlab-ci.yml

This commit is contained in:
Kim Wittenburg
2018-01-26 19:02:31 +00:00
parent e8344919bc
commit 17a2e537db

23
.gitlab-ci.yml Normal file
View File

@@ -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"