Re: Getting Current Build in Groovy

2017-11-06 Thread Dirk Heinrichs
Am 06.11.2017 um 17:25 schrieb Neel Desai: > I know that only "Execute System Groovy script" can run on master and > get this property but I want to get it from worker node. From worker > node I want to get current jenkins instance. I don't think you can. Only System Groovy scripts run in the exa

Re: copying directories from slave to master

2017-11-06 Thread rameshh035
On Monday, November 6, 2017 at 5:42:25 PM UTC+5:30, rameshh035 wrote: > > I have a jenkins job, > > slave is on windows > master is on ubuntu > > job creates directories in slave machine, i need to copy these directories > in master in particular path in build, can anyone please help me with thi

Re: Circular dependencies in plugins

2017-11-06 Thread Daniel Beck
> On 7. Nov 2017, at 00:57, CLOSE Dave wrote: > > However, I still see some dependencies which seem bogus to me. All of those plugins implement features to support their use in Pipeline, so have a dependency on them. -- You received this message because you are subscribed to the Google Group

Re: Circular dependencies in plugins

2017-11-06 Thread CLOSE Dave
On 11/06/17 13:46, Daniel Beck wrote: >> But the instance which concerns me at the moment says Token Macro >> Plugin is dependent on Pipeline. > > token-macro 2.2 had the dependency, it was dropped in 2.3. Which are > the versions you're using. Thank you. I was using 2.2. I had deferred updates

Re: Circular dependencies in plugins

2017-11-06 Thread Daniel Beck
> On 6. Nov 2017, at 21:52, CLOSE Dave wrote: > > But the instance which concerns me at the moment says Token Macro Plugin is > dependent on Pipeline. token-macro 2.2 had the dependency, it was dropped in 2.3. Which are the versions you're using. -- You received this message because you are

Re: Circular dependencies in plugins

2017-11-06 Thread CLOSE Dave
On 11/03/17 18:27, Stephen Connolly wrote: >> Every one of the Pipeline plugins, all 23 of them, claim to be dependent >> on some other plugins. None offer the option to disable. The chain seems >> endless. And many of the plugins asserted to be dependent are ones I want >> to keep, such as Pipeli

Re: Circular dependencies in plugins

2017-11-06 Thread CLOSE Dave
On 11/04/17 05:08, Daniel Beck wrote: >> Look for the list entry just called 'Pipeline' (or search for >> pipeline-aggregator in the search box). > Oops -- used to be called workflow, so workflow-aggregator. >> Try to disable it. If the checkbox is disabled and you cannot, file >> a bug against

Re: SharedLibrary, clone, using resources

2017-11-06 Thread itchymuzzle
Sounds a little related: Provide lightweight checkout capability for bitbucket to avoid repo clone of rmulti-branch pipelinejobs link -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To

Suggestions for a jenkins dashboard

2017-11-06 Thread niristotle okram
hi all, i am looking for suggestion on some simple (yet proven) jenkins dashboards. I don't want to spend time on somethings that's already there. I am just trying to cast some job status, nothing fancy. But being if fancy is a feature, i will take it :) Thanks ! -- You received this message b

Re: [EXTERNAL] - Re: Getting Current Build in Groovy

2017-11-06 Thread Neel Desai
That's my question. I know that only "Execute System Groovy script" can run on master and get this property but I want to get it from worker node. From worker node I want to get current jenkins instance. On Monday, November 6, 2017 at 4:38:10 AM UTC-6, Dirk Heinrichs wrote: > > Am 03.11.2017 u

Re: Quess I am confused about “node” in pipeline

2017-11-06 Thread Robert Hales
Node is a build step. Any build steps can be run in a declarative pipeline, but you can also specify which node to use with 'agent' on a declarative pipeline. Everything runs initially on a flyweight executor on the master. Then it farms out the heavy lifting to the appropriate nodes you specify

Re: Quess I am confused about “node” in pipeline

2017-11-06 Thread itchymuzzle
I am using "label" to define what gets run where. -- 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 jenkinsci-users+unsubscr...@googlegroups.com. To view this d

Quess I am confused about “node” in pipeline

2017-11-06 Thread itchymuzzle
I thought “node” was a scripted pipeline thing, but item #4 in this: [https://www.cloudbees.com/blog/top-10-best-practices-jenkins-pipeline-plugin] seems to disagree with that. So I am suppose to use “node” to ensure the Jenkins master doesn’t do any work? Doesn’t setting executors to

Re: hudson wiki down

2017-11-06 Thread Baptiste Mathus
Hello ! Please ask on the Hudson Mailing list. And if you want to use a better and maintained *Hudson*, don't hesitate to switch to *Jenkins*. We love our users and we have cookies! :-). Cheers 2017-11-06 12:52 GMT+01:00 René Landzaat : > Problem seems to be returned: > > > >

Re: hudson wiki down

2017-11-06 Thread René Landzaat
Problem seems to be returned: René Landzaat On Monday, 13 December 2010 16:56:34 UTC+1, Kohsuke Kawaguchi wrote: > > Thanks. Fixed now. > > 2010/12/13 Hen

copying directories from slave to master

2017-11-06 Thread rameshh035
I have a jenkins job, slave is on windows master is on ubuntu job creates directories in slave machine, i need to copy these directories in master in particular path in build, can anyone please help me with this. Thanks in advance. Ramesh. -- You received this message because you are subscrib

Re: Disable log in runtime

2017-11-06 Thread Marcin Matuła
Response: should be used http://javadoc.jenkins.io/hudson/console/ConsoleLogFilter.html W dniu czwartek, 2 listopada 2017 12:13:23 UTC+1 użytkownik Marcin Matuła napisał: > > > Is any way to provide my own listener with empty implementation >> > in the runtime > > > W dniu czwartek, 2 listopad

Re: [EXTERNAL] - Re: Getting Current Build in Groovy

2017-11-06 Thread Dirk Heinrichs
Am 03.11.2017 um 15:37 schrieb Lee Meador: > I'm a little fuzzy on all the ins and outs of it but I believe that > line of groovy code above always runs on the master anyway. Where Groovy code runs depends on the type of build step. A "System Groovy Script" step always runs on the master, regardl

Re: Bug Publish over SSH

2017-11-06 Thread Naveen DN
I had the same problem...export PATH=$PATH: && mvn clean test solved my problem On Wednesday, April 29, 2015 at 12:55:21 AM UTC+5:30, Erick Macedo wrote: > > Hi, > > I'm using the plugin Publish over SSH to run a remote command maven on a > linux machine with properly configured maven. > > Howe