Skip to content

Commit

Permalink
jdk8u Solaris betaTrigger
Browse files Browse the repository at this point in the history
Signed-off-by: Andrew Leonard <[email protected]>
  • Loading branch information
andrew-m-leonard committed Jan 10, 2025
1 parent 7862394 commit 688716c
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions pipelines/build/common/trigger_beta_build.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,11 @@ if (triggerMainBuild || triggerEvaluationBuild) {
if (triggerMainBuild && mainTargetConfigurations != "{}") {
if (version == 8 && (mainTargetConfigurations.contains("x64Solaris") || mainTargetConfigurations.contains("sparcv9Solaris"))) {
// Special case to handle building jdk8u Solaris
pipelines["main"] = "build-scripts/jobs/jdk8u/jdk8u-solaris-x64-temurin-simple"
if (mainTargetConfigurations.contains("x64Solaris")) {
pipelines["main"] = "build-scripts/jobs/jdk8u/jdk8u-solaris-x64-temurin-simplepipe"
} else {
pipelines["main"] = "build-scripts/jobs/jdk8u/jdk8u-solaris-sparcv9-temurin-simplepipe"
}
solarisBuildJob = true
} else {
pipelines["main"] = "build-scripts/openjdk${version}-pipeline"
Expand All @@ -307,7 +311,7 @@ if (triggerMainBuild || triggerEvaluationBuild) {
def jobParams
if (solarisBuildJob) {
jobParams = [
string(name: 'VARIANT', value: "$variant"),
booleanParam(name: 'RELEASE', value: false),
string(name: 'SCM_REF', value: "$latestAdoptTag"),
]
} else {
Expand Down

0 comments on commit 688716c

Please sign in to comment.