s434766
8596ae1d46
Some checks failed
s434766-evaluation/pipeline/head There was a failure building this commit
30 lines
885 B
Plaintext
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'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |