groovy parallel code example

2021-01-24 Thread Shurik Gefter
Hi, I'm trying to find example of parallel code implementation in groovy (not parallel step of pipeline) Does anyone know where I can find it? -- Thanks, Shurik -- You received this message because you are subscribed to the Google Groups "Jenkins Developers" group. To unsubs

strange behavior with withCredential command in pipeline

2021-01-20 Thread Shurik Gefter
be can you light me what can be the reason for this delay? -- Thanks, Shurik -- You received this message because you are subscribed to the Google Groups "Jenkins Developers" group. To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-d

how to create 2 page in RootAction

2016-08-03 Thread Shurik
Hi, I need to create the below option in UI when I implement the RootAction. User pres on the main menu ( left jenkins menu ) and get the first page with some drop downs fields. After he choose the value he need to press "Next" button and get the second page with additional data. How in jelly

Re: get global parameter from other plugin

2016-06-05 Thread Shurik
Hi Robert, Thank you for your answer. Can I find example how to do it? Do you know if some plugin use this option? Thanks, Shurik On Thursday, 2 June 2016 17:26:26 UTC+3, Robert Sandell wrote: > > Try @RelativePath > > http://javadoc.jenkins-ci.org/hudson/RelativePath.html >

Re: get global parameter from other plugin

2016-06-02 Thread Shurik
mething > against it. But again, it will depend on your use case. > > Cheers > > 2016-06-02 10:32 GMT+00:00 Shurik <shurik...@gmail.com >: > >> In plugin "B" in global.jelly defined >> >> >> >> >> >> My plugin

Re: get global parameter from other plugin

2016-06-02 Thread Shurik
> > What do you mean by parameter, and in what context do you want it? > > On Thu, Jun 2, 2016 at 10:59 AM, Shurik <shurik...@gmail.com > > wrote: > >> Hi, >> >> I have my plugin (A) that need to get global parameter that define by >> other plugin (B).

get global parameter from other plugin

2016-06-02 Thread Shurik
Hi, I have my plugin (A) that need to get global parameter that define by other plugin (B). I need that "A" descriptor will be able to get parameter of "B" descriptor ( via getter method ) How I can do it ? Thanks, Shurik -- You received this message becaus

Re: How to create add buton with drop down options

2016-05-25 Thread Shurik
Thanks a lot. Shurik On Tuesday, 24 May 2016 15:02:25 UTC+3, suresh kumar wrote: > > Please go through the below article, it suits to your requirement > https://www.cloudbees.com/blog/introducing-variability-jenkins-plugins > > The above article explains how to introduce variabil

How to create add buton with drop down options

2016-05-23 Thread Shurik
implement in java code? Where I can find documentation for it? Thanks, Shurik -- You received this message because you are subscribed to the Google Groups "Jenkins Developers" group. To unsubscribe from this group and stop receiving emails from it, send an email to je

replace variable to real value in build step

2016-04-12 Thread Shurik
parameter in "This build is parameterized" option. In my plugin configuration parameter i set as below FILE=${FILE_LOCATION} Now in code I want translate the ${FILE_LOCATION} to the real value that user set when trigger the build. Thanks, Shurik -- You received this

get maven skipped modules via groovy

2016-03-06 Thread Shurik
* 2016-03-04 12:23:38.369 [INFO] 3 SKIPPED but when I check the result of module for skipped modules I get the NOT_BUILD status. How I can know if module skipped? <% def mbuilds = build.moduleLastBuilds mbuilds.each() { m -> %> ${m.value.getResult()} <% } %>