diff --git a/Jenkinsfile_eval b/Jenkinsfile_eval index f7b291f..27e10a2 100644 --- a/Jenkinsfile_eval +++ b/Jenkinsfile_eval @@ -21,10 +21,18 @@ pipeline { sh "python3 evaluation.py" } } - stage('Save metrics & create chart') { - steps{ + stage("Generate metrics"){ + steps { sh "python3 save_metrics.py ${env.BUILD_ID}" + } + } + stage("Generate chart"){ + steps { sh "python3 create_chart.py" + } + } + stage("Save artifacts") { + steps{ archiveArtifacts 'chart.png' archiveArtifacts 'bulk_metrics.txt' archiveArtifacts 'rmse.txt'