ium_444417/Jenkinsfile.eval
s444417 7579071b7f
Some checks failed
s444417-training/pipeline/head There was a failure building this commit
eval script
2022-05-03 20:47:24 +02:00

14 lines
339 B
Plaintext

pipeline {
stages {
stage('Copy') {
steps {
sh 'python3 evalScript.py'
}
}
}
post {
always {
emailext body: "${currentBuild.currentResult}", subject: 's444417-evaluation build status', to: 'e19191c5.uam.onmicrosoft.com@emea.teams.ms'
}
}
}