Added posts

This commit is contained in:
Filip Izydorczyk 2021-05-27 17:14:08 +02:00
parent 7f3b305cc9
commit 3f0f274eb3
3 changed files with 27 additions and 1 deletions

7
data/Jenkinsfile vendored
View File

@ -22,4 +22,9 @@ pipeline {
} }
} }
} }
} post {
success {
build job: 's434700-training'
}
}
}

View File

@ -36,4 +36,13 @@ pipeline {
} }
} }
} }
post{
success {
mail body: 'SUCCESS EVALUATION', subject: 's434700', to: '26ab8f35.uam.onmicrosoft.com@emea.teams.ms'
}
failure {
mail body: 'FAILURE EVALUATION', subject: 's434700', to: '26ab8f35.uam.onmicrosoft.com@emea.teams.ms'
}
}
} }

12
learning/Jenkinsfile vendored
View File

@ -29,4 +29,16 @@ pipeline {
} }
} }
} }
post {
success {
build job: 's434700-evaluation/master'
mail body: 'SUCCESS TRAINING', subject: 's434700', to: '26ab8f35.uam.onmicrosoft.com@emea.teams.ms'
}
failure {
mail body: 'FAILURE TRAINING', subject: 's434700', to: '26ab8f35.uam.onmicrosoft.com@emea.teams.ms'
}
}
} }