ium_444417/Jenkinsfile.eval
s444417 7383368ec7
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
add agent dockerfile
2022-05-03 22:12:57 +02:00

19 lines
501 B
Plaintext

pipeline {
agent {
dockerfile true
}
stages {
stage('Copy') {
steps {
copyArtifacts projectName: 's444417-training'
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'
}
}
}