update jenkinsfile_train
All checks were successful
s444356-training/pipeline/head This commit looks good

This commit is contained in:
Maciej Czajka 2022-05-02 15:47:49 +02:00
parent f1ea178976
commit 968441b9ab

View File

@ -21,5 +21,19 @@ pipeline {
}
}
}
}
post {
success {
emailext body: 'SUCCESS', subject: 's444356-training', to: 'e19191c5.uam.onmicrosoft.com@emea.teams.ms'
}
failure {
emailext body: 'FAILURE', subject: 's444356-training', to: 'e19191c5.uam.onmicrosoft.com@emea.teams.ms'
}
unstable {
emailext body: 'UNSTABLE', subject: 's444356-training', to: 'e19191c5.uam.onmicrosoft.com@emea.teams.ms'
}
changed {
emailext body: 'CHANGED', subject: 's444356-training', to: 'e19191c5.uam.onmicrosoft.com@emea.teams.ms'
}
}
}