From d29140215557e1b6ca0f85957f68c133056fbac0 Mon Sep 17 00:00:00 2001 From: Mesbah Alam Date: Wed, 15 Feb 2023 15:31:33 -0500 Subject: [PATCH] Add JENKINS_KEY parameter for multi-node based tck testing (#4346) Signed-off-by: Mesbah Alam --- buildenv/jenkins/testJobTemplate | 2 ++ 1 file changed, 2 insertions(+) diff --git a/buildenv/jenkins/testJobTemplate b/buildenv/jenkins/testJobTemplate index b50d49c2c5..d0303dc5c0 100644 --- a/buildenv/jenkins/testJobTemplate +++ b/buildenv/jenkins/testJobTemplate @@ -62,6 +62,7 @@ if (!binding.hasVariable('USER_CREDENTIALS_ID')) USER_CREDENTIALS_ID = "" if (!binding.hasVariable('GENERATE_JOBS')) GENERATE_JOBS = false if (!binding.hasVariable('CLOUD_PROVIDER')) CLOUD_PROVIDER = "" if (!binding.hasVariable('RERUN_ITERATIONS')) RERUN_ITERATIONS = "0" +if (!binding.hasVariable('JENKINS_KEY')) JENKINS_KEY = "" if (!binding.hasVariable('BUILDS_TO_KEEP')) { BUILDS_TO_KEEP = 10 @@ -440,6 +441,7 @@ ARCH_OS_LIST.each { ARCH_OS -> booleanParam('USE_TESTENV_PROPERTIES', USE_TESTENV_PROPERTIES.toBoolean(), "use properties defined in the testenv.properties") stringParam('RERUN_ITERATIONS', RERUN_ITERATIONS, "Optional. Number of times to repeat execution of failed test target(s).") booleanParam('SETUP_JCK_RUN', SETUP_JCK_RUN.toBoolean(), "setup jdk during release for jck interactive run") + stringParam('JENKINS_KEY', JENKINS_KEY, "Optional. Only use this for Multi-node Compiler TCK tests") } cpsScm { scm {