authorarchive/.ci/Jenkinsfile

13 lines
225 B
Groovy

pipeline {
agent any
stages {
stage('Build PDFs') {
steps {
sh 'cd examples && (for i in *.tex; do pdflatex $i; pdflatex $i; pdflatex $i; done)'
}
}
}
}