promise/Jenkinsfile

16 lines
273 B
Plaintext
Raw Normal View History

2022-09-25 01:56:12 +01:00
pipeline {
agent { label 'tex' }
stages {
stage('Build') {
steps {
sh 'make'
}
}
}
post {
always {
2023-10-22 00:32:38 +01:00
archiveArtifacts artifacts: 'build/*.{pdf,epub}', fingerprint: true
2022-09-25 01:56:12 +01:00
}
}
}