ium_434695/Jenkinsfile

61 lines
1.5 KiB
Plaintext
Raw Normal View History

2021-03-25 11:58:05 +01:00
pipeline {
2021-05-15 17:38:43 +02:00
agent {
dockerfile true
}
2021-05-15 17:01:54 +02:00
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'
2021-03-25 11:58:05 +01:00
)
}
stages {
2021-05-16 18:41:24 +02:00
stage('copy artifacts')
{
steps
{
2021-05-16 19:48:11 +02:00
copyArtifacts(fingerprintArtifacts: true, projectName: 's434695-create-dataset', selector: buildParameter('WHICH_BUILD'))
2021-05-16 18:41:24 +02:00
}
2021-05-15 17:01:54 +02:00
}
2021-05-16 18:41:24 +02:00
stage('train')
{
steps
2021-05-15 19:19:56 +02:00
{
catchError {
2021-05-16 19:50:58 +02:00
sh 'python3 train.py ${BATCH_SIZE} ${EPOCHS}'
2021-05-15 19:19:56 +02:00
}
}
2021-05-16 18:41:24 +02:00
}
stage('Archive artifacts') {
2021-05-15 17:01:54 +02:00
steps{
2021-05-16 19:48:11 +02:00
archiveArtifacts 'vgsales_model.h5'
2021-05-16 18:41:24 +02:00
archiveArtifacts 'my_runs/**'
2021-05-15 17:01:54 +02:00
}
}
2021-05-16 18:41:24 +02:00
}
2021-05-15 17:01:54 +02:00
post {
success {
build job: 's434695-evaluation/master'
mail body: 'SUCCESS TRAINING', subject: 's434695', to: '26ab8f35.uam.onmicrosoft.com@emea.teams.ms'
}
failure {
mail body: 'FAILURE TRAINING', subject: 's434695', to: '26ab8f35.uam.onmicrosoft.com@emea.teams.ms'
}
2021-03-25 11:58:05 +01:00
}
2021-05-16 18:41:24 +02:00
}