ium_434732/Jenkinsfile_train

52 lines
1.3 KiB
Plaintext
Raw Permalink Normal View History

2021-05-15 12:04:19 +02:00
pipeline {
agent {
dockerfile true
}
parameters{
buildSelector(
defaultSelector: lastSuccessful(),
description: 'Which build to use for copying artifacts',
name: 'WHICH_BUILD'
)
string(
2021-05-15 15:34:10 +02:00
defaultValue: '10',
2021-05-15 12:04:19 +02:00
description: 'batch size',
name: 'BATCH_SIZE'
)
string(
2021-05-15 15:34:10 +02:00
defaultValue: '5',
2021-05-15 12:04:19 +02:00
description: 'epochs',
name: 'EPOCHS'
)
}
stages {
2021-05-15 15:54:08 +02:00
stage('copyArtifacts') {
2021-05-15 12:04:19 +02:00
steps {
copyArtifacts fingerprintArtifacts: true, projectName: 's434732-create-dataset', selector: buildParameter('WHICH_BUILD')
}
}
2021-05-15 15:54:08 +02:00
stage('Run_script'){
2021-05-15 12:04:19 +02:00
steps{
sh 'python3 "./training.py" ${BATCH_SIZE} ${EPOCHS} > model_pred.txt'
}
}
stage('archiveArtifacts') {
steps{
archiveArtifacts 'model_pred.txt'
2021-05-15 15:34:10 +02:00
archiveArtifacts 'DEATH_EVENT.pth'
2021-05-15 12:04:19 +02:00
}
}
}
post {
success {
2021-05-15 15:54:08 +02:00
build job: 's434732-evaluation/master'
2021-05-15 12:30:40 +02:00
mail body: 'SUCCESS TRAINING', subject: 's434732', to: '26ab8f35.uam.onmicrosoft.com@emea.teams.ms'
2021-05-15 12:04:19 +02:00
}
failure {
mail body: 'FAILURE TRAINING', subject: 's434732', to: '26ab8f35.uam.onmicrosoft.com@emea.teams.ms'
}
}
}