ium_478839/Jenkinsfile-evaluation

47 lines
1.9 KiB
Plaintext
Raw Normal View History

2022-05-06 21:10:38 +02:00
pipeline {
agent {
dockerfile {
additionalBuildArgs "--build-arg KAGGLE_USERNAME=${params.KAGGLE_USERNAME} --build-arg KAGGLE_KEY=${params.KAGGLE_KEY} --build-arg CUTOFF=${params.CUTOFF} -t sebastianwalesa"
}
}
2022-05-06 23:29:05 +02:00
parameters {
2022-05-06 23:35:35 +02:00
gitParameter branchFilter: 'origin/(.*)', defaultValue: 'feature', name: 'BRANCH', type: 'PT_BRANCH'
2022-05-06 23:29:05 +02:00
buildSelector(
defaultSelector: lastSuccessful(),
description: 'Which build to use for copying artifacts',
name: 'BUILD_SELECTOR'
)
}
2022-05-06 21:10:38 +02:00
stages {
2022-05-06 22:51:44 +02:00
stage('Evaluate'){
2022-05-06 21:10:38 +02:00
steps {
2022-05-06 23:29:05 +02:00
copyArtifacts filter: '*', projectName: 's478839-create-dataset', selector: buildParameter('BUILD_SELECTOR')
copyArtifacts filter: '*', projectName: 's478839-training/${BRANCH}', selector: buildParameter('BUILD_SELECTOR')
2022-05-06 23:31:59 +02:00
copyArtifacts filter: '*', projectName: 's478839-evaluation/feature', selector: buildParameter('BUILD_SELECTOR'), optional: true
2022-05-06 22:51:44 +02:00
sh 'python3 ./ml_pytorch_results.py'
archiveArtifacts artifacts: 'metrics.txt, MSE.txt, RMSplot.png', followSymlinks: false
2022-05-06 23:14:52 +02:00
script {
2022-05-06 23:17:17 +02:00
MSE = sh (
2022-05-06 23:20:34 +02:00
script: 'tail -1 MSE.txt',
2022-05-06 23:14:52 +02:00
returnStdout: true
).trim()
}
2022-05-06 21:10:38 +02:00
}
}
}
post {
success {
2022-05-06 23:20:34 +02:00
emailext body: "SUCCESS, MSE = ${MSE}", subject: 's478839-evaluation', to: 'e19191c5.uam.onmicrosoft.com@emea.teams.ms'
2022-05-06 21:10:38 +02:00
}
failure {
2022-05-06 23:00:40 +02:00
emailext body: 'FAILURE', subject: 's478839-evaluation', to: 'e19191c5.uam.onmicrosoft.com@emea.teams.ms'
2022-05-06 21:10:38 +02:00
}
unstable {
2022-05-06 23:00:40 +02:00
emailext body: 'UNSTABLE', subject: 's478839-evaluation', to: 'e19191c5.uam.onmicrosoft.com@emea.teams.ms'
2022-05-06 21:10:38 +02:00
}
changed {
2022-05-06 23:00:40 +02:00
emailext body: 'CHANGED', subject: 's478839-evaluation', to: 'e19191c5.uam.onmicrosoft.com@emea.teams.ms'
2022-05-06 21:10:38 +02:00
}
}
}