How to add a new level to original URL in jenkins plugin?

2015-04-27 Thread Baiyan Huang
Hi, All This is about writing/changing a jenkins plugin - speicially on its URL. Say I have a plugin which will generate a report, so I will have an Action: class MyAction implements Action { public String getUrlName() { return a_sample_report; } } And I attached this Action

How do I update CopyArtifacts plugin to publish artifacts on remote storage and not master itself?

2015-04-27 Thread bukor king
Hi Experts, I am currently using CopyArtifacts plugin for upstream posting and downstream grabbing of artifacts, How can I publish artifacts on a network storage instead of jenkins master itself? I've looked at Artifacts deployer but it does not have the feature where I can deploy artifacts

Re: Jenkins 1.607 - Environment Variables Stuck

2015-04-27 Thread Simon Richter
Hi, On 27.04.2015 14:57, Jennifer Hofmeister wrote: Does the slave run as a service? If not, it will probably just read the Jenkins service’s old PATH in case that one was not restarted after manipulation. I have the same issue, I can even reboot the slave and the environment stays the

Re: Efficiently copying artifacts

2015-04-27 Thread Maciej Jaros
Simon Richter (2015-04-25 02:02): Hi, I have a project that outputs a few large files (compiled DLL and static library) as well as a few hundred header files as artifacts for use by the next project in the dependency chain. Copying these in and out of workspaces takes quite a long time, and the

Vspehere didnt retrieve ip

2015-04-27 Thread Radoslav Rakár
[vSphere] [vSphere] Performing vSphere build step: Power-Off VM [vSphere] Attempting to use server configuration: bts-esxi41-p.corp [vSphere] Shutting Down VM... [vSphere] Successfully shutdown ESS_Windows_7_x86 [vSphere] [vSphere] Performing vSphere build step: Power-On/Resume VM [vSphere]

RE: Efficiently copying artifacts

2015-04-27 Thread Matthew.Webber
Note that in Jenkins, copying files directly from another workspace is an anti-pattern. -Original Message- From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of Maciej Jaros Sent: 27 April 2015 09:40 To: jenkinsci-users@googlegroups.com

RE: Efficiently copying artifacts

2015-04-27 Thread Matthew.Webber
Are you using Archive Artifacts in the upstream job, and the Copy Artifact plugin in the downstream job? This is the standard method. If so, maybe the upstream job should produce a single zip file , which the downstream job and get and unzip. Matthew -Original Message- From:

RE: Jenkins 1.607 - Environment Variables Stuck

2015-04-27 Thread Jennifer Hofmeister
Hi Varun, Does the slave run as a service? If not, it will probably just read the Jenkins service’s old PATH in case that one was not restarted after manipulation. Best, Jennifer From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of Varun Jain Sent:

Re: Doubts about Publish Over SSH Plugin

2015-04-27 Thread Erick Macedo
First thanks for the help Richard As I have two jobs one to build and another to deploy, I should use the plugin Copy Artifacts plugin to get the war of workspace build and transfer to the workspace deploy? graciously Erick Macedo Em sexta-feira, 24 de abril de 2015 17:55:21 UTC-3, Erick

Re: workflow plugin -- dynamically select specifc slave nodes in for loop

2015-04-27 Thread Anshu Arya
More info: echo TEST_MACHINES def all_nodes = TEST_MACHINE.split(',') for (node_name in all_nodes) { echo 'Plan to run on ' + node_name } for (node_name in all_nodes) { node(node_name) { echo 'My name is ' + node_name } } Results in: Running: Print Message

Re: workflow plugin -- dynamically select specifc slave nodes in for loop

2015-04-27 Thread Anshu Arya
Yes, it executes on the first node, but the remaining nodes do not respond and the job fails at that point. On Thursday, April 23, 2015 at 9:38:25 PM UTC-7, Baptiste Mathus wrote: What do you mean it fails? You mean it only does it on the first node? Might be known issue, IIRC. There's been

Re: problem configuring jenkins + adding plugins

2015-04-27 Thread Dipen Patel
Hi.. This issue is in google chrome browser. Open Mozilla Firefox and do your work. Thanks, Dipen Patel , Linux Expert Mo:+91 9909013212 Email:dipen.ec2...@gmail.com On Tuesday, April 14, 2015 at 4:13:12 PM UTC+5:30, Erez Naim wrote: Hi all, I have just started to use Jenkins on windows

Re: Jenkins 1.607 - Environment Variables Stuck

2015-04-27 Thread Varun Jain
Hi Jennifer, I've tried it as the service, the JNLP, and the java command line. All of which yielded the same results. I also did try restarting the service. Thanks, VJ On Monday, April 27, 2015 at 5:57:23 AM UTC-7, Jennifer Hofmeister wrote: Hi Varun, Does the slave run as a service?

Re: Doubts about Publish Over SSH Plugin

2015-04-27 Thread Richard Bywater
Hi Erick There's probably many other ways as well, but what you describe is how we currently do a lot of our deploys so it'd be worth giving it a try and seeing if it fits in with your processes. Cheers Richard On 11:38PM, Mon, 27/04/2015 Erick Macedo erickfmac...@gmail.com wrote: First