#41 fixed issue with line indendation

This commit is contained in:
Dominik Becker 2020-05-24 15:44:16 +02:00
parent 6480f11c67
commit f0d1398aa3
2 changed files with 22 additions and 20 deletions

View File

@ -1,7 +1,8 @@
stages: stages:
- test - test
- build - build
pandoc_latexmk: pandoc_latexmk:
image: fastexitlane/pandoc-latex:latest image: fastexitlane/pandoc-latex:latest
stage: build stage: build
@ -14,23 +15,24 @@ pandoc_latexmk:
- latexmk main.tex - latexmk main.tex
- ci_commit_sha_short=`git rev-parse --short $CI_COMMIT_SHA` - ci_commit_sha_short=`git rev-parse --short $CI_COMMIT_SHA`
- mv main.pdf main@$ci_commit_sha_short.pdf - mv main.pdf main@$ci_commit_sha_short.pdf
hunspell_chapters:
image: fastexitlane/hunspell:latest hunspell_chapters:
stage: test image: fastexitlane/hunspell:latest
script: stage: test
- export HUNSPELL_FINDINGS=`for filename in chapter/*.md; do hunspell -l -d de_DE_neu_frami,en_US -p ./.hunspellignore $filename; done | sort | uniq` script:
- echo $HUNSPELL_FINDINGS - export HUNSPELL_FINDINGS=`for filename in chapter/*.md; do hunspell -l -d de_DE_neu_frami,en_US -p ./.hunspellignore $filename; done | sort | uniq`
- test "$HUNSPELL_FINDINGS" == "" - echo $HUNSPELL_FINDINGS
allow_failure: true - test "$HUNSPELL_FINDINGS" == ""
allow_failure: true
hunspell_appendix:
image: fastexitlane/hunspell:latest hunspell_appendix:
stage: test image: fastexitlane/hunspell:latest
script: stage: test
- export HUNSPELL_FINDINGS=`for filename in appendix/*.tex; do hunspell -l -d de_DE_neu_frami,en_US -p ./.hunspellignore -t $filename; done | sort | uniq` script:
- echo $HUNSPELL_FINDINGS - export HUNSPELL_FINDINGS=`for filename in appendix/*.tex; do hunspell -l -d de_DE_neu_frami,en_US -p ./.hunspellignore -t $filename; done | sort | uniq`
- test "$HUNSPELL_FINDINGS" == "" - echo $HUNSPELL_FINDINGS
allow_failure: true - test "$HUNSPELL_FINDINGS" == ""
allow_failure: true