ium_452662/Jenkinsfile_evaluate

17 lines
366 B
Plaintext
Raw Normal View History

2023-05-10 13:21:18 +02:00
pipeline {
agent {
dockerfile true
}
stages{
stage('Copy model') {
steps {
2023-05-10 13:38:45 +02:00
copyArtifacts(projectName: 's452662-training/master', selector: lastSuccessful(), flatten: true)
2023-05-10 13:21:18 +02:00
}
}
stage('Archive metrics') {
steps{
archiveArtifacts 'metrics.txt'
2023-05-10 17:53:58 +02:00
}
2023-05-10 13:21:18 +02:00
}
}
}