Re: Pipeline: Resource Locking Plugin hangs

2018-03-09 Thread Sverre Moe
torsdag 8. mars 2018 17.06.12 UTC+1 skrev Sverre Moe følgende: > > > > torsdag 8. mars 2018 12.37.47 UTC+1 skrev Reinhold Füreder følgende: >> >> Very naïve thought(s): >> >> >> >> While “*Do not know why nodeName1 acquired the lock before nodeName >> released.*“ might be just a matter of output

Re: dynamic parameterized choice

2018-03-09 Thread Mauricio
Thank you so much I can select multiple which is what I wanted. Will now dig into it. Much appreciated. Thank you! On Wednesday, March 7, 2018 at 4:58:25 PM UTC-3, Laurent Malvert wrote: > > https://wiki.jenkins.io/display/JENKINS/Active+Choices+Plugin ? > > > On Wed, Mar 7, 2018 at 7:30 PM, M

Pipeline Build Step lightweight checkout?

2018-03-09 Thread Steven Foster
Hi there, I'm using a pattern of split pipelines due to the number of parallel tasks needed and the grouping between them. I have an aggregating "parent" pipeline that kicks off indexing for all of the sub-builds (which are multibranch pipelines) then kicks off the sub-builds themselves. The a

Templating inside a Groovy pipeline?

2018-03-09 Thread Peter Berghold
Is there a text templating solution that *works* inside a Groovy pipeline? I tried both SimpleTemplate and StreamingTemplate and both error out with an exception somewhere in the bowels of the class. Am perhaps stuck with using a callout to a Perl script to get this to work? -- You received thi

Re: Templating inside a Groovy pipeline?

2018-03-09 Thread Slide
You can probably use those in a @NonCPS method inside a pipeline, that is how I am using it. I pass in all the information I need to the method and use templating inside and return the generated contents. On Fri, Mar 9, 2018, 11:58 Peter Berghold wrote: > Is there a text templating solution that