This commit is contained in:
parent
8596ae1d46
commit
baf3607d0d
@ -2,29 +2,41 @@ pipeline {
|
||||
agent {
|
||||
dockerfile true
|
||||
}
|
||||
parameters{
|
||||
buildSelector(
|
||||
defaultSelector: lastSuccessful(),
|
||||
description: 'Which build to use for copying artifacts',
|
||||
name: 'WHICH_BUILD_DATA'
|
||||
)
|
||||
buildSelector(
|
||||
defaultSelector: lastSuccessful(),
|
||||
description: 'Which build to use for copying artifacts',
|
||||
name: 'WHICH_BUILD_TRAIN'
|
||||
)
|
||||
}
|
||||
stages {
|
||||
stage('checkout') {
|
||||
steps {
|
||||
copyArtifacts fingerprintArtifacts: true, projectName: 's434766-create-dataset'
|
||||
copyArtifacts fingerprintArtifacts: true, projectName: 's434766-training'
|
||||
copyArtifacts fingerprintArtifacts: true, projectName: 's434766-create-dataset', selector: buildParameter('WHICH_BUILD_DATA')
|
||||
copyArtifacts fingerprintArtifacts: true, projectName: 's434766-training', selector: buildParameter('WHICH_BUILD_TRAIN')
|
||||
}
|
||||
}
|
||||
stage('Docker'){
|
||||
steps{
|
||||
sh 'python3 "./../stroke-pytorch-eval.py" >> eval.txt'
|
||||
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'
|
||||
}
|
||||
}
|
||||
}
|
||||
stage('sendMail') {
|
||||
steps{
|
||||
emailext body: currentBuild.result ?: 'SUCCESS',
|
||||
subject: 's434766 training',
|
||||
to: '26ab8f35.uam.onmicrosoft.com@emea.teams.ms'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user