Re: java.io.IOException: Could not copy remoting.jar into '/var/lib/jenkins' on agent

2022-01-27 Thread Senthil Nathan
Why is it copying into /var/lib/Jenkins. Is that your agent workspace root. /Var/libs/Jenkins looks like a restricted space. you can try users home directory as agent root to be sure you have access On Thu, Jan 27, 2022, 12:08 PM Michael Renner wrote: > Moin, > > a strange problem. For some tim

Re: How to fix workspace deletion on slave node

2021-04-16 Thread Senthil Nathan
Agree. You can stash artifacts generated in the workspaces to the controller. Be aware if you are using parallel builds automatic workspace deletion can cause job failures when the

Re: How to fix workspace deletion on slave node

2021-04-15 Thread Senthil Nathan
This is a system property that should be set when starting up jenkins. You would want to set *hudson.model.WorkspaceCleanupThread.disabled* to true to disable deletion of workspaces. Usage is documented here: https://www.jenkins.io/doc/book/managing/system-properties/ On Thu, Apr 15, 2021 at 11:

Re: Choice Parameter from Shared LIbrary Step

2020-12-18 Thread Senthil Nathan
ll be great, if you can please help with some examples. > > Regards, > Venkatesh > > > On Sat, Dec 19, 2020 at 12:48 AM Senthil Nathan < > m.s.senthilnat...@gmail.com> wrote: > >> Yes. In below example the choice_list can come from a share

Re: Choice Parameter from Shared LIbrary Step

2020-12-18 Thread Senthil Nathan
Yes. In below example the choice_list can come from a shared pipeline library. Eg) Jenkinsfile: choice_list=["choice1", "choice2", choice3"] properties([ parameters([ choice(name: 'mychoiceparam', choices:choice_list, description: 'my choices')]) ]) On Fri,

Re: NonCPS durability

2020-05-07 Thread Senthil Nathan
;; callingNonCps(); callingCps(); } def callingCps(){ println "in cps"; for(int i=0;i<500;i++){ println "in cps $i"; } } @NonCPS def callingNonCps(){ for(int i=0;i<500;i++){ println "in non cps $i"; } } On Monday,

NonCPS durability

2020-04-20 Thread Senthil Nathan
How do I guarantee durability of my job given that my job will use jenkins plugins that are not CPS transformed. >From my understanding - Jenkins does not provide durability for non CPS transformed jenkins plugin. -- You received this message because you are subscribed to the Google Groups "J