.
All checks were successful
s444501-training/pipeline/head This commit looks good

This commit is contained in:
s444501 2022-05-01 14:43:24 +02:00
parent f9ac0dc219
commit 5ab5a7fd5d

View File

@ -8,6 +8,11 @@ pipeline {
description: 'Which build to use for copying artifacts',
name: 'BUILD_SELECTOR'
)
string(
defaultValue: '10',
description: 'some training parameter',
name: 'TPARAM'
)
}
stages {
@ -23,9 +28,13 @@ pipeline {
}
stage('Archive model') {
steps {
archiveArtifacts artifacts: 'model.pkl'
archiveArtifacts artifacts: 'model.pkl, neural_network_prediction_results.csv'
}
}
}
post {
always {
emailext body: "${currentBuild.currentResult}", subject: 's444501-training', to: 'e19191c5.uam.onmicrosoft.com@emea.teams.ms'
}
}
}