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