This commit is contained in:
Artur Nowakowski 2020-04-03 13:53:22 +02:00
commit 8609ce7475
2 changed files with 38 additions and 0 deletions

37
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,37 @@
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()
}
}
}
}

1
README.md Normal file
View File

@ -0,0 +1 @@
s416138-plots mlworkshop