archvive dir
All checks were successful
s444417-evaluation/pipeline/head This commit looks good
s444417-training/pipeline/head This commit looks good

This commit is contained in:
s444417 2022-05-03 23:00:45 +02:00
parent fb1007288b
commit dd295d8743

View File

@ -8,7 +8,13 @@ pipeline {
copyArtifacts projectName: 's444417-create-dataset'
sh 'ls -la'
sh 'python3 ./src/trainScript.py 6'
archiveArtifacts 'saved_model/MyModel_tf/*'
}
}
stage('Archive') {
steps {
dir('saved_model') {
archiveArtifacts artifacts: '**'
}
}
}
stage('Starting eval job') {