ium_444417/Jenkinsfile.eval
s444417 fae9b7ffc8
Some checks failed
s444417-evaluation/pipeline/head There was a failure building this commit
s444417-training/pipeline/head There was a failure building this commit
fix path
2022-05-03 22:16:47 +02:00

19 lines
509 B
Plaintext

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