Use docker.
adbrucker/authorarchive/master This commit looks good Details

This commit is contained in:
Achim D. Brucker 2019-06-22 19:41:26 +01:00
parent ce40e1027f
commit 921fb2cbe3
1 changed files with 1 additions and 1 deletions

2
.ci/Jenkinsfile vendored
View File

@ -4,7 +4,7 @@ pipeline {
stages {
stage('Build PDFs') {
steps {
sh 'cd examples && (for i in *.tex; do pdflatex $i; pdflatex $i; pdflatex $i; done)'
sh 'docker run -v $PWD/:/authorarchive logicalhacking:debian4isabelle sh -c "cd /authorarchive/examples && (for i in *.tex; do pdflatex \\$i; pdflatex \\$i; pdflatex \\$i; done)"'
}
}
}