ium_444417/Jenkinsfile.eval

19 lines
508 B
Plaintext
Raw Normal View History

2022-05-03 20:47:24 +02:00
pipeline {
2022-05-03 22:12:57 +02:00
agent {
dockerfile true
}
2022-05-03 20:47:24 +02:00
stages {
stage('Copy') {
steps {
2022-05-03 22:15:12 +02:00
copyArtifacts projectName: 's444417-training/master'
2022-05-03 22:12:57 +02:00
sh 'python3 .src/evalScript.py'
2022-05-03 21:45:42 +02:00
archiveArtifacts 'trainResults.csv'
}
}
2022-05-03 20:47:24 +02:00
}
post {
always {
emailext body: "${currentBuild.currentResult}", subject: 's444417-evaluation build status', to: 'e19191c5.uam.onmicrosoft.com@emea.teams.ms'
}
}
}