Re: Checkout will put the files on agent, I need it on master node Jenkins

2020-05-11 Thread SARDARNI NK
Thank you Mark let me try this approach. Thanks, Nav -- 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

Re: Checkout will put the files on agent, I need it on master node Jenkins

2020-05-11 Thread Mark Waite
You might consider treating the file that you want to store on the master as an artifact. The artifact is then available from the master even if the agent workspace is deleted. That doesn't place it at an exact location, but does retain it even after a workspace is removed. On Mon, May 11, 2020

Re: Checkout will put the files on agent, I need it on master node Jenkins

2020-05-11 Thread SARDARNI NK
Thank you. Master node executors 0 and we don't to provide executors to any numbers for good practices. I am not using any labels on the job too. Thanks, Nav -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from this group and

Re: Checkout will put the files on agent, I need it on master node Jenkins

2020-05-11 Thread Jan Monterrubio
You can run jobs on master, there’s a “specify where to run” option and if you put master on there the checkout And any scripts should be on master. On Mon, May 11, 2020 at 17:44 SARDARNI NK wrote: > Hi Everyone, > > The checkout will put the files on the agent, I need it on the master > node.

Checkout will put the files on agent, I need it on master node Jenkins

2020-05-11 Thread SARDARNI NK
Hi Everyone, The checkout will put the files on the agent, I need it on the master node. Could anyone can help me. Is there anyway to setup another Jenkins job that can copy the code on the master? Currently, I am copy file.sh in manually on the master, and calling that file in Jenkins job u