aetherials/Jenkinsfile

16 lines
273 B
Plaintext
Raw Permalink Normal View History

pipeline {
agent { label 'tex' }
stages {
stage('Build') {
steps {
sh 'make'
}
}
}
post {
always {
2023-10-23 21:49:44 +01:00
archiveArtifacts artifacts: 'build/*.{pdf,epub}', fingerprint: true
}
}
}