s434766
3dfc1beec8
Some checks reported errors
s434766-training/pipeline/head Something is wrong with the build of this commit
32 lines
955 B
Plaintext
32 lines
955 B
Plaintext
pipeline {
|
|
agent {
|
|
dockerfile true
|
|
}
|
|
stages {
|
|
stage('checkout') {
|
|
steps {
|
|
git 'https://git.wmi.amu.edu.pl/s434766/ium_434766.git'
|
|
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'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |