ium_452662/Jenkinsfile_evaluate

17 lines
343 B
Plaintext

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