Fixes for Jenkinsfile_train

This commit is contained in:
Wojciech Jarmosz 2021-05-13 22:43:26 +02:00
parent 0fce6cd355
commit 2f09ede319

View File

@ -13,8 +13,10 @@ pipeline {
}
}
stage("Run training"){
steps {
sh "python3 training.py ${params.options}"
}
}
stage('Save trained model files') {
steps{
archiveArtifacts 'linear_regression/**'
@ -23,7 +25,7 @@ pipeline {
}
post {
always {
mail body: ${currentBuild.currentResult}, subject: 's434704', to: '26ab8f35.uam.onmicrosoft.com@emea.teams.ms'
mail body: "${currentBuild.currentResult}", subject: 's434704', to: '26ab8f35.uam.onmicrosoft.com@emea.teams.ms'
}
}
}