ium_434766/pytorch-training-eval/Jenkinsfile-eval

45 lines
1.3 KiB
Plaintext
Raw Normal View History

2021-05-07 21:30:35 +02:00
pipeline {
agent {
dockerfile true
}
2021-05-10 10:56:36 +02:00
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'
)
}
2021-05-07 21:30:35 +02:00
stages {
stage('checkout') {
steps {
2021-05-10 10:56:36 +02:00
copyArtifacts fingerprintArtifacts: true, projectName: 's434766-create-dataset', selector: buildParameter('WHICH_BUILD_DATA')
2021-05-07 21:30:35 +02:00
}
}
stage('Docker'){
steps{
2021-05-10 11:34:52 +02:00
copyArtifacts fingerprintArtifacts: true, projectName: 's434766-training/master', selector: buildParameter('WHICH_BUILD_TRAIN')
2021-05-10 10:56:36 +02:00
sh 'python3 "./stroke-pytorch-eval.py" >> eval.txt'
2021-05-07 21:30:35 +02:00
}
}
stage('archiveArtifacts') {
steps {
archiveArtifacts 'eval.txt'
}
}
2021-05-13 23:14:39 +02:00
}
post {
success {
mail body: 'SUCCESS EVALUATION', subject: 's434766', to: '26ab8f35.uam.onmicrosoft.com@emea.teams.ms'
}
failure {
mail body: 'FAILURE EVALUATION', subject: 's434766', to: '26ab8f35.uam.onmicrosoft.com@emea.teams.ms'
2021-05-10 10:56:36 +02:00
}
2021-05-13 23:14:39 +02:00
2021-05-07 21:30:35 +02:00
}
}