From f0d1398aa30d1e6aaf16a59175b492272db5ea92 Mon Sep 17 00:00:00 2001 From: Dominik Becker Date: Sun, 24 May 2020 15:44:16 +0200 Subject: [PATCH] #41 fixed issue with line indendation --- .gitlab-ci.yml | 42 +++++++++++---------- latex..gitlab-ci.yml => latex.gitlab-ci.yml | 0 2 files changed, 22 insertions(+), 20 deletions(-) rename latex..gitlab-ci.yml => latex.gitlab-ci.yml (100%) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d122028..6d337a5 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,7 +1,8 @@ stages: - test - build - + + pandoc_latexmk: image: fastexitlane/pandoc-latex:latest stage: build @@ -14,23 +15,24 @@ pandoc_latexmk: - 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/*.md; do hunspell -l -d de_DE_neu_frami,en_US -p ./.hunspellignore $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_neu_frami,en_US -p ./.hunspellignore -t $filename; done | sort | uniq` - - echo $HUNSPELL_FINDINGS - - test "$HUNSPELL_FINDINGS" == "" - allow_failure: true + + +hunspell_chapters: + image: fastexitlane/hunspell:latest + stage: test + script: + - export HUNSPELL_FINDINGS=`for filename in chapter/*.md; do hunspell -l -d de_DE_neu_frami,en_US -p ./.hunspellignore $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_neu_frami,en_US -p ./.hunspellignore -t $filename; done | sort | uniq` + - echo $HUNSPELL_FINDINGS + - test "$HUNSPELL_FINDINGS" == "" + allow_failure: true \ No newline at end of file diff --git a/latex..gitlab-ci.yml b/latex.gitlab-ci.yml similarity index 100% rename from latex..gitlab-ci.yml rename to latex.gitlab-ci.yml