ium_452662/Jenkinsfile_evaluate

17 lines
343 B
Plaintext
Raw Normal View History

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