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