Skip to content

Commit

Permalink
add proper RPM suffix for RH9 when UBI9 is selected
Browse files Browse the repository at this point in the history
  • Loading branch information
Vitaly Korolev committed Sep 16, 2024
1 parent 616c2f6 commit 1a0bb89
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -149,12 +149,22 @@ void copyRPMs() {
RPMversion = "10.0"
}
else if (marklogicVersion == "11") {
RPMsuffix = ".nightly-rhel"
//if dockerImageType contains "ubi9" then use nightly-rhel9 suffix
if (dockerImageType.contains("ubi9")) {
RPMsuffix = ".nightly-rhel9"
} else {
RPMsuffix = ".nightly-rhel"
}
RPMbranch = "b11"
RPMversion = "11.4"
}
else if (marklogicVersion == "12") {
RPMsuffix = ".nightly-rhel"
//if dockerImageType contains "ubi9" then use nightly-rhel9 suffix
if (dockerImageType.contains("ubi9")) {
RPMsuffix = ".nightly-rhel9"
} else {
RPMsuffix = ".nightly-rhel"
}
RPMbranch = "b12"
RPMversion = "12.0"
}
Expand Down

0 comments on commit 1a0bb89

Please sign in to comment.