ium_444417/Jenkinsfile.eval
s444417 8cca2125c9
Some checks failed
s444417-training/pipeline/head There was a failure building this commit
eval script
2022-05-03 21:45:42 +02:00

22 lines
617 B
Plaintext

pipeline {
agent none
stages {
stage('Copy') {
steps {
copyArtifacts projectName: 's444417-training'
sh 'python3 evalScript.py'
archiveArtifacts 'trainResults.csv'
}
}
stage ('Starting eval job') {
steps {
build job: 's444417-evaluation/master', wait: true
}
}
}
post {
always {
emailext body: "${currentBuild.currentResult}", subject: 's444417-evaluation build status', to: 'e19191c5.uam.onmicrosoft.com@emea.teams.ms'
}
}
}