Task 2 Part 2
s444517-evaluation/pipeline/head There was a failure building this commit Details

This commit is contained in:
Kamila 2022-05-03 18:56:31 +02:00
parent 89eed26a4a
commit 38261e969d
1 changed files with 3 additions and 1 deletions

View File

@ -29,7 +29,9 @@ pipeline {
stage('Get data save artifacts') {
steps {
sh 'python3 ./nn_train_eval.py'
metrics = readFile(file: 'current_results.txt')
script {
metrics = readFile(file: 'current_results.txt')
}
archiveArtifacts artifacts: 'my_model/saved_model.pb, metrics.txt, output.jpg'
}