ium_434704/Jenkinsfile_train

37 lines
1.2 KiB
Plaintext
Raw Normal View History

2021-05-13 22:20:25 +02:00
pipeline {
agent {
dockerfile true
}
2021-05-13 22:20:25 +02:00
parameters {
2021-05-14 04:01:11 +02:00
gitParameter branchFilter: 'origin/(.*)', defaultValue: 'master', name: 'BRANCH', type: 'PT_BRANCH'
string(name: 'options', description: 'Trainig script options')
2021-05-13 22:20:25 +02:00
buildSelector(defaultSelector: lastSuccessful(), description: 'Use latest build', name: 'BUILD_SELECTOR')
}
stages {
stage("Copy artifacts"){
steps {
copyArtifacts fingerprintArtifacts: true, projectName: 's434704-create-dataset', selector: buildParameter('BUILD_SELECTOR')
}
}
stage("Run training"){
2021-05-13 22:43:26 +02:00
steps {
sh "python3 training.py ${params.options}"
}
2021-05-13 22:20:25 +02:00
}
stage('Save trained model files') {
steps{
2021-05-14 04:27:00 +02:00
archiveArtifacts 'linear_regression.h5
2021-05-13 22:20:25 +02:00
}
}
}
post {
always {
2021-05-14 04:01:11 +02:00
mail body: "TRAINING - ${currentBuild.currentResult}", subject: 's434704', to: '26ab8f35.uam.onmicrosoft.com@emea.teams.ms'
}
success {
build job: 's434704-evaluation/master', parameters: [
string(name: 'branchName', value: "${params.BRANCH}")
], wait: false
2021-05-13 22:20:25 +02:00
}
}
}