Re: reuseNode in docker-plugin

2025-01-08 Thread Om Naidu
Try with Multibranch. This may require tweaking your build process or trigger points. You can also try parallel stages by scripting jenkinsfile properly. On Wed, Jan 8, 2025 at 8:27 AM Kirk Fitzsimons wrote: > > It is not a multibranch pipeline, It is a declarative pipeline > On Wednesday, Janu

Re: reuseNode in docker-plugin

2025-01-08 Thread Kirk Fitzsimons
This would be an example: pipeline { agent { label 'default' } stages{ stage('Parallel: Job A & Job B){ parallel { stage('A') { steps { build job: 'Job A', } //steps }//st

Re: reuseNode in docker-plugin

2025-01-08 Thread Kirk Fitzsimons
It is not a multibranch pipeline, It is a declarative pipeline On Wednesday, January 8, 2025 at 2:15:41 PM UTC omn...@gmail.com wrote: > What type of pipeline project are you using? did you use multi brach > pipeline? > > On Wed, Jan 8, 2025 at 7:26 AM Kirk Fitzsimons > wrote: > >> Hi, >> >> A

Re: reuseNode in docker-plugin

2025-01-08 Thread Om Naidu
What type of pipeline project are you using? did you use multi brach pipeline? On Wed, Jan 8, 2025 at 7:26 AM Kirk Fitzsimons wrote: > Hi, > > Apologies if this has been asked/answered already, but it there an ability > to reuse docker nodes between stages using the docker-plugin >