s152203-plots/Jenkinsfile
Yevheniia Tsapkova 6cc2dff872 generating plots
2020-04-03 16:11:57 +02:00

20 lines
562 B
Groovy

pipeline {
agent { dockerfile true }
stages {
stage('Copy results'){
steps {
copyArtifacts filter: 'wer.txt, srr.txt',
fingerprintArtifacts: true, projectName: 's152203-metrics', selector: lastSuccessful()
}
}
stage('Generate and archive plots'){
steps {
sh 'chmod +x plot.sh'
sh label: '', script: './plot.sh'
archiveArtifacts 'wer.png'
archiveArtifacts 'srr.png'
}
}
}
}