Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Disable external tests as weekly testlist for now #85

Merged
merged 3 commits into from
Mar 5, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions pipelines/build/common/build_base_file.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,7 @@ class Builder implements Serializable {
final List<String> weekly = [
'extended.openjdk',
'extended.perf',
'special.functional',
'sanity.external'
'special.functional'
]

// Declare timeouts for each critical stage (unit is HOURS)
Expand Down Expand Up @@ -247,8 +246,9 @@ class Builder implements Serializable {

}
}

testList.unique()

return testList
}

Expand Down
6 changes: 0 additions & 6 deletions pipelines/build/common/openjdk_build_pipeline.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -251,12 +251,6 @@ class Build {

def additionalTestLabel = buildConfig.ADDITIONAL_TEST_LABEL

if (buildConfig.VARIANT == "corretto") {
testList = buildConfig.TEST_LIST.minus(['sanity.external'])
} else {
testList = buildConfig.TEST_LIST
}

testList.each { testType ->

// For each requested test, i.e 'sanity.openjdk', 'sanity.system', 'sanity.perf', 'sanity.external', call test job
Expand Down