Skip to content

Commit

Permalink
Running Temurin mac x65 reproducible comparing on aarch64 mac
Browse files Browse the repository at this point in the history
  • Loading branch information
sophia-guo committed Nov 6, 2024
1 parent f868061 commit 59afe21
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions pipelines/build/common/openjdk_build_pipeline.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -411,6 +411,7 @@ class Build {
testTime = '120'
parallel = 'Dynamic'
}
def specificLabel = ''

testList.each { testType ->
// For each requested test, i.e 'sanity.openjdk', 'sanity.system', 'sanity.perf', 'sanity.external', call test job
Expand Down Expand Up @@ -445,6 +446,10 @@ class Build {
}
}

// Eclipse Adoptium Temurin reproducible comparing on x64 mac required to run on aarch64 mac
if (testType == 'special.system' && jobName.contains('x86-64_mac') && buildConfig.VARIANT == 'temurin') {
specificLabel = 'ci.role.test&&hw.arch.aarch64&&(sw.os.osx||sw.os.mac)'
}
if (testType == 'special.system' || testType == 'dev.system') {
def useAdoptShellScripts = Boolean.valueOf(buildConfig.USE_ADOPT_SHELL_SCRIPTS)
vendorTestBranches = useAdoptShellScripts ? ADOPT_DEFAULTS_JSON['repository']['build_branch'] : DEFAULTS_JSON['repository']['build_branch']
Expand Down Expand Up @@ -498,6 +503,7 @@ class Build {
context.string(name: 'JDK_REPO', value: jdkRepo),
context.string(name: 'JDK_BRANCH', value: jdkBranch),
context.string(name: 'OPENJ9_BRANCH', value: openj9Branch),
context.string(name: 'LABEL', value: specificLabel),
context.string(name: 'LABEL_ADDITION', value: additionalTestLabel),
context.booleanParam(name: 'KEEP_REPORTDIR', value: keep_test_reportdir),
context.string(name: 'PARALLEL', value: parallel),
Expand Down

0 comments on commit 59afe21

Please sign in to comment.