--
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-use...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-users/7604abe1-01fd-4f07-94c9-0352318ebba7%40googlegroups.com.
--
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-use...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-users/7604abe1-01fd-4f07-94c9-0352318ebba7%40googlegroups.com.
-- Eric Pyle Siemens Digital Industries Software Simulation and Test Solutions, Product Development eric...@siemens.com https://www.sw.siemens.com/
Extending on Slide's idea, you can write the result to a file in the workspace and save that file as a build artifact. Then in the downstream job that runs on the master you can retrieve the artifact from the upstream job (copy artifacts from other job) and read the value in your bash script. Or similarly, if you write the file in the upstream job as a properties file "VARNAME=$value" then you can use that file to set a parameter to pass to the downstream job (parameters from properties file).
Eric
On 2/26/2020 8:26 AM, Michael Renner wrote:
Moin,
[...]