You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 17, 2024. It is now read-only.
$BUILD_TAG is used for the container name which is fine for freestyle jobs because it is $JOB_NAME-$BUILD_NUMBER such as test-job-100.
For Multiconfiguration jobs, the build tag is something like test-job-100-PARAM=abc,PARAM2=xyz which is not a legal docker container name.
Workaround:
Add a a parameter to the job called BUILD_TAG and set it so the value is unique using the matrix parameters & build number.
For example: test-job-$BUILD_NUMBER-$PARAM-$PARAM2 assuming the values of the parameters are in docker's legal character set of [a-zA-Z0-9_.-]
Affects
v0.0.3$BUILD_TAGis used for the container name which is fine for freestyle jobs because it is$JOB_NAME-$BUILD_NUMBERsuch astest-job-100.For Multiconfiguration jobs, the build tag is something like
test-job-100-PARAM=abc,PARAM2=xyzwhich is not a legal docker container name.Workaround:
Add a a parameter to the job called
BUILD_TAGand set it so the value is unique using the matrix parameters & build number.For example:
test-job-$BUILD_NUMBER-$PARAM-$PARAM2assuming the values of the parameters are in docker's legal character set of[a-zA-Z0-9_.-]