Skip to content

Commit

Permalink
Remove duplicate functional testing
Browse files Browse the repository at this point in the history
- Remove old style sanity & extended (functional)
  from nightly builds.
- Machine resources are limited and new style (Adopt Pipelines)
  functional testing is stable, so this removes the
  old style (OpenJ9 pipelines)

Related eclipse-openj9#2117
Issue eclipse-openj9#1450
[skip ci]

Signed-off-by: Adam Brousseau <adam.brousseau88@gmail.com>
  • Loading branch information
AdamBrousseau committed Jun 16, 2018
1 parent da56ab5 commit caf3117
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions buildenv/jenkins/common/pipeline-functions
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit caf3117

Please sign in to comment.