2018-01-31 22:23:53 +00:00
|
|
|
stages:
|
2018-04-09 23:35:16 +00:00
|
|
|
- test
|
2018-01-31 22:23:53 +00:00
|
|
|
- build
|
|
|
|
|
2018-04-09 23:35:16 +00:00
|
|
|
latexmk:
|
2018-08-19 15:47:55 +00:00
|
|
|
image: bnord01/docker-latex-pygments:latest
|
2018-01-31 22:23:53 +00:00
|
|
|
stage: build
|
|
|
|
artifacts:
|
|
|
|
paths:
|
2018-09-02 14:57:09 +00:00
|
|
|
- main*.pdf
|
2018-01-31 22:23:53 +00:00
|
|
|
expire_in: 2d
|
|
|
|
script:
|
2018-04-26 18:26:36 +00:00
|
|
|
- latexmk main.tex
|
2018-09-02 14:40:10 +00:00
|
|
|
- ci_commit_sha_short=`git rev-parse --short $CI_COMMIT_SHA`
|
|
|
|
- mv main.pdf main@$ci_commit_sha_short.pdf
|
|
|
|
|
2018-04-09 23:35:16 +00:00
|
|
|
|
2020-04-30 16:36:12 +00:00
|
|
|
hunspell_chapters:
|
2018-08-19 15:36:49 +00:00
|
|
|
image: tmaier/hunspell:latest
|
2018-04-09 23:35:16 +00:00
|
|
|
stage: test
|
|
|
|
script:
|
2018-12-02 11:27:03 +00:00
|
|
|
- export HUNSPELL_FINDINGS=`for filename in chapter/*.tex; do hunspell -l -d de_DE_neu,en_US -p ./.hunspellignore -t $filename; done | sort | uniq`
|
2018-04-09 23:35:16 +00:00
|
|
|
- echo $HUNSPELL_FINDINGS
|
|
|
|
- test "$HUNSPELL_FINDINGS" == ""
|
2020-04-30 16:36:12 +00:00
|
|
|
allow_failure: true
|
|
|
|
|
|
|
|
|
|
|
|
hunspell_appendix:
|
|
|
|
image: tmaier/hunspell:latest
|
|
|
|
stage: test
|
|
|
|
script:
|
|
|
|
- export HUNSPELL_FINDINGS=`for filename in appendix/*.tex; do hunspell -l -d de_DE_neu,en_US -p ./.hunspellignore -t $filename; done | sort | uniq`
|
|
|
|
- echo $HUNSPELL_FINDINGS
|
|
|
|
- test "$HUNSPELL_FINDINGS" == ""
|
|
|
|
allow_failure: true
|