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

This commit is contained in:
Maciej Czajka 2022-05-02 17:59:25 +02:00
parent 0457b62f24
commit ce31be5ab2

View File

@ -31,16 +31,16 @@ pipeline {
}
post {
success {
emailext body: 'SUCCESS, ACC = ${ACC}', subject: 's444356-evaluation', to: 'e19191c5.uam.onmicrosoft.com@emea.teams.ms'
emailext body: "SUCCESS, ACC = ${ACC}", subject: 's444356-evaluation', to: 'e19191c5.uam.onmicrosoft.com@emea.teams.ms'
}
failure {
emailext body: 'FAILURE, ACC = ${ACC}', subject: 's444356-evaluation', to: 'e19191c5.uam.onmicrosoft.com@emea.teams.ms'
emailext body: "FAILURE, ACC = ${ACC}", subject: 's444356-evaluation', to: 'e19191c5.uam.onmicrosoft.com@emea.teams.ms'
}
unstable {
emailext body: 'UNSTABLE, ACC = ${ACC}', subject: 's444356-evaluation', to: 'e19191c5.uam.onmicrosoft.com@emea.teams.ms'
emailext body: "UNSTABLE, ACC = ${ACC}", subject: 's444356-evaluation', to: 'e19191c5.uam.onmicrosoft.com@emea.teams.ms'
}
changed {
emailext body: 'CHANGED, ACC = ${ACC}', subject: 's444356-evaluation', to: 'e19191c5.uam.onmicrosoft.com@emea.teams.ms'
emailext body: "CHANGED, ACC = ${ACC}", subject: 's444356-evaluation', to: 'e19191c5.uam.onmicrosoft.com@emea.teams.ms'
}
}
}