25 lines
452 B
YAML
25 lines
452 B
YAML
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"
|
|
|