Fixes
Some checks failed
s434704-training/pipeline/head There was a failure building this commit

This commit is contained in:
Wojciech Jarmosz 2021-05-14 04:30:31 +02:00
parent f86630451c
commit 105bc72be4
2 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@ pipeline {
} }
stage('Archive single metrics') { stage('Archive single metrics') {
steps{ steps{
archiveArtifacts 'single_metrics.txt' archiveArtifacts 'rmse.txt'
} }
} }
stage('Save metrics to bulk file & create chart') { stage('Save metrics to bulk file & create chart') {

View File

@ -20,7 +20,7 @@ pipeline {
} }
stage('Save trained model files') { stage('Save trained model files') {
steps{ steps{
archiveArtifacts 'linear_regression.h5 archiveArtifacts 'linear_regression.h5'
} }
} }
} }