From 985def8a9b2eac8a4883e9112cf5e235e5c7fa4e Mon Sep 17 00:00:00 2001 From: Lan Xia Date: Tue, 10 Dec 2024 08:56:20 -0500 Subject: [PATCH] Enable Adoptium smoke tests regardless of ENABLE_TESTS value related: automation/issues/154 Signed-off-by: Lan Xia --- pipelines/build/common/openjdk_build_pipeline.groovy | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pipelines/build/common/openjdk_build_pipeline.groovy b/pipelines/build/common/openjdk_build_pipeline.groovy index 68d19d75f..6c46d06ae 100644 --- a/pipelines/build/common/openjdk_build_pipeline.groovy +++ b/pipelines/build/common/openjdk_build_pipeline.groovy @@ -2686,6 +2686,8 @@ class Build { } } + def smokeTestsResult = runSmokeTests() + // Run Smoke Tests and AQA Tests if (enableTests) { if (currentBuild.currentResult != "SUCCESS") { @@ -2693,7 +2695,6 @@ class Build { } try { //Set smoke tests blocking in release testing only - def smokeTestsResult = runSmokeTests() if (smokeTestsResult == 'SUCCESS' || !buildConfig.RELEASE) { // Remote trigger Eclipse Temurin JCK tests if (buildConfig.VARIANT == 'temurin' && enableTCK) {