2022-05-02 17:37:51 +02:00
|
|
|
node {
|
|
|
|
checkout scm
|
2022-05-02 22:28:46 +02:00
|
|
|
try {
|
|
|
|
docker.image('s444452/ium:1.3').inside {
|
2022-05-02 17:37:51 +02:00
|
|
|
stage('Preparation') {
|
|
|
|
properties([
|
2022-05-02 18:25:14 +02:00
|
|
|
pipelineTriggers([upstream(threshold: hudson.model.Result.SUCCESS, upstreamProjects: "s444452-create-dataset")]),
|
2022-05-02 17:37:51 +02:00
|
|
|
parameters([
|
|
|
|
string(
|
|
|
|
defaultValue: ".",
|
|
|
|
description: 'Arguments for model training: arg1,arg2,arg3',
|
|
|
|
name: 'TRAIN_ARGS'
|
|
|
|
)
|
|
|
|
])
|
|
|
|
])
|
|
|
|
}
|
2022-05-02 18:25:14 +02:00
|
|
|
stage('Copy artifacts') {
|
2022-05-02 18:49:07 +02:00
|
|
|
copyArtifacts filter: 'train_data.csv', fingerprintArtifacts: true, projectName: 's444452-create-dataset'
|
|
|
|
copyArtifacts filter: 'test_data.csv', fingerprintArtifacts: true, projectName: 's444452-create-dataset'
|
|
|
|
copyArtifacts filter: 'dev_data.csv', fingerprintArtifacts: true, projectName: 's444452-create-dataset'
|
2022-05-02 18:25:14 +02:00
|
|
|
}
|
2022-05-02 17:37:51 +02:00
|
|
|
stage('Run script') {
|
|
|
|
withEnv(["TRAIN_ARGS=${params.TRAIN_ARGS}"]) {
|
|
|
|
sh "python3 Scripts/train_neural_network.py $TRAIN_ARGS"
|
|
|
|
}
|
|
|
|
}
|
2022-05-02 18:49:07 +02:00
|
|
|
stage('Archive artifacts') {
|
2022-05-02 19:21:28 +02:00
|
|
|
archiveArtifacts "neural_network_evaluation.txt, model/**"
|
2022-05-02 18:49:07 +02:00
|
|
|
}
|
2022-05-02 19:33:02 +02:00
|
|
|
}
|
2022-05-02 22:28:46 +02:00
|
|
|
} catch (e) {
|
|
|
|
currentBuild.result = "FAILED"
|
|
|
|
throw e
|
|
|
|
} finally {
|
|
|
|
notifyBuild(currentBuild.result)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
def notifyBuild(String buildStatus = 'STARTED') {
|
|
|
|
buildStatus = buildStatus ?: 'SUCCESS'
|
|
|
|
|
|
|
|
def subject = "Job: ${env.JOB_NAME}"
|
|
|
|
def details = "Build nr: ${env.BUILD_NUMBER}, status: ${buildStatus} \n url: ${env.BUILD_URL}"
|
|
|
|
|
|
|
|
// Override default values based on build status
|
|
|
|
if (buildStatus == 'SUCCESS') {
|
|
|
|
color = 'GREEN'
|
|
|
|
colorCode = '#00FF00'
|
|
|
|
} else {
|
|
|
|
color = 'RED'
|
|
|
|
colorCode = '#FF0000'
|
2022-05-02 19:33:02 +02:00
|
|
|
}
|
2022-05-02 22:28:46 +02:00
|
|
|
emailext (
|
|
|
|
subject: subject,
|
|
|
|
body: details,
|
2022-05-02 22:31:50 +02:00
|
|
|
to: 'e19191c5.uam.onmicrosoft.com@emea.teams.ms'
|
2022-05-02 22:28:46 +02:00
|
|
|
)
|
2022-05-02 17:37:51 +02:00
|
|
|
}
|