ium_478839/Jenkinsfile-evaluation

38 lines
1.3 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 22:51:44 +02:00
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 {
copyArtifacts filter: '*', projectName: 's478839-create-dataset'
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 {
out = sh (
script: 'tail -1 MSE.txt',
returnStdout: true
).trim()
}
2022-05-06 21:10:38 +02:00
}
}
}
post {
success {
2022-05-06 23:14:52 +02:00
emailext body: 'SUCCESS, MSE = ${out}', 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
}
}
}