s416138-plots/Jenkinsfile
2020-04-03 13:53:22 +02:00

38 lines
1.3 KiB
Groovy

pipeline {
agent { any }
stages {
stage('Copy results'){
steps {
copyArtifacts filter: 'wer.txt, srr.txt', fingerprintArtifacts: true, projectName: 's416138-metrics', selector: lastSuccessful()
}
}
stage('Generate plot'){
steps {
plot csvFileName: 'plot-8e54e334-ab7b-4c9f-94f7-b9d8965723df.csv',
csvSeries: [[
file: 'wer.txt',
exclusionValues: '',
displayTableFlag: false,
inclusionFlag: 'OFF',
url: '']],
group: 'Plot Group',
title: 'Plot Title',
style: 'line',
exclZero: false,
keepRecords: false,
logarithmic: false,
numBuilds: '',
useDescr: false,
yaxis: '',
yaxisMaximum: '',
yaxisMinimum: ''
}
}
stage('Clean Workspace'){
steps{
cleanWs()
}
}
}
}