Re: Jenkins pipeline jobs being triggered by github webhooks from wrong repository

2020-02-23 Thread Ramanathan Muthaiah
On Wednesday, February 12, 2020 at 10:22:30 PM UTC+5:30, James Robson wrote:
>
> I have 1 code repo that should be triggering jobs, and a separate repo for 
> a jenkins pipeline library. There are 2 jenkins jobs that use the ‘GitHub 
> hook trigger for GITScm polling’ build trigger, both are pipeline jobs 
> using the ‘Pipeline script from SCM’ with the repository configured to 
> point to the code repo and the ‘Branches to build’ set to ‘origin/develop’. 
> The pipeline library is used inside the pipelines for these jobs.
>
> I would expect these jobs to have their polling triggered by pushes to the 
> code repo, however they are only being triggered by pushes to the jenkins 
> pipeline library repo. 
>
>
> Using a log recorder set to get FINEST logs I can see:
>
> Received PushEvent for https://github.com/ 
> Considering to poke 
> Skipped  because it doesn't have a matching repository.
> ...
> Received PushEvent for https://github.com/
> Considering to poke 
> Poked 
>
>
>
> So something in jenkins seems to think these jobs do not use the code 
> repository, but when a scan is triggered I see the following in the 
> ‘Polling Log’:
>
> Started by event from 192.30.252.97
> ...
>  > git ls-remote -h https://github.com/ # timeout=10
>
>
> So the repo poll is using the code repo, and the list of commits that show 
> up in the ‘Changes’ list are from the code repo.
>
> It seems to be only these 2 jobs that are affected, no other job is being 
> triggered by pushes to the pipeline library repo. 
>
>
>
This sounds like some missing or incorrect config settings.

Also, if you are using declarative pipeline model in the code repo, this 
thread may be of some help to you.

https://stackoverflow.com/questions/42062481/how-to-trigger-a-jenkins-multibranch-pipeline-when-code-change-is-pushed-to-gith

/Ram

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/9572e01e-9104-4aa9-a26d-4a44a70ccc89%40googlegroups.com.


Jenkins pipeline jobs being triggered by github webhooks from wrong repository

2020-02-12 Thread James Robson
 

I have 1 code repo that should be triggering jobs, and a separate repo for 
a jenkins pipeline library. There are 2 jenkins jobs that use the ‘GitHub 
hook trigger for GITScm polling’ build trigger, both are pipeline jobs 
using the ‘Pipeline script from SCM’ with the repository configured to 
point to the code repo and the ‘Branches to build’ set to ‘origin/develop’. 
The pipeline library is used inside the pipelines for these jobs.

I would expect these jobs to have their polling triggered by pushes to the 
code repo, however they are only being triggered by pushes to the jenkins 
pipeline library repo. 


Using a log recorder set to get FINEST logs I can see:

Received PushEvent for https://github.com/ 
Considering to poke 
Skipped  because it doesn't have a matching repository.
...
Received PushEvent for https://github.com/
Considering to poke 
Poked 



So something in jenkins seems to think these jobs do not use the code 
repository, but when a scan is triggered I see the following in the 
‘Polling Log’:

Started by event from 192.30.252.97
...
 > git ls-remote -h https://github.com/ # timeout=10


So the repo poll is using the code repo, and the list of commits that show 
up in the ‘Changes’ list are from the code repo.

It seems to be only these 2 jobs that are affected, no other job is being 
triggered by pushes to the pipeline library repo. 



Is there anyway to resolve this, or something I can do to gather more 
information?

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/c987cc4c-3a40-44e1-9d62-045bf0df47cf%40googlegroups.com.