ium_434766/pytorch-training-eval/Jenkinsfile-eval
s434766 8596ae1d46
Some checks failed
s434766-evaluation/pipeline/head There was a failure building this commit
s7
2021-05-10 10:47:18 +02:00

30 lines
885 B
Plaintext

pipeline {
agent {
dockerfile true
}
stages {
stage('checkout') {
steps {
copyArtifacts fingerprintArtifacts: true, projectName: 's434766-create-dataset'
copyArtifacts fingerprintArtifacts: true, projectName: 's434766-training'
}
}
stage('Docker'){
steps{
sh 'python3 "./../stroke-pytorch-eval.py" >> eval.txt'
}
}
stage('archiveArtifacts') {
steps {
archiveArtifacts 'eval.txt'
}
post {
success {
emailext body: 'Evaluation of stroke predictions is finished',
subject: 's434766 evaluation finished',
to: '26ab8f35.uam.onmicrosoft.com@emea.teams.ms'
}
}
}
}
}