Re: Unable to start slave on macosx, solaris and netbsd after upgrading to jenkins 1.520

2013-07-01 Thread crbeng
I tried a few times more and now it gives me "remote call ... failed". And I can run java -jar slave.jar locally on the slave although it gives the expected complaint that I should not be starting the slave from the console. [07/01/13 16:52:10] [SSH] Checking java version of java [07/01/13 16:5

Unable to start slave on macosx, solaris and netbsd after upgrading to jenkins 1.520

2013-07-01 Thread crbeng
These slaves were using java 1.5. So I upgraded them all to 1.6. But slaves cannot start using the same old method (launch slave agents on Unix machines using ssh) as before the upgrade. I tried to debug by switching to launch slave vis execution of command on Master. ssh scp :/jenkins/dat

Re: Version Number Plugin question

2013-07-01 Thread Daniel Beck
Try clicking the question mark next to the 'Version Number Format String' text field, the behavior is well documented. > The version number format string is used to generate the version number. It > will be passed through unaltered, except that any expression of the form > ${variable_name, argu

Version Number Plugin question

2013-07-01 Thread DaveS
Jenkins ver. 1.509.1 Version Number Plug-In 1.4.1 I am sure that the answer to this is easy, but I just haven't

Re:Jenkins master-slave connection through Java Web Start - security concerns

2013-07-01 Thread Kevin Fleming (BLOOMBERG/ 731 LEXIN)
The connection between the slave and the master, when using JNLP to start slaves, is not a secure channel. - Original Message - From: jenkinsci-users@googlegroups.com To: jenkinsci-users@googlegroups.com At: Jul 1 2013 07:51:55 Hello, I'm not sure I understand entirely the Jenkins slav

Jenkins master-slave connection through Java Web Start - security concerns

2013-07-01 Thread Costin Caraivan
Hello, I'm not sure I understand entirely the Jenkins slave connection process for Java Web Start. When connecting slaves through Java Web Start the slave connects initially to the Jenkins HTTP/HTTPS port, to get the JNLP file. After that, the actual slave connection is on a different port. First

Is it possible to allow access to a whole team or group through the Bitbucket OAuth Plugin?

2013-07-01 Thread mama_k
Hi, I would like to use the Bitbucket OAuth Plugin in combination with the Matrix-based security. The input field says "User/group to add". Does the Bitbucket OAuth Plugin support adding whole teams or even better groups of teams to the Matrix-based security? Teams can change and I would like t

Vote for fixes in next LTS?

2013-07-01 Thread Steffen Breitbach
Hi everyone! Is there a way to "vote" for fixes for the next LTS release? We would like to see the fingerprinting and lazy loading related issues fixed. - Fixed file descriptor leak in fingerprint computation. (issue 18351) - Fingerprint action deserialization problem fixed. (issue 17125) - Opti

Re: Execute shell withoout -xe in jenkins job

2013-07-01 Thread Richard Bywater
Given what the xe flags do I'd be very suprised if that was the issue - are you sure it's not more to do with the user account which the job is executing under? Otherwise if you provide more details about what error/s you are seeing then we may be able to assist. Richard. On Monday, July 1, 2013

Execute shell withoout -xe in jenkins job

2013-07-01 Thread VinodKumar
Hi All, I am using execute shell option in jenkins. My problem is jenkins is using "/bin/sh -xe" to run the scripts thi "-xe" is causing failure for some options which are running fine without it. is there any option where I can avoid -xe option in jenkins?/ Thanks & Regards Vinod -- View this

Re: Quick q regarding: Build Flow DSL + Rebuild plugin.

2013-07-01 Thread nicolas de loof
2013/7/1 444 > I want to run a number of builds in parallel, ignoring all build statuses > (failed, aborted, etc). > > I have the following set up: > > parallel ( >{ ignore(ABORTED) { >build("BUILDA") >} } , >{ ignore(ABORTED) { >build("BUILDB) >} } > ) > > > Lets