ium_452662/Jenkinsfile

17 lines
340 B
Plaintext
Raw Normal View History

2023-05-10 12:32:40 +02:00
pipeline {
2023-05-10 13:31:08 +02:00
agent {
dockerfile true
}
2023-05-10 12:32:40 +02:00
stages{
stage('Copy data') {
steps {
copyArtifacts(projectName: 's452662-create-dataset', selector: lastSuccessful())
}
2023-05-10 11:40:30 +02:00
}
2023-05-10 12:32:40 +02:00
stage('Save model') {
steps{
archiveArtifacts 'model.h5'
}
}
2023-05-10 11:40:30 +02:00
}
}