.
All checks were successful
s434784-training/pipeline/head This commit looks good

This commit is contained in:
Maciej Sobkowiak 2021-05-16 17:06:35 +02:00
parent d409867cd9
commit 40dbdf89ed

View File

@ -20,7 +20,7 @@ pipeline {
}
stages{
stage('artifacts') {
stage('copy-artifacts') {
steps {
copyArtifacts fingerprintArtifacts: true, projectName: 's434784-create-dataset', selector: buildParameter('BUILD_SELECTOR')
}
@ -38,5 +38,10 @@ pipeline {
}
}
}
stage('archive-model') {
steps{
archiveArtifacts 'sucides_model.h5'
}
}
}
}