Skip to content

Commit 3812d46

Browse files
Merge pull request #4397 from joepvd/skip-attached-bug-check
promote: Remove SKIP_ATTACHED_BUG_CHECK option
2 parents ee78818 + 24fa144 commit 3812d46

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

jobs/build/promote-assembly/Jenkinsfile

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -73,11 +73,6 @@ node {
7373
description: '(Standard Release) Do not gather an advisory image list for docs.',
7474
defaultValue: false,
7575
),
76-
booleanParam(
77-
name: 'SKIP_ATTACHED_BUG_CHECK',
78-
description: 'Skip attached bug check',
79-
defaultValue: false,
80-
),
8176
booleanParam(
8277
name: 'SKIP_SIGNING',
8378
description: 'Do not sign the release (legacy).',
@@ -107,7 +102,6 @@ node {
107102

108103
commonlib.checkMock()
109104
def (major, minor) = commonlib.extractMajorMinorVersionNumbers(params.VERSION)
110-
def skipAttachedBugCheck = params.SKIP_ATTACHED_BUG_CHECK
111105
def next_minor = "${major}.${minor + 1}"
112106
if (params.DRY_RUN) {
113107
currentBuild.displayName += " (dry-run)"
@@ -141,9 +135,6 @@ node {
141135
"--group=openshift-${params.VERSION}",
142136
"--assembly=${params.ASSEMBLY}",
143137
]
144-
if (skipAttachedBugCheck) {
145-
cmd << "--skip-attached-bug-check"
146-
}
147138
if (params.SKIP_IMAGE_LIST) {
148139
cmd << "--skip-image-list"
149140
}

0 commit comments

Comments
 (0)