> Am 10.11.2020 um 19:52 schrieb Tal Yanai <t...@yanai.org.il>:
> 
> 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? 

>From where do you want to access the file? UI, file system, web service?

> How do I gain access to that node's location now that the job is over?
> 

This is not possible, the node may be already destroyed or cleaned. 

> If I do run.getExecutor().getCurrentWorkspace() for getting the FilePath, I'm 
> getting NullPointerException Obviously as nothing is running.
> 
> Is something wrong in this methodology?
> 

Yes, your planned approach will never work. You need to register a new 
https://javadoc.jenkins-ci.org/hudson/model/Action.html 
<https://javadoc.jenkins-ci.org/hudson/model/Action.html> that will be attached 
to the build. This action can serialize all information you need for retrieval 
and is visible in the UI. Or simply copy the file to the master build folder.



> Thanks,
> 
> Tal.
> 
> -- 
> 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-dev+unsubscr...@googlegroups.com 
> <mailto:jenkinsci-dev+unsubscr...@googlegroups.com>.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/jenkinsci-dev/6ec4c472-0b0c-4008-a0e8-f379494725e1n%40googlegroups.com
>  
> <https://groups.google.com/d/msgid/jenkinsci-dev/6ec4c472-0b0c-4008-a0e8-f379494725e1n%40googlegroups.com?utm_medium=email&utm_source=footer>.

-- 
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-dev+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-dev/F94F0ECE-321E-4928-A4E9-E4E77871DA5D%40gmail.com.

Reply via email to