From 7fe1cf3fa82d597c59eee13bfb7552a28c9d8f45 Mon Sep 17 00:00:00 2001 From: Sophia Guo Date: Fri, 8 Nov 2024 13:47:23 -0500 Subject: [PATCH] Auto gen remote temurin compliance test jobs for ea builds --- pipelines/build/common/openjdk_build_pipeline.groovy | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pipelines/build/common/openjdk_build_pipeline.groovy b/pipelines/build/common/openjdk_build_pipeline.groovy index 68a33db97..4c9780fa5 100644 --- a/pipelines/build/common/openjdk_build_pipeline.groovy +++ b/pipelines/build/common/openjdk_build_pipeline.groovy @@ -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 @@ -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,