Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Auto gen remote temurin compliance test jobs for ea builds #1138

Merged
merged 1 commit into from
Nov 10, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions pipelines/build/common/openjdk_build_pipeline.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -568,6 +568,7 @@ class Build {
context.echo "sdkUrl is ${sdkUrl}"
def remoteTargets = [:]
def additionalTestLabel = buildConfig.ADDITIONAL_TEST_LABEL
def aqaAutoGen = buildConfig.AQA_AUTO_GEN ?: false
def setupJCKRun = false
if (buildConfig.SCM_REF && buildConfig.AQA_REF && sdkUrl.contains("release")) {
setupJCKRun = true
Expand Down Expand Up @@ -645,6 +646,7 @@ class Build {
context.MapParameter(name: 'APPLICATION_OPTIONS', value: "${appOptions}"),
context.MapParameter(name: 'LABEL_ADDITION', value: additionalTestLabel),
context.MapParameter(name: 'cause', value: "Remote triggered by job ${env.BUILD_URL}"), // Label is lowercase on purpose to map to the Jenkins target reporting system
context.MapParameter(name: 'AUTO_AQA_GEN', value: "${aqaAutoGen}"),
context.MapParameter(name: 'SETUP_JCK_RUN', value: "${setupJCKRun}")]),
remoteJenkinsName: 'temurin-compliance',
shouldNotFailBuild: true,
Expand Down