36 lines
955 B
YAML
36 lines
955 B
YAML
stages:
|
|
- test
|
|
- build
|
|
|
|
latexmk:
|
|
image: fastexitlane/pandoc-latex:latest
|
|
stage: build
|
|
artifacts:
|
|
paths:
|
|
- main*.pdf
|
|
expire_in: 2d
|
|
script:
|
|
- latexmk main.tex
|
|
- ci_commit_sha_short=`git rev-parse --short $CI_COMMIT_SHA`
|
|
- mv main.pdf main@$ci_commit_sha_short.pdf
|
|
|
|
|
|
hunspell_chapters:
|
|
image: fastexitlane/hunspell:latest
|
|
stage: test
|
|
script:
|
|
- export HUNSPELL_FINDINGS=`for filename in chapter/*.tex; do hunspell -l -d de_DE_frami,en_US -p ./.hunspellignore -t $filename; done | sort | uniq`
|
|
- echo $HUNSPELL_FINDINGS
|
|
- test "$HUNSPELL_FINDINGS" == ""
|
|
allow_failure: true
|
|
|
|
|
|
hunspell_appendix:
|
|
image: fastexitlane/hunspell:latest
|
|
stage: test
|
|
script:
|
|
- export HUNSPELL_FINDINGS=`for filename in appendix/*.tex; do hunspell -l -d de_DE_frami,en_US -p ./.hunspellignore -t $filename; done | sort | uniq`
|
|
- echo $HUNSPELL_FINDINGS
|
|
- test "$HUNSPELL_FINDINGS" == ""
|
|
allow_failure: true
|