s416138-plots/Jenkinsfile

23 lines
620 B
Plaintext
Raw Permalink Normal View History

2020-04-03 13:53:22 +02:00
pipeline {
2020-04-03 14:17:16 +02:00
agent { dockerfile true }
2020-04-03 13:53:22 +02:00
stages {
stage('Copy results'){
steps {
copyArtifacts filter: 'wer.txt, srr.txt', fingerprintArtifacts: true, projectName: 's416138-metrics', selector: lastSuccessful()
}
}
2020-04-03 14:17:05 +02:00
stage('Generate and archive plots'){
2020-04-03 13:53:22 +02:00
steps {
2020-04-03 14:28:09 +02:00
sh label: '', script: './generate_plot.sh'
2020-04-03 14:17:05 +02:00
archiveArtifacts 'wer.png'
archiveArtifacts 'srr.png'
2020-04-03 13:53:22 +02:00
}
}
stage('Clean Workspace'){
steps{
cleanWs()
}
}
}
}