8929851757
Some checks failed
s434704-training/pipeline/head There was a failure building this commit
38 lines
1.3 KiB
Plaintext
38 lines
1.3 KiB
Plaintext
pipeline {
|
|
agent {
|
|
dockerfile true
|
|
}
|
|
parameters {
|
|
string(name: 'epochs', description: 'epochs number', defaultValue: '100', trim: false)
|
|
string(name: 'verbose', description: 'verbose number', defaultValue: '0', trim: false)
|
|
buildSelector(defaultSelector: lastSuccessful(), description: 'Use latest build', name: 'BUILD_SELECTOR')
|
|
gitParameter branchFilter: 'origin/(.*)', defaultValue: 'master', name: 'BRANCH', type: 'PT_BRANCH'
|
|
}
|
|
stages {
|
|
stage("Copy artifacts"){
|
|
steps {
|
|
copyArtifacts fingerprintArtifacts: true, projectName: 's434704-create-dataset', selector: buildParameter('BUILD_SELECTOR')
|
|
}
|
|
}
|
|
stage("Run training"){
|
|
steps {
|
|
sh "python3 training.py ${verbose} ${epochs}"
|
|
}
|
|
}
|
|
stage('Save trained model files') {
|
|
steps{
|
|
archiveArtifacts 'linear_regression.h5'
|
|
}
|
|
}
|
|
}
|
|
post {
|
|
always {
|
|
mail body: "TRAINING - ${currentBuild.currentResult}", subject: 's434704', to: '26ab8f35.uam.onmicrosoft.com@emea.teams.ms'
|
|
}
|
|
success {
|
|
build job: "s434704-evaluation/${params.BRANCH}", parameters: [
|
|
gitParameter(name: 'BRANCH', value: params.BRANCH)
|
|
], wait: false
|
|
}
|
|
}
|
|
} |