LDAP Credentials Propagation into tools used in Jenkins

2013-07-02 Thread Moral
Hi We have this setup: - Apache Tomcat 7.0.32 - Jenkins 1.518 - LDAP Plug in 1.5 We are using the LDAP Authentication for Jenkins. This is working fine. We would like to use the LDAP Credentials at Jenkins log in in all the SW tools that Jenkins is using. How can we achieve that? For

Re: How can I mark test as not making the build unstable (although it failed)

2013-07-02 Thread orimarko
anyone? I want to mark test in jenkins as not making build unstable if failed On Thursday, June 27, 2013 8:23:30 AM UTC+3, orim...@gmail.com wrote: -- You received this message because you are subscribed to the Google Groups Jenkins Users group. To unsubscribe from this group and stop

Re: How can I mark test as not making the build unstable (although it failed)

2013-07-02 Thread Ulli Hafner
If you need to collect the test results then this is not possible. Am 02.07.2013 um 12:59 schrieb orima...@gmail.com: anyone? I want to mark test in jenkins as not making build unstable if failed On Thursday, June 27, 2013 8:23:30 AM UTC+3, orim...@gmail.com wrote: -- You received

Re: EnvInject Access to Manager

2013-07-02 Thread Eyal
So.. there's no access to manager? On Saturday, December 22, 2012 4:37:32 AM UTC+2, Matt Felzani wrote: Wow, talk about service. Thanks a lot for adding that ... I'm using it already and loving it. On Friday, December 21, 2012 6:52:15 PM UTC-5, gboissinot wrote: From EnvInject 1.75, you

version number plug-in

2013-07-02 Thread marathiboy
Hello I have configured 'version number plug-in'. It is showing the right version format on Jenkins GUI. However, in MANIFEST.MF, it still shows Jenkins build number. Is this expected behavior? What I need to do get the same format in MANIFEST.MF? Thanks S -- View this message in

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

2013-07-02 Thread Costin Caraivan
Thanks! _ Costin Caraivan On Mon, Jul 1, 2013 at 6:26 PM, Kevin Fleming (BLOOMBERG/ 731 LEXIN) kpflem...@bloomberg.net wrote: The connection between the slave and the master, when using JNLP to start slaves, is not a secure channel. - Original Message - From:

Re: EnvInject Access to Manager

2013-07-02 Thread Daniel Beck
If by 'manager' you mean the object that gives you access to the Jenkins/Hudson instance, the current build, and the build listener, it's specific to Groovy Postbuild and doesn't exist in EnvInject.

Re: EnvInject Access to Manager

2013-07-02 Thread Eyal Zfira
Yes, I meant that. Is there a way to access the Jenkins/Hudson instance in EnvInject? I tried using Jenkins.getInstance() and it doesn't work. On Tue, Jul 2, 2013 at 5:26 PM, Daniel Beck m...@beckweb.net wrote: If by 'manager' you mean the object that gives you access to the Jenkins/Hudson

Jenkins execute part of the job on master?

2013-07-02 Thread Michael Lasevich
Trying to understand master-slave relationship in jenkins node. Is it possible to execute MOST of the job (build) on a slave node, but the final step (one or more publishers?) on the master node? If I am writing my own plug in, how do I control where the plugin executes? Or can I? Thanks,

Re: Version Number Plugin question

2013-07-02 Thread DaveS
How do you reset the Version Number in BUILD_ALL_TIME to start renumbering. On Monday, July 1, 2013 3:04:00 PM UTC-5, DaveS wrote: Jenkins ver. 1.509.1 http://jenkins-ci.org/ Version Number Plug-Inhttps://wiki.jenkins-ci.org/display/JENKINS/Version+Number+Plugin

Re: Jenkins execute part of the job on master?

2013-07-02 Thread Mark Waite
As far as I can tell, a job executes on a single node, whether master or slave.  I'm not aware of any facility that allows a Jenkins job to move execution steps to a node different than the node executing the job. Mark Waite From: Michael Lasevich

Re: Jenkins execute part of the job on master?

2013-07-02 Thread Steven Deal
I think publishing happens on the master. So in that sense, different phases of the build can happen on different machines. If you want a plugin to only run on the master, I would think making your plugin extend Recorder would have it execute on master. I'm not sure what all your choices are