[JIRA] (JENKINS-59919) plugin takes developers for culprits only from first upstream build if build was triggered by more than one upstream task

16 views
Skip to first unread message

mail@andrey-belyaevskiy.ru (JIRA)

unread,
Oct 24, 2019, 8:14:01 AM10/24/19
to jenkinsc...@googlegroups.com
Andrey Belyaevskiy created an issue
 
Jenkins / Bug JENKINS-59919
plugin takes developers for culprits only from first upstream build if build was triggered by more than one upstream task
Issue Type: Bug Bug
Assignee: Alex Earl
Components: email-ext-plugin
Created: 2019-10-24 12:13
Environment: jenkins 2.7.4, email ext plugin 2.58
Priority: Major Major
Reporter: Andrey Belyaevskiy

I have downstream job. When this job is triggered by more than one upstream builds it takes developers only from first build.

My setup is jobA->jobB

If jobB with some run number x is triggered by jobA with number y and number y+1, and jobB x fails ext email plugin takes developers from jobA x build for culprits list and developers from joB x+1 build do not receive email about failed downstream job. 

Add Comment Add Comment
 
This message was sent by Atlassian Jira (v7.13.6#713006-sha1:cc4451f)
Atlassian logo

slide.o.mix@gmail.com (JIRA)

unread,
Oct 24, 2019, 11:02:03 AM10/24/19
to jenkinsc...@googlegroups.com
Alex Earl commented on Bug JENKINS-59919
 
Re: plugin takes developers for culprits only from first upstream build if build was triggered by more than one upstream task

I'm not sure I understand the issue here. jobA is run twice and it triggers TWO runs of jobB or just one? Which recipient provider are you using in your jobB? If I assume UpstreamCommitters, then the following code is used: https://github.com/jenkinsci/email-ext-plugin/blob/master/src/main/java/hudson/plugins/emailext/plugins/recipients/UpstreamComitterRecipientProvider.java#L51

 

This uses the UpstreamCause to determine what triggered the build, this should resolve to the correct upstream instance of jobA if two jobB's are triggered (one for each trigger of jobA). If only one jobB is triggered, then only one jobA will be the upstream cause.

mixail.yanchikov@yandex.ru (JIRA)

unread,
Oct 24, 2019, 11:36:03 AM10/24/19
to jenkinsc...@googlegroups.com

mixail.yanchikov@yandex.ru (JIRA)

unread,
Oct 24, 2019, 11:40:03 AM10/24/19
to jenkinsc...@googlegroups.com

slide.o.mix@gmail.com (JIRA)

unread,
Oct 24, 2019, 12:11:03 PM10/24/19
to jenkinsc...@googlegroups.com

mail@andrey-belyaevskiy.ru (JIRA)

unread,
Oct 24, 2019, 12:25:03 PM10/24/19
to jenkinsc...@googlegroups.com

Oh=) it very easy.

What we have: 

  1. #14345, #14356 - 2 consecutive runs of our jobA - its our build job (build of c++ project)
  2. #9579 - first failed run of our jobB - its test job (runs some tests on build from jobA)

We have little resources and our jobA takes much time (for our resources), so to make more builds (for further testing) I setup 

  • jobA - allow simultaneous builds (on different notes - with throttle concurrent build option enabled), not waiting for downstream job completion
  • jobB  - same settings

While reading your comment I feel that issue can be in triggering jobB by 2 jobAs' runs but by the moment it was ok for us - except of issues with emailing in failure cases. Its ok for me to combine commiters of #14356 and #14357  to send them email to notify some brake tests.

mail@andrey-belyaevskiy.ru (JIRA)

unread,
Oct 24, 2019, 12:28:03 PM10/24/19
to jenkinsc...@googlegroups.com
Andrey Belyaevskiy edited a comment on Bug JENKINS-59919
Oh=) it very easy.

What we have: 
# #14345, #14356 - 2 consecutive runs of our jobA - its our build job (build of c++ project)
# #9579 - first failed run of our jobB - its test job (runs some tests on build from jobA)

We have
little limited resources and our jobA takes much time (for our resources), so to make more builds (for further testing) I setup 
* jobA - allow simultaneous builds (on different
notes nodes - with throttle concurrent build option enabled), not waiting for downstream job completion
* jobB  - same settings


While reading your comment I feel that issue can be in triggering jobB by 2 jobAs' runs but by the moment it was ok for us - except of issues with emailing in failure cases. Its ok for me to combine commiters of #14356 and #14357  to send them email to notify some brake tests.

mail@andrey-belyaevskiy.ru (JIRA)

unread,
Oct 24, 2019, 12:29:03 PM10/24/19
to jenkinsc...@googlegroups.com
Andrey Belyaevskiy edited a comment on Bug JENKINS-59919
Oh=) it very easy.

What we have: 
# #14345, #14356 - 2 consecutive runs of our jobA - its our build job (build of c++ project)
# #9579 - first failed run of our jobB - its test job (runs some tests on build from jobA)

We have limited resources and our jobA takes much time (for our resources), so to make more builds (for further testing) I setup 
* jobA - allow simultaneous builds (on different nodes - with throttle concurrent build option enabled), not waiting for downstream job completion

* jobB  - same settings

While reading your comment I feel that issue can be in triggering jobB by 2 jobAs' runs but by the moment it was ok for us - except of issues with emailing in failure cases. Its ok for me to combine commiters of #14356 and #14357  to send them email to notify some brake broke tests.

slide.o.mix@gmail.com (JIRA)

unread,
Oct 24, 2019, 12:58:03 PM10/24/19
to jenkinsc...@googlegroups.com

The issue I think is that I use context.getRun().getCause(Cause.UpstreamCause.class). This will return the first occurrence of the Cause.UpstreamCause instance in the causes list. This is most likely only going to be the first jobA. I may need to switch to Run<?,?>.getCauses and loop over looking for all UpstreamCause instances. I'll play around with it.

Reply all
Reply to author
Forward
0 new messages