diff --git a/buildenv/jenkins/common/pipeline-functions b/buildenv/jenkins/common/pipeline-functions index 11911d2485c..1a4a5a6c105 100644 --- a/buildenv/jenkins/common/pipeline-functions +++ b/buildenv/jenkins/common/pipeline-functions @@ -176,14 +176,14 @@ def workflow(SDK_VERSION, SPEC, SHAS, OPENJDK_REPO, OPENJDK_BRANCH, OPENJ9_REPO, if (SPEC.contains("win") || SDK_VERSION == "9" || SDK_VERSION == "10") { TARGET_NAMES = ["Sanity"] } else { - TARGET_NAMES = ["Sanity", "sanity.functional", "sanity.system"] + TARGET_NAMES = ["sanity.functional", "sanity.system"] } break case "_extended": if (SPEC.contains("win") || SDK_VERSION == "9" || SDK_VERSION == "10") { TARGET_NAMES = ["Extended"] } else { - TARGET_NAMES = ["Extended", "extended.functional"] + TARGET_NAMES = ["extended.functional"] } break // temporary for OMR acceptance. This should be removed once we completely switch to AdoptOpenJDK test Jenkins file