authorarchive/.ci/Jenkinsfile

13 lines
225 B
Plaintext
Raw Normal View History

2019-06-22 15:46:04 +00:00
pipeline {
agent any
stages {
stage('Build PDFs') {
steps {
sh 'cd examples && (for i in *.tex; do pdflatex $i; pdflatex $i; pdflatex $i; done)'
}
}
}
}