added plot
Some checks failed
s444507-evaluation/pipeline/head There was a failure building this commit
444507-training/pipeline/head This commit looks good

This commit is contained in:
Adam Wojdyla 2022-05-02 01:44:34 +02:00
parent a790cff9b0
commit a23ced526f

View File

@ -20,6 +20,28 @@ pipeline {
sh "python3 ./lab06_evaluation.py ${currentBuild.number}"
}
}
stage('Build plot'){
steps {
plot csvFileName: 'plot-8e54e334-ab7b-4c9f-94f7-b9d8965723df.csv',
csvSeries: [[
file: 'metrics.csv',
exclusionValues: '',
displayTableFlag: false,
inclusionFlag: 'OFF',
url: '']],
group: 'Plot Group',
title: 'Evaluation metrics',
style: 'line',
exclZero: false,
keepRecords: false,
logarithmic: false,
numBuilds: '',
useDescr: false,
yaxis: 'Matric value',
yaxisMaximum: '1',
yaxisMinimum: '0'
}
}
}
post {
success {