Skip to content
Snippets Groups Projects

Fix .gitlab-ci-simple.yml

Merged Maks Turtiainen requested to merge mjturt/thesis:master into master
1 file
+ 4
2
Compare changes
  • Side-by-side
  • Inline
+ 4
2
@@ -10,14 +10,16 @@ stages:
# build latex/thesis.tex -> latex/thesis.pdf using pdflatex
# shell-escape functionality is required by the minted package
build:
stage: build
script:
- cd latex
- latexmk -pdf --shell-escape thesis.tex
artifacts:
paths:
artifacts:
paths:
- latex/thesis.pdf
# a validation prints "PASS + something" is the file is PDF/A conformant
validate:
stage: validate
script:
- pdfa-validate latex/thesis.pdf|grep '^PASS'
Loading