I have 1 upstream job and 2 parallel downstream jobs开发者_如何学Go. When the upstream job succeeds, 2 downstream jobs will be triggered. Currently, I send mail notice for every jobs separately. Not the receivers are complaining for to many mails.
I need to find out a way to gather the build result of those 3 jobs together and send 1 mail notice.
Use the parameterized trigger plugin as a build step (not as a post-build action). I believe it can wait for downstream projects to finish, examine their status, and set the current project's status accordingly.
精彩评论