Details
-
Type:
Improvement
-
Status: Closed (View Workflow)
-
Priority:
Major
-
Resolution: Fixed
-
Component/s: core
-
Labels:
-
Similar Issues:
Description
We are using $JOB_NAME a lot to automatically create names für ClearCase views in our jobs. This looks like
${USER_NAME}${COMPUTERNAME}${JOB_NAME} for the view tag and
${JOB_NAME} for the view name.
Additionaly we ha a small managed script to automatically create a build tag:
echo %BUILD_TAG% > %CLEARCASE_VIEWPATH%%JOB_NAME%-build.tag
When a Job is now moved into a folder the JOB-NAME is "foldername/jobname" which is longer and contains a slash causing real pain on windows.
I don't know if someone is relying on JOB_NAME containing the folder name and the slash, but would it be possible to separate this into two variables like FOLDER_NAME and (SHORT_)JOB_NAME?
Not sure if it is intentional
With Jenkins pipeline the JOB_BASE_NAME is same as BRANCH_NAME instead of the actual project name.
BRANCH_NAME=master
JOB_NAME=projectA/master
JOB_BASE_NAME=master
The value for JOB_BASE_NAME should be in this case projectA.