ium_444417/Jenkinsfile.eval

22 lines
617 B
Plaintext
Raw Normal View History

2022-05-03 20:47:24 +02:00
pipeline {
2022-05-03 21:45:42 +02:00
agent none
2022-05-03 20:47:24 +02:00
stages {
stage('Copy') {
steps {
2022-05-03 21:45:42 +02:00
copyArtifacts projectName: 's444417-training'
2022-05-03 20:47:24 +02:00
sh 'python3 evalScript.py'
2022-05-03 21:45:42 +02:00
archiveArtifacts 'trainResults.csv'
}
}
stage ('Starting eval job') {
steps {
build job: 's444417-evaluation/master', wait: true
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'
}
}
}