From 5cec7651501ae57398306232a7b3f9f5a6aa5fe6 Mon Sep 17 00:00:00 2001 From: Wirusik Date: Fri, 6 May 2022 20:19:47 +0200 Subject: [PATCH] Jenkinsfile for training model --- Jenkinsfile-training | 58 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 Jenkinsfile-training diff --git a/Jenkinsfile-training b/Jenkinsfile-training new file mode 100644 index 0000000..0fd7f96 --- /dev/null +++ b/Jenkinsfile-training @@ -0,0 +1,58 @@ +pipeline { + parameters { + string( + defaultValue: '64', + description: 'Batch size used in gradient', + name: 'BATCHSIZE', + trim: true + ) + string( + defaultValue: '5', + description: 'Number of iterations', + name: 'EPOCHS', + trim: true + ) + gitParameter branchFilter: 'origin/(.*)', defaultValue: 'main', name: 'BRANCH', type: 'PT_BRANCH' + buildSelector( + defaultSelector: lastSuccessful(), + description: 'Which build to use for copying artifacts', + name: 'BUILD_SELECTOR' + ) + } + + agent { + docker { + image 's444498-create-dataset' + } + } + + stages { + stage('Train model') { + steps { + sh "python neutral_network.py -e ${params.EPOCHS} -b ${params.BATCHSIZE}" + } + } + } + + environment { + NOTIFICATION_ADDRESS = 'e19191c5.uam.onmicrosoft.com@emea.teams.ms' + } + + post { + success { + emailext body: 'SUCCESS', subject: "${env.JOB_NAME}", to: "${env.NOTIFICATION_ADDRESS}" + } + + failure { + emailext body: 'FAILURE', subject: "${env.JOB_NAME}", to: "${env.NOTIFICATION_ADDRESS}" + } + + unstable { + emailext body: 'UNSTABLE', subject: "${env.JOB_NAME}", to: "${env.NOTIFICATION_ADDRESS}" + } + + changed { + emailext body: 'CHANGED', subject: "${env.JOB_NAME}", to: "${env.NOTIFICATION_ADDRESS}" + } + } +} \ No newline at end of file