Re: SVN polling is hanging

2013-05-17 Thread Markus KARG
Noticed that Jenkins complains about all SVN checks hanging in a queue and disk is rather full. Checked that using ssh. Disk is not full (33 MB free), but maybe 33 MB is too less for a SVN check? Restartet Jenkins, now all SVN checks are resumed in less than a second. Strange. Am Donnerstag,

Re: Restricting matrix-build with parameters

2013-05-17 Thread Thomas Vestergaard
Hi Chris, Thanks for pointing that out. We are only at the latest released version. Thomas On Thu, May 16, 2013 at 8:56 PM, cjo cjo.john...@gmail.com wrote: Just a quick question, Which version of Jenkins are you using? As the changes for issue JENKINS-7285 are only in 1.515+ which is not

Publishing junit result multiple times in single job creates multiple test link

2013-05-17 Thread arun singh
Hi, I am publishing junit result multiple times using flexible publisher. It is creating multiple test report links but i want only one report link for multiple publishing. Is there any way to do this?? Thanks, Arun -- You received this message because you are subscribed to the Google

multi configuration project with different git branches

2013-05-17 Thread kabustalek
Hi Can someone tell me whats the best way to checkout different git branches on a multi configuration project? i have a project (lets call it API) which has a java 1.6 branch and a java 1.7 branch, so i created a new multi configuration project with JDK1.6 and JDK1.7 (soon there will be a

Jenkins to build client-server applications

2013-05-17 Thread madhulika
Hi all, I am looking for a way to build client-server application with jenkins. The server side runs on linux machine and the client side runs on a windows machine. So the build steps required are completely different. As of now, I have setup jenkins slave on windows and am achieving the

RE: multi configuration project with different git branches

2013-05-17 Thread James Nord (jnord)
Your setup is more akin to requiring multiple jobs than a multi config job. As the source you want to build is different. As it is different you will want to build only the branch that changed on any commit, not all of them. Alternativly you can have a single normal job and have git checkout

email-ext: pass parameters to script?

2013-05-17 Thread Chris Withers
Hi All, I currently have a distributions.template that does the following: Distributions used: % build.getWorkspace().child('distribution').list().each() { dist - %${dist.getName()} I now need exactly the same thing for another job, but which looks in a different directory. Is there any

Re: 'Trigger Builds Remotely' with ?token not working when Matrix Authorization Strategy is used

2013-05-17 Thread Stuart Montgomery
The recently-released Build Token Root Plugin seems to work around this limitation: https://wiki.jenkins-ci.org/display/JENKINS/Build+Token+Root+Plugin If you're having this issue, try the new plugin. (Thanks to Daniel Beck on stack overflow http://stackoverflow.com/q/16267060/274008!) Stuart

Re: multi configuration project with different git branches

2013-05-17 Thread kabustalek
Ok thanks, then i will go with a separate project. On Friday, May 17, 2013 10:07:27 AM UTC+2, James Nord (jnord) wrote: Your setup is more akin to requiring multiple jobs than a multi config job. As the source you want to build is different. As it is different you will want to build only

Soft stopping of slaves

2013-05-17 Thread Steffen Breitbach
Hi everyone! I'd like to prevent our slaves from processing tasks in a given timeframe to have system ressources free for other tasks (e.g. backup tasks). I don't want to shutdown the slaves, I'd rather make them stop processing jobs and then enable them some time later, much like the safe

Re: Soft stopping of slaves

2013-05-17 Thread ogondza
You can take the save offline for your timeframe. Jobs that are running will complete but no new jobs will be scheduled before explicitly taken back online. Is this what you want? -- oliver -- You received this message because you are subscribed to the Google Groups Jenkins Users group.

Re: How to assign JUnit test resolution in Jenkins ?

2013-05-17 Thread Sylvain B
Claim isn't what I'm looking for. The solution is there : http://stackoverflow.com/questions/16539918/how-to-assign-junit-test-resolution-in-jenkins-sonar# Thanks for your answer. Le mardi 14 mai 2013 11:55:54 UTC+2, Sylvain B a écrit : Hi everyone, We are a team who develop a software

Re: Access jenkins artifacts

2013-05-17 Thread Zigster
Well, a little succes here: I can retreive the clover.xml data from the last Build via: http://[server_url]/job/[job_name]/api/xml?xpath=/*/healthReport[1]/description But this somehow DOESN'T work for any other previous build eg.:

Re: Pass exit variables to down stream jobs.

2013-05-17 Thread Erick Dovale
Are you using the jenkins cloud formation plugin for this? On Thu, Feb 14, 2013 at 2:09 PM, c.alex.roe...@gmail.com wrote: and to any one else in the plugins list it is: Jenkins Parameterized Trigger pluginhttp://wiki.jenkins-ci.org/display/JENKINS/Parameterized+Trigger+Plugin On

m2 release plugin versioning policy

2013-05-17 Thread Hilikus
Hello everyone, It looks like the current behaviour when doing a maven release from jenkins in a multi-module project is to assign the version specified in the web ui of jenkins to ALL the submodules e.g in a project like this 1.0.0-SNAPSHOT (A) |...1.0.0-SNAPSHOT (A1)

RE: m2 release plugin versioning policy

2013-05-17 Thread James Nord (jnord)
If you require that functionality you will need to downgrade to an earlier version (I think 0.7.1). The functionality will be coming back but I have no current ETA. See https://issues.jenkins-ci.org/browse/JENKINS-11466 /James From: jenkinsci-users@googlegroups.com

Re: Access jenkins artifacts

2013-05-17 Thread Les Mikesell
On Fri, May 17, 2013 at 9:36 AM, Zigster zigster1...@gmail.com wrote: I can retreive the clover.xml data from the last Build via: http://[server_url]/job/[job_name]/api/xml?xpath=/*/healthReport[1]/description But this somehow DOESN'T work for any other previous build eg.:

Re: m2 release plugin versioning policy

2013-05-17 Thread Hilikus
when you say it will be coming back you mean what? being able to set a different version in the UI for each submodule or letting maven decide based on the SNAPSHOT version in the pom? or both? How complex are the changes? could someone without jenkins plugin experience do it in a couple of

Re: running multiple instances of a job from another job

2013-05-17 Thread lata
unsure why more than two instances are not allowed, wanted to test it but couldn't get around to it today. an option i can think of though is to add in command line invocations from within a shell of the parent job. you need to get the cli for this, if you haven;t got it already.

com.github.goldin:jenkins-maven-plugin - Component descriptor cannot be found in the component repository: org.sonatype.aether.RepositorySystem

2013-05-17 Thread Bob Bick
Hi, The Jenkins Maven plugin is encountering the following error when trying to execute the generate goal... [INFO] Internal error in the plugin manager executing goal 'com.github.goldin:jenkins-maven-plugin:0.2.5:generate': Unable to find the mojo 'generate' (or one of its required

Re: job DSL plugin

2013-05-17 Thread Gareth Bowles
Do you need to run the same job on multiple OSes ? In that case you'd be better off using a matrix jobhttps://wiki.jenkins-ci.org/display/JENKINS/Building+a+matrix+project so that you only have to maintain one job configuration. If you need multiple jobs that have small configuration

RE: com.github.goldin:jenkins-maven-plugin - Component descriptor cannot be found in the component repository: org.sonatype.aether.RepositorySystem

2013-05-17 Thread Bob Bick
This issue was caused by running Maven 2. It appears that this plugin (com.github.goldin:jenkins-maven-plugin) requires Maven 3. Bob From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of Bob Bick Sent: Friday, May 17, 2013 2:28 PM To:

Unable to start ssh slave from OSX master

2013-05-17 Thread Todd Greer
I'm trying to use the ssh slave plugin (v.21) from OSX, and have been unable to get it to initiate the ssh connection. The node is configured with the username and password, using the default port (which is correct). From a manual connection, there is an entry for the slave node in

Install Jenkinsapi in windows RHEL 6

2013-05-17 Thread lance . e . mead . ctr
I am trying to install Jenkins python REST API on both windows 7 and RHEL 6 computers. I can download the tar file and unzip it on the RHEL but I cannot get it to install. The easy_install command doesn't exist on my computer. I would appreciate any help I can get. -- You received this

Email test results if it passed

2013-05-17 Thread hDadgari
Hi, Is there way to setup jenkins to send test results if it passed or failed Thanks in advance hdadgari -- 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

RE: Email test results if it passed

2013-05-17 Thread Alex Earl
Check the email-ext plugin it adds a ton if options for sending emails. Sent from my Windows Phone -- From: hDadgari Sent: 5/17/2013 14:16 To: jenkinsci-users@googlegroups.com Subject: Email test results if it passed Hi, Is there way to setup jenkins to send test

Re: GitHub Webhook to Jenkins Cross Site Scripting

2013-05-17 Thread Dean Yu
Just noticing this thread. With respect to your original question about Git and Jenkin's CSRF setting, as you've surmised, Jenkins protects all POST requests when this feature is enabled. There's a snippet in the Subversion plugin wiki[1] about how to make Subversion's commit hook work with the

Multiple Jenkins Instances, Single CIFS file system.

2013-05-17 Thread Eric Krystof
Discussing an interesting scenario with my tech lead at work today. Might try this out but was looking for any definitive remarks indicating we may be trying to divide by zero. We need to build up a few slaves since our single instance is becoming overwhelmed. The thought was that since this

Re: Multiple Jenkins Instances, Single CIFS file system.

2013-05-17 Thread Mark Waite
I think it could be made to work with enough exploring and experimenting, but it seems to me like you're using something expensive (human time, thought, planning, diagnosis) in order to conserve something that is relatively inexpensive (hard drive capacity).  Why not just buy more hard disc