Re: trigger local jenkins with github

2014-11-24 Thread Sameer Chandekar
> Hi stefan, > I am also trying to trigger a build job on my local jenkins server from Github webhook. So could you please tell how to make jenkins to publically accesible. Thanks, Sameer Chandekar -- You received this message because you are subscribed to the Google Groups "Jenkins Users

possible trouble with hue-light plugin

2014-11-24 Thread Tom Brus
Hi All, We had an issue here that I would like to mention. I did not have time to sort out the exact details, so I will just have some vague info and suspicion. Maybe it rings a bell for someone to act on it. - The first thing we noticed was that our main build was not producing any del

[workflow-plugin]: How to read parameters from one step to another

2014-11-24 Thread Rupali
Resending with Subject changed and mrore details on the request. I have below input step: input id: '4a894d73cf15795f912d3ce0f2f54c51', message: 'DEPLOY Parameters', ok: 'Proceed', parameters: [[$class: 'StringParameterDefinition', defaultValue: 'SC', description: '', name: 'projName'], [$class:

Re: Cannot use mvn -pl ! in Jenkins

2014-11-24 Thread Jacques Stadler
Hi Andrew I have the same Problem with Jenkins 1.565.3. Did you or anyone from the Jenkins guys find a workaround for this? Regards, Jacques Am Dienstag, 30. September 2014 03:38:11 UTC+2 schrieb Andrew Yan: > > Hi all, > > I'm pretty new to Jenkins and I'm trying to skip modules by maven re

Re: [workflow-plugin] Passing parameters to triggered jobs

2014-11-24 Thread excessgr
Thank you James! Eventually yes we'd like to merge them all into one job, but since for now the plugin is missing support for some build steps that we're using, I guess this is the only way to get it done. Τη Δευτέρα, 24 Νοεμβρίου 2014 12:19:15 μ.μ. UTC+1, ο χρήστης James Nord έγραψε: > > Hi,

Re: workflow plugin start parameterized job

2014-11-24 Thread James Nord
Hi Eric the syntax is something like ArrayList yourparamaters=new ArrayList(); yourparamaters.add(new hudson.model.StringParameterValue('PARAM','123')); build job: 'yourJobNameToBuild', parameters: yourparamaters you can also shorthand this if you don't need to re-use the same parameters bui

Re: [workflow-plugin] Passing parameters to triggered jobs

2014-11-24 Thread James Nord
Hi, the syntax is something like ArrayList yourparamaters=new ArrayList(); yourparamaters.add(new hudson.model.StringParameterValue('PARAM','123')); build job: 'yourJobNameToBuild', parameters: yourparamaters you can also shorthand this if you don;t need to re-use the same parameters build

Re: Designing pre-tested commit strategy with jenkins and git repo

2014-11-24 Thread James Nord
HI, I'm not entirely sure what Team City does - and how tied into your git infrastructure you are - but Gerrit[1] along with the gerrit trigger plugin can provide a pre-tested commit if you can change your git server (or put something infront of it and make all users push to gerrit). There is

[workflow-plugin] Passing parameters to triggered jobs

2014-11-24 Thread excessgr
I'm a bit confused as to how to pass parameters to triggered jobs. The snippet generator says I can pass a list of ParameterValues, but I'm really unfamiliar with the internals of jenkins so I'm not sure how I can pass this list. I assume this is what the list should look like: ArrayList parame