ium_444409/Jenkinsfile-eval
Marcin Kostrzewski cdf349e089
All checks were successful
s444409-evaluation/pipeline/head This commit looks good
s444409-training/pipeline/head This commit looks good
Revert "Add model build selector"
This reverts commit f42a5aca2f.
2022-05-06 18:45:04 +02:00

62 lines
1.9 KiB
Plaintext

pipeline {
agent {
docker {
image 's444409-create-dataset'
}
}
parameters {
gitParameter branchFilter: 'origin/(.*)', defaultValue: 'main', name: 'BRANCH', type: 'PT_BRANCH'
buildSelector(
defaultSelector: lastSuccessful(),
description: 'Which build to use for copying artifacts',
name: 'BUILD_SELECTOR'
)
}
environment {
NOTIFICATION_ADDRESS = 'e19191c5.uam.onmicrosoft.com@emea.teams.ms'
}
stages {
stage('Get dataset') {
steps {
copyArtifacts projectName: 's444409-create-dataset', selector: lastSuccessful(), optional: true
}
}
stage('Get model trend') {
steps {
copyArtifacts projectName: "s444409-training/${params.BRANCH}/", selector: buildParameter('BUILD_SELECTOR'), optional: true
}
}
stage('Get previous trend') {
steps {
copyArtifacts projectName: "s444409-evaluation/${params.BRANCH}/", selector: buildParameter('BUILD_SELECTOR'), optional: true
}
}
stage('Evaluate model and write results to file') {
steps {
sh "python eval_model.py"
script {
LOSS = sh(script: 'tail -1 evaluation_results.txt', returnStdout: true).trim()
}
}
}
}
post {
always {
archiveArtifacts artifacts: 'evaluation_results.txt', onlyIfSuccessful: true
archiveArtifacts artifacts: 'trend.png', onlyIfSuccessful: true
}
success {
emailext body: "Evaluation results: RMSE:${LOSS}", subject: "${env.JOB_NAME}", to: "${env.NOTIFICATION_ADDRESS}"
}
failure {
emailext body: 'FAILURE', subject: "${env.JOB_NAME}", to: "${env.NOTIFICATION_ADDRESS}"
}
}
}