Dodanie 'Jenkinsfile_evaluate'

This commit is contained in:
Michał Dudziak 2023-05-10 13:21:18 +02:00
parent af5954294c
commit 7cbe50f718

17
Jenkinsfile_evaluate Normal file
View File

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