as follow-up to [JENKINS-26138 :
I am running multibranch (scripted) pipeline jobs. In case of failure I would want to provide easy access to the workspace containing (large!!) log files.
This is possible through a link:
<JENKINS_HOST>/jobs/<JOB_NAME>/<BUILD_NUMBER>/execution/node/<WS-ID>/ws
which I can insert in my job (NUnit tests), and emit in case of failure.
The link points to the step in the pipeline that contains the 'Allocate node : Start'.
However the WS-ID number keeps varying outside of my control, which makes the linke rather useless.
My request is to make this WS-ID (link) available to the pipeline code of the job itself. Preferably as a fixed link, without some random number.
thx, D.