Re: adopt a plugin deploy plugin

2015-12-11 Thread Bob Kubista
Oeps, wrong group Op vrijdag 11 december 2015 10:33:08 UTC+1 schreef Bob Kubista: > > I would like to get started with contributing to the Jenkins project and > would like to adopt the deploy plugin. It would be nice if someone could > help me along the way, as this would be a first for me. > >

Re: Do not poll git if job is scheduled

2015-12-11 Thread Mark Waite
Is the second copy of the job triggered by polling or by a hook script which runs on each commit to the git repository? If the second run of the job is triggered by polling, then I don't know any way to prevent the duplication (though I generally don't see that type of duplication myself). If

adopt a plugin deploy plugin

2015-12-11 Thread Bob Kubista
I would like to get started with contributing to the Jenkins project and would like to adopt the deploy plugin. It would be nice if someone could help me along the way, as this would be a first for me. Bob -- You received this message because you are subscribed to the Google Groups "Jenkins

Re: [xvfb-plugin] fails second time

2015-12-11 Thread V. Mark Lehky
I have just tried running Xvfb from a Pre-build script. I first tried the same command that the plugin created, but just from command line on the server: Xvfb :1 -screen 0 -fbdir /var/lib/jenkins/xvfb-106-4356636144193454909.fbdir I get error: Invalid screen configuration -fbdir for -screen 0

Customizing the Project Page

2015-12-11 Thread Guy Matz
I would like to add some dynamic content to the project page . . . anyone know if that's possible? I have a job that deploys new code to an environment and it's been requested that I get the output of "git log" on the project page so the person pushing out the new code knows what the changes

How to pass a multiline parameter to jenkins cli build

2015-12-11 Thread Denis Gaudet
Hey folks, I'm trying to pass a multiline parameter to a build from a BASH command line. My command looks like this: /java -jar ~/files/jenkins-cli.jar -s http://  build -s 'Fundamental/math-flex' -p DESCRIPTION="$mydesc" -p configspec_elements="$mycs"/ I have exported both variables as:

Re: Jenkins api create job in a folder

2015-12-11 Thread Khai Do
An option you might like to explore is to use python-jenkins. We use it to automate folder and job creation. Doc is here: https://python-jenkins.readthedocs.org/en/latest/examples.html#example-7-working-with-jenkins-cloudbees-folders On Thursday, August 20, 2015 at 12:22:19 PM UTC-7,

Re: Warning: this build has no associated authentication

2015-12-11 Thread Khai Do
another option to batch modify tons of jobs is to use the jenkins-job-builder (http://docs.openstack.org/infra/jenkins-job-builder/index.html). tons of examples in the doc as well. On Thursday, December 10, 2015 at 8:16:53 AM UTC-8, Victor Martinez wrote: > > You can 'easily' modify your

Re: [xvfb-plugin] fails second time

2015-12-11 Thread V. Mark Lehky
OK, I got it: I made the mistake of reading the documentation. :( The documentation says:* Xvfb screen* changes the screen resolution and pixel depth, it needs to be in WxHxD format (i.e. 1600x1200x24). The default is 1024x768x24. Unfortunately, there is no default, the default is blank, which

Jenkins crashes on aborting job. Which logger should I use?

2015-12-11 Thread Ivan Hamer
I run Jenkins v1.640, and on about 10% of aborts (either manual or through timeout plugin), Jenkins server exits with the attached output. The 'Logging' manual page says to add a log recorder, but I don't know what to add to the 'logger' entry... Dec 10, 2015 2:30:24 AM hudson.model.Run

Re: jenkins advanced user right

2015-12-11 Thread Indra Gunawan (ingunawa)
You can look up this plugin : https://wiki.jenkins-ci.org/display/JENKINS/Job+Restrictions+Plugin to restrict execution on a node/slave. It adds restriction in the node’s configuration page. Please let me know because I am interested in it too. In my earlier comment, I meant one can use free

Do not poll git if job is scheduled

2015-12-11 Thread Stefan Schiffler
Hi all, i have a jenkins job that polls a git repository every 5 minutes. (These facts cannot be changed so please do not answer like increase the poll interval...) The build time for the job is about 10 minutes. Now if the repository changes a build starts and during the build is running,

Customizing the Project Page

2015-12-11 Thread Victor Martinez
You can use the groovy post build plugin, and add those details either as part of the job or part of the build. Cheers -- 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

Re: jenkins advanced user right

2015-12-11 Thread Stephen Connolly
All that is easy with the CloudBees RBAC plugin, but given that I wrote it originally I would say that wouldn't I ;-) On Friday 11 December 2015, Indra Gunawan (ingunawa) wrote: > You can look up this plugin : >