ium_444409/Jenkinsfile-eval

48 lines
1.4 KiB
Plaintext
Raw Normal View History

2022-05-05 23:02:31 +02:00
pipeline {
agent {
docker {
image 's444409-create-dataset'
}
}
environment {
NOTIFICATION_ADDRESS = 'e19191c5.uam.onmicrosoft.com@emea.teams.ms'
}
stages {
2022-05-05 23:18:56 +02:00
stage('Get model trend') {
steps {
copyArtifacts projectName: 's444409-training/main/', selector: lastSuccessful(), optional: true
}
}
stage('Get previous trend') {
2022-05-05 23:02:31 +02:00
steps {
2022-05-05 23:14:22 +02:00
copyArtifacts projectName: 's444409-evaluation/main/', selector: lastSuccessful(), optional: true
2022-05-05 23:02:31 +02:00
}
}
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 {
2022-05-05 23:04:16 +02:00
archiveArtifacts artifacts: 'evaluation_results.txt', onlyIfSuccessful: true
archiveArtifacts artifacts: 'trend.png', onlyIfSuccessful: true
2022-05-05 23:02:31 +02:00
}
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}"
}
}
}