promise/Jenkinsfile
2022-09-24 19:56:12 -05:00

16 lines
266 B
Groovy

pipeline {
agent { label 'tex' }
stages {
stage('Build') {
steps {
sh 'make'
}
}
}
post {
always {
archiveArtifacts artifacts: 'build/*.pdf', fingerprint: true
}
}
}