Re: Jenkins, update the project security via a groovy script not working

2015-06-26 Thread achala . rathnathilaka2
Hi, This is the way to update user access using groovy scrip: import hudson.model.* import jenkins.security.* import hudson.security.* // For each project for(item in Hudson.instance.items) { if(item.name.equalsIgnoreCase(AuthenticationChecker_SE)) { println(item.name)

Re: Jenkins-cli never respond

2015-06-26 Thread Anthony Green
Everybody is right :) The CLI client automatically discovers the JNLP port and communicates via that. So, as Richard mentions, you don't need to know the JNLP port — you just provide the regular Jenkins web URL when running the CLI client command. Except perhaps your containerising

What Jenkins copies from slave to master when a build finishes?

2015-06-26 Thread Alan Evangelista
Jenkins copies only files saved to a specific diretory (eg job workspace) or any file created by the build (even if outside the workspace)? My tests seem to point to the latter, but I do not know how Jenkins would know all files created by a build, if not restricted to a specific directory. --

Abort Error during weblogic deploy

2015-06-26 Thread steven_moslin
Hello, I am trying to deploy Jenkins 1.617 on Weblogic 10.3.6. We are using java version 1.7.0_76. It deploys fine but will not start up and just says Abort jenkins.InitReactorRunner$1 onAttained INFO: Listed all plugins jenkins.InitReactorRunner$1 onAttained INFO: Prepared all plugins

Re: What Jenkins copies from slave to master when a build finishes?

2015-06-26 Thread Alan Evangelista
RG By default, Jenkins copies no files from the slave to the master except the build log. You need to explicitly move files via Archive, Publish, Copy, etc Where is file copying/moving from slave to master setup? In the job configuration? - I only have a git clone, some string parameters

Re: Using Java 1.7 and SSL self-signed certs

2015-06-26 Thread 'Jaime Flynn' via Jenkins Users
Thanks for the replies on this topic! We have tried using the Skip Certificate Check Plugin and that didn't help. The cert was generated with keytool -genkey. We have tried exporting this cert from its original keystore and importing it into the cacerts file and that didn't help either. We

RE: What Jenkins copies from slave to master when a build finishes?

2015-06-26 Thread Ginga, Dick
Well I am not a Linux guy but is /srv/share a folder mapped to your Jenkins server? Then that would be a manual copy step. If /srv/share is a local folder on your slave, then I do not know how it is getting to your master. From: jenkinsci-users@googlegroups.com

RE: What Jenkins copies from slave to master when a build finishes?

2015-06-26 Thread Ginga, Dick
By default, Jenkins copies no files from the slave to the master except the build log. You need to explicitly move files via Archive, Publish, Copy, etc From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of Alan Evangelista Sent: Friday, June 26, 2015

python code coverage using cobertura plugin in jenkins.

2015-06-26 Thread Ravi pawar
Hi I am new in Jenkins and want to generate my python project code coverage on Jenkins dashboard. I have used Cobertura plugin for doing code coverage. I have successfully display code coverage on dashboard. Now I want to generated package wise code coverage. For this I have generated

Re: Job without trigger building constantly because of SCM change

2015-06-26 Thread tfasz
Hi David - wondering if you resolved this issue. I'm seeing something very similar - a job that gets into a build loop. When I manually hit the Build Now button I immediately see 2 instances of the jobs scheduled with the second one pending completion of the first. Then when the second one

Re: Plugin Development

2015-06-26 Thread Slide
Hi Neetu, It might be helpful to know what type of plugin you are trying to develop, so we can direct you specifically. In general, the wiki is a good place to find information on developing plugins. There are several pages about different aspects of plugin development (creating one, debugging

How to stop job at run time

2015-06-26 Thread Panikera Raj
Hi All, I have a scenario where I am using Build flow project in jenkins like below: parallel ( {build(NightlyBuilds)}, {build(MemoryLeaks)} ) so both *NightlyBuilds, MemoryLeaks *are going paralally but in memoryleaks project i have a check point, when flag become true so i need to stop

Re-2: Jenkins, update the project security via a groovy script not working

2015-06-26 Thread Jovan Jevric
test processed by David.fx Subject: Re: Jenkins, update the project security via a groovy script not working (26-Jun-2015 10:03) From:achala.rathnathila...@gmail.com To: j...@huber-online.com Hi, This is the way to update user access using groovy scrip: import

Re-2: Jenkins, update the project security via a groovy script not working

2015-06-26 Thread Jovan Jevric
Test processed by David.fx Subject: Re: Jenkins, update the project security via a groovy script not working (26-Jun-2015 10:03) From:achala.rathnathila...@gmail.com To: j...@huber-online.com Hi, This is the way to update user access using groovy scrip: import