s407599-plots/Jenkinsfile
Gabriela Pałka a5d57fbc69 Add plot.py
2020-04-03 16:56:09 +02:00

21 lines
509 B
Groovy

pipeline {
agent { dockerfile true }
stages {
stage('CopyArtifacts') {
steps {
copyArtifacts filter: 'wer.txt, srr.txt', fingerprintArtifacts: true, projectName: 's407599-metrics'
}
}
stage('Shell script') {
steps {
sh label: '', script: './script.sh'
}
}
stage('ArchiveArtifacts') {
steps {
archiveArtifacts 'plot.png'
}
}
}
}