Skip to content

Commit

Permalink
Merge pull request #4259 from vfreex/ocp4-konflux-skip-rebase
Browse files Browse the repository at this point in the history
ocp4-konflux: Add SKIP_REBASE parameter
  • Loading branch information
ashwindasr authored Sep 27, 2024
2 parents 30131f2 + 872e70c commit 56546c5
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions jobs/build/ocp4-konflux/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,11 @@ node {
defaultValue: "",
trim: true,
),
booleanParam(
name: 'SKIP_REBASE',
description: '(For testing) Skip the rebase step',
defaultValue: false
),
]
],
]
Expand Down Expand Up @@ -101,6 +106,9 @@ node {
cmd += [
"--image-list=${commonlib.cleanCommaList(params.IMAGE_LIST)}"
]
if (params.SKIP_REBASE) {
cmd << "--skip-rebase"
}

// Needed to detect manual builds
wrap([$class: 'BuildUser']) {
Expand Down

0 comments on commit 56546c5

Please sign in to comment.