ium_434695/Jenkinsfile

47 lines
1.2 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-15 17:01:54 +02:00
stage('checkout') {
steps {
copyArtifacts fingerprintArtifacts: true, projectName: 's434695-create-dataset', selector: buildParameter('WHICH_BUILD')
}
}
stage('archiveArtifacts') {
steps{
2021-05-15 19:14:37 +02:00
archiveArtifacts 'vgsales_model.h5'
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
}
}