diff --git a/jobs/build/build-microshift-bootc/Jenkinsfile b/jobs/build/build-microshift-bootc/Jenkinsfile index 2a99f87dc5..000b78ff06 100644 --- a/jobs/build/build-microshift-bootc/Jenkinsfile +++ b/jobs/build/build-microshift-bootc/Jenkinsfile @@ -46,6 +46,12 @@ node() { defaultValue: "https://github.com/openshift-eng/ocp-build-data", trim: true, ), + string( + name: 'DOOZER_DATA_GITREF', + description: '(Optional) Doozer data path git [branch / tag / sha] to use', + defaultValue: "", + trim: true, + ), booleanParam( name: 'IGNORE_LOCKS', description: 'Do not wait for other builds in this version to complete (use only if you know they will not conflict)', @@ -89,6 +95,9 @@ node() { "-g", "openshift-$params.BUILD_VERSION", "--assembly", params.ASSEMBLY, ] + if (params.DOOZER_DATA_GITREF) { + cmd << "--data-gitref=${params.DOOZER_DATA_GITREF}" + } if (params.FORCE_REBUILD) { cmd << "--force" }