ium_434766/pytorch-training-eval/Jenkinsfile-train
2021-05-10 11:32:14 +02:00

51 lines
1.2 KiB
Plaintext

pipeline {
agent {
dockerfile true
}
parameters{
buildSelector(
defaultSelector: lastSuccessful(),
description: 'Which build to use for copying artifacts',
name: 'WHICH_BUILD'
)
string(
defaultValue: '16',
description: 'batch size',
name: 'BATCH_SIZE'
)
string(
defaultValue: '15',
description: 'epochs',
name: 'EPOCHS'
)
}
stages {
stage('checkout') {
steps {
copyArtifacts fingerprintArtifacts: true, projectName: 's434766-create-dataset', selector: buildParameter('WHICH_BUILD')
}
}
stage('Docker'){
steps{
sh 'python3 "./stroke-pytorch.py" ${BATCH_SIZE} ${EPOCHS} > pred.txt'
}
}
stage('archiveArtifacts') {
steps{
archiveArtifacts 'pred.txt'
archiveArtifacts 'stroke.pth'
}
}
stage('sendMail') {
steps{
emailext body: currentBuild.result ?: 'SUCCESS',
subject: 's434766 training',
to: '26ab8f35.uam.onmicrosoft.com@emea.teams.ms'
}
}
}
}