#39 added config files for Azure DevOps

This commit is contained in:
Dominik Becker 2020-05-24 16:53:01 +02:00
parent ae4c132d80
commit 861d5518d1
2 changed files with 65 additions and 0 deletions

32
latex.azure-pipelines.yml Normal file
View File

@ -0,0 +1,32 @@
pool:
vmImage: 'ubuntu-latest'
stages:
- stage: spellcheck
jobs:
- job: spellcheck_chapters
container: fastexitlane/hunspell:latest
continueOnError: true
steps:
- 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`
- script: echo $HUNSPELL_FINDINGS
- script: test "$HUNSPELL_FINDINGS" == ""
- job: spellcheck_appendix
container: fastexitlane/hunspell:latest
continueOnError: true
steps:
- 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`
- script: echo $HUNSPELL_FINDINGS
- script: test "$HUNSPELL_FINDINGS" == ""
- stage: build
jobs:
- job: latexmk
container: fastexitlane/pandoc-latex:latest
steps:
- script: latexmk main.tex
displayName: Execute LaTex Build
- task: PublishBuildArtifacts@1
inputs:
ArtifactName: main.pdf
PathtoPublish: ./main.pdf

View File

@ -0,0 +1,33 @@
pool:
vmImage: 'ubuntu-latest'
stages:
- stage: spellcheck
jobs:
- job: spellcheck_chapters
container: fastexitlane/hunspell:latest
continueOnError: true
steps:
- script: export HUNSPELL_FINDINGS=`for filename in chapter/*.md; do hunspell -l -d de_DE_frami,en_US -p ./.hunspellignore $filename; done | sort | uniq`
- script: echo $HUNSPELL_FINDINGS
- script: test "$HUNSPELL_FINDINGS" == ""
- job: spellcheck_appendix
container: fastexitlane/hunspell:latest
continueOnError: true
steps:
- 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`
- script: echo $HUNSPELL_FINDINGS
- script: test "$HUNSPELL_FINDINGS" == ""
- stage: build
jobs:
- job: pandoc_latexmk
steps:
- script: pandoc --filter pandoc-crossref --filter pandoc-citeproc -M cref=true --top-level-division=chapter --bibliography library/library.bib --biblatex -o chapter/out.tex chapter/*.md
displayName: Convert Markdown Files to LaTex
- script: latexmk main.tex
displayName: Execute LaTex Build
- task: PublishBuildArtifacts@1
inputs:
ArtifactName: main.pdf
PathtoPublish: ./main.pdf