ium_478815/Jenkinsfile_train

24 lines
627 B
Plaintext
Raw Normal View History

2022-05-06 18:56:07 +02:00
pipeline {
agent {
2022-05-06 19:15:58 +02:00
docker { image 'korneliag/ium478815:1.0' }
2022-05-06 18:56:07 +02:00
}
2022-05-06 19:11:58 +02:00
2022-05-06 19:19:11 +02:00
stages {
stage('Script'){
steps {
copyArtifacts filter: '*', projectName: 's478815-create-dataset'
sh 'python3 ./biblioteka_DL.py'
2022-05-06 19:23:54 +02:00
archiveArtifacts artifacts: 'model.pkl', followSymlinks: false
2022-05-06 19:19:11 +02:00
}
2022-05-06 19:11:58 +02:00
}
2022-05-06 19:19:11 +02:00
}
post {
success {
emailext body: 'SUCCESS', subject: 's478815-training', to: 'e19191c5.uam.onmicrosoft.com@emea.teams.ms'
2022-05-06 18:56:07 +02:00
}
2022-05-06 19:19:11 +02:00
failure {
emailext body: 'FAILURE', subject: 's478815-training', to: 'e19191c5.uam.onmicrosoft.com@emea.teams.ms'
2022-05-06 18:56:07 +02:00
}
2022-05-06 19:19:11 +02:00
}
2022-05-06 19:19:53 +02:00
}