ium_434760/Jenkinsfile-train

52 lines
1.4 KiB
Plaintext
Raw Normal View History

2021-04-28 20:21:08 +02:00
pipeline {
agent {
2021-04-30 00:07:34 +02:00
docker { image 'adnovac/ium_s434760:1.2' }
2021-04-28 20:21:08 +02:00
}
parameters{
buildSelector(
defaultSelector: lastSuccessful(),
description: 'Which build to use for copying artifacts',
name: 'WHICH_BUILD'
2021-04-28 21:24:24 +02:00
)
2021-04-28 21:21:14 +02:00
string(
2021-04-28 21:24:24 +02:00
defaultValue: '16',
2021-04-28 21:21:14 +02:00
description: 'batch size',
name: 'BATCH_SIZE'
2021-04-28 21:24:24 +02:00
)
2021-04-28 21:21:14 +02:00
string(
2021-04-28 21:24:24 +02:00
defaultValue: '15',
2021-04-28 21:21:14 +02:00
description: 'epochs',
name: 'EPOCHS'
2021-04-28 20:21:08 +02:00
)
}
stages {
2021-04-28 21:38:41 +02:00
stage('copy artifacts')
2021-04-28 20:21:08 +02:00
{
2021-04-28 21:38:41 +02:00
steps
{
copyArtifacts(fingerprintArtifacts: true, projectName: 's434760-create-dataset', selector: buildParameter('WHICH_BUILD'))
}
2021-04-28 21:21:14 +02:00
}
2021-04-28 21:38:41 +02:00
stage('train')
2021-04-28 21:21:14 +02:00
{
2021-04-28 21:38:41 +02:00
steps
{
catchError {
sh 'python3.8 train.py ${BATCH_SIZE} ${EPOCHS}'
}
}
2021-04-28 20:21:08 +02:00
}
2021-04-28 21:38:41 +02:00
stage('archive artifacts') {
steps {
archiveArtifacts 'model.h5'
}
2021-04-28 20:21:08 +02:00
}
2021-04-28 21:38:41 +02:00
stage('send email') {
steps {
2021-04-28 23:01:13 +02:00
emailext body: currentBuild.result ?: 'SUCCESS',
2021-04-28 21:38:41 +02:00
subject: 's434760 - train',
2021-04-30 00:11:23 +02:00
to: '26ab8f35.uam.onmicrosoft.com@emea.teams.ms'
2021-04-28 21:38:41 +02:00
}
2021-04-28 21:24:24 +02:00
}
2021-04-28 20:21:08 +02:00
}
}