ium_452662/Jenkinsfile_evaluate

17 lines
358 B
Plaintext

pipeline {
agent {
dockerfile true
}
stages{
stage('Copy model') {
steps {
copyArtifacts(projectName: 's452662-training', selector: lastSuccessful(), flatten: true)
}
}
stage('Archive metrics') {
steps{
archiveArtifacts 'metrics.txt'
}
}
}
}