ium_s449288/lab6/Jenkinsfile_eval

44 lines
1.8 KiB
Plaintext
Raw Normal View History

2022-04-24 15:07:23 +02:00
pipeline {
agent {
dockerfile true
}
stages {
stage('Stage 1') {
steps {
2022-04-25 22:07:19 +02:00
sh 'chmod u+x ./evaluate.py'
echo 'Copying datasets from the create-dataset job...'
copyArtifacts filter: 'lego_sets_clean_test.csv', projectName: 's449288-create-dataset'
echo 'Datasets copied'
echo 'Copying model from the training job...'
copyArtifacts filter: 'lego_reg_model.tar.gz', projectName: 's449288-training'
echo 'Model copied'
sh 'tar xvzf lego_reg_model.tar.gz'
echo 'Optional copying of the metrics file from previous build...'
copyArtifacts filter: 'eval_results.txt', projectName: 's449288-evaluation', optional: 'True'
2022-04-25 22:53:03 +02:00
echo 'Metrics file copied if it did not exist'
2022-04-25 22:07:19 +02:00
echo 'Evaluating model...'
sh 'python3 evaluate.py'
echo 'Model evaluated. Metrics saved. Plot saved.'
sh 'head eval_results.txt'
sh 'file error_plot.jpg'
echo 'Archiving metrics file...'
archiveArtifacts 'eval_results.txt'
echo 'File archived'
2022-04-24 15:07:23 +02:00
}
}
2022-04-24 17:51:33 +02:00
}
2022-04-25 22:07:19 +02:00
post {
2022-04-24 17:51:33 +02:00
success {
2022-04-25 22:07:19 +02:00
emailext body: 'SUCCESS', subject: 's449288-evaluation build status', to: 'e19191c5.uam.onmicrosoft.com@emea.teams.ms'
2022-04-24 17:51:33 +02:00
}
failure {
2022-04-25 22:07:19 +02:00
emailext body: 'FAILURE', subject: 's449288-evaluation build status', to: 'e19191c5.uam.onmicrosoft.com@emea.teams.ms'
2022-04-24 17:51:33 +02:00
}
unstable {
2022-04-25 22:07:19 +02:00
emailext body: 'UNSTABLE', subject: 's449288-evaluation build status', to: 'e19191c5.uam.onmicrosoft.com@emea.teams.ms'
2022-04-24 17:51:33 +02:00
}
changed {
2022-04-25 22:07:19 +02:00
emailext body: 'CHANGED', subject: 's449288-evaluation build status', to: 'e19191c5.uam.onmicrosoft.com@emea.teams.ms'
2022-04-24 15:07:23 +02:00
}
2022-04-24 17:51:33 +02:00
}
2022-04-24 15:07:23 +02:00
}