ium_444417/Jenkinsfile.eval
s444417 8a4c3af792
Some checks failed
s444417-training/pipeline/head There was a failure building this commit
add matplotlib
2022-05-03 22:09:18 +02:00

17 lines
468 B
Plaintext

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