Re: Accessing workspace after job is complete

2020-11-10 Thread Jesse Glick
On Tue, Nov 10, 2020 at 2:56 PM Tal Yanai wrote: > How do I achieve that (copying) if the node and master don’t share NFS? Check Javadoc of `FilePath`. Numerous plugins defining `Publisher`s do this. -- You received this message because you are subscribed to the Google Groups "Jenkins

Re: Accessing workspace after job is complete

2020-11-10 Thread Tal Yanai
Thank you, Coping it from the node into the master will be the best approach. How do I achieve that (copying) if the node and master don’t share NFS? Thanks, Tal. On Tue, 10 Nov 2020 at 20:52 Tal Yanai wrote: > Hi, > > Suppose the Java plugin I'm writing is producing a report file. Within

Re: Accessing workspace after job is complete

2020-11-10 Thread Ullrich Hafner
> Am 10.11.2020 um 19:52 schrieb Tal Yanai : > > Hi, > > Suppose the Java plugin I'm writing is producing a report file. Within its > node (slave) I will use filePath.child(fileOnDiskPath) to persist that report > into that node workspace. > > What happened now when I want to reference that

Accessing workspace after job is complete

2020-11-10 Thread Tal Yanai
Hi, Suppose the Java plugin I'm writing is producing a report file. Within its node (slave) I will use filePath.child(fileOnDiskPath) to persist that report into that node workspace. What happened now when I want to reference that report once the build is over? How do I gain access to that