GitHub Branch Source plugin and pull requests from forked repos

2017-08-01 Thread Ramanathan Muthaiah
https://go.cloudbees.com/docs/cloudbees-documentation/cje-user-guide/index.html#_controlling_what_is_built Documentation mentions that "By default, Jenkins will build any branches it finds in the “origin” repository (the actual repository found in your organization). Also, any pull requests

Re: Pull requests from github fork not building with jenkins multi-branch githooks?

2017-08-01 Thread Ramanathan Muthaiah
On Tuesday, February 14, 2017 at 12:54:13 AM UTC+5:30, anton kropp wrote: > > Whenever someone submits a pull request from a forked repo to a job that > is built with multi-branch github integration, jenkins never picks up the > commits. PR's from branches work just fine though. > > Am I

I'm trying to learn Jenkins Pipeline - pointers to good programmer documentation? Or is Jenkins World the place I should go????

2017-08-01 Thread Carruth, Rusty
I've read the "getting started with pipeline" pages (https://jenkins.io/doc/book/pipeline/getting-started/). I've spent literally hours looking for something really helpful, in one place, for someone who wants to write CODE in the pipeline script. I did just find

Re: Jenkins Health Check URL

2017-08-01 Thread John Hovell
>From the docs: https://wiki.jenkins.io/display/JENKINS/Metrics+Plugin "The Healthcheck servlet runs the healthchecks defined against the Metrics API and returns the detailed status in JSON (or JSONP) format, while the high level status is reported by the HTTP status code. These servlets

Declarative pipeline with loop and input timeout

2017-08-01 Thread Guy Knights
I have an input step in a declarative pipeline and I want to add some logic so that if the input step waits too long for someone to proceed, it will send a reminder notification and loop, starting a new timeout. What I have so far is this: waitUntil { timeout(time: 3, unit: 'MINUTES' )

Re: Q: How to choose nodes for build based on parameter?

2017-08-01 Thread jerome
Nice! is the plugin: https://wiki.jenkins.io/display/JENKINS/NodeLabel+Parameter+Plugin compatible with pipeline script (declarative or normal one)? if yes how do we use it into those configuration? -- You received this message because you are subscribed to the Google Groups "Jenkins Users"

Re: Parsing POM in Jenkins maven project taking very long time (5-6mins)

2017-08-01 Thread Stephen Connolly
Periodic reminder: https://javaadventure.blogspot.ie/2013/11/jenkins-maven-job-type-considered-evil.html On 1 August 2017 at 00:41, tiendungitd wrote: > I'm having problem with maven projects that are building on jenkins slave > using docker container, it's taking too

Parsing POM in Jenkins maven project taking very long time (5-6mins)

2017-08-01 Thread tiendungitd
I'm having problem with maven projects that are building on jenkins slave using docker container, it's taking too much time at "Parsing POM" step, about 6mins+. If I build it manually or build it on jenkins master then it take only 30s to finish. If using freestyle project to build, it take only

Information requested to understand usage of Jenkins for Informatica || ETL tool

2017-08-01 Thread Neha Garg
Hi Team, I was going through the link: http://hopsas.com/products/ informatica-powercenter-continuous-delivery-solution/ I am an Informatica developer and looking for some help to understand how we can use Jenkins for CICD implementation in Informatica. I need to know how we can establish

Tutorial/Example for Semantic Versioning with Jenkins

2017-08-01 Thread Traiano Welcome
Hi all! I'm trying to set up a poc on semantic versioning with jenkins. I see the semantic versioning plugin, however I don't find any materials on the net, like a tutorial that shows me how to set up an example and actually use it in practice. Would anyone be able to give me a rough example

Re: Q: How to choose nodes for build based on parameter?

2017-08-01 Thread linux.il
Sam, >As far as I know, this is not possible. I would very much like this feature as well It's doable with the Node Label Parameter plugin - you can choose "Label" as a parameter when creating parameterized build. On Mon, Jul 31, 2017 at 9:34 PM, Sam K wrote: > As far as