From b829da974b77b2978add941846b292241fea6fea Mon Sep 17 00:00:00 2001 From: MatOgr Date: Mon, 2 May 2022 10:59:57 +0200 Subject: [PATCH] Coma fix --- jenkins/training.Jenkinsfile | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/jenkins/training.Jenkinsfile b/jenkins/training.Jenkinsfile index 2fe916b..8c37b62 100644 --- a/jenkins/training.Jenkinsfile +++ b/jenkins/training.Jenkinsfile @@ -7,7 +7,7 @@ pipeline { defaultValue: '5', description: 'epochs number', name: 'epochs' - ), + ) string ( defaultValue: '--save', description: 'save model after training', @@ -34,7 +34,6 @@ pipeline { } stage('Archive artifacts') { steps { - archiveArtifacts artifacts: '*data/predictions.csv', onlyIfSuccessful: true archiveArtifacts artifacts: '*data/model_scripted*', onlyIfSuccessful: true } @@ -43,19 +42,19 @@ pipeline { post { success { - emailtext body: 'SUCCESS', subject: "s478841-training", to: 'e19191c5.uam.onmicrosoft.com@emea.teams.ms' + emailtext body: 'SUCCESS', subject: 's478841-training', to: 'e19191c5.uam.onmicrosoft.com@emea.teams.ms' } failure { - emailtext body: 'FAILURE', subject: "s478841-training", to: 'e19191c5.uam.onmicrosoft.com@emea.teams.ms' + emailtext body: 'FAILURE', subject: 's478841-training', to: 'e19191c5.uam.onmicrosoft.com@emea.teams.ms' } unstable { - emailtext body: 'UNSTABLE', subject: "s478841-training", to: 'e19191c5.uam.onmicrosoft.com@emea.teams.ms' + emailtext body: 'UNSTABLE', subject: 's478841-training', to: 'e19191c5.uam.onmicrosoft.com@emea.teams.ms' } changed { - emailtext body: 'CHANGED', subject: "s478841-training", to: 'e19191c5.uam.onmicrosoft.com@emea.teams.ms' + emailtext body: 'CHANGED', subject: 's478841-training', to: 'e19191c5.uam.onmicrosoft.com@emea.teams.ms' } } }