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

Fix weekly test runs #880

Closed
wants to merge 1 commit into from
Closed
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
2 changes: 1 addition & 1 deletion pipelines/build/common/openjdk_build_pipeline.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@ class Build {
context.println "Running test: ${testType}"
context.stage("${testType}") {
def keep_test_reportdir = buildConfig.KEEP_TEST_REPORTDIR
if (("${testType}".contains('openjdk')) || ("${testType}".contains('jck'))) {
if (("${testType}".contains('openjdk')) || ("${testType}".contains('jck')) || (testType == 'dev.functional')) {
// Keep test reportdir always for JUnit targets
keep_test_reportdir = true
}
Expand Down
2 changes: 0 additions & 2 deletions pipelines/defaults.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,13 +53,11 @@
"extended.system",
"sanity.perf",
"sanity.functional",
"sanity.external",
"extended.functional",
"extended.openjdk",
"extended.perf",
"special.functional",
"special.openjdk",
"dev.openjdk",
"dev.functional"
],
"releaseDefault" : [
Expand Down
5 changes: 2 additions & 3 deletions pipelines/jobs/configurations/jdk11u_pipeline_config.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,8 @@ class Config11 {
dockerFile: [
openj9 : 'pipelines/build/dockerFiles/cuda.dockerfile'
],
test : [
nightly: ['sanity.openjdk', 'sanity.system', 'extended.system', 'sanity.perf', 'sanity.functional', 'extended.functional'],
weekly : ['extended.openjdk', 'extended.perf', 'special.functional', 'sanity.external']
test: [
weekly : ['sanity.openjdk', 'sanity.system', 'extended.system', 'sanity.perf', 'sanity.functional', 'extended.functional’, ’extended.openjdk', 'extended.perf', 'special.functional', 'sanity.external', 'dev.openjdk', 'dev.functional']
],
configureArgs : [
'openj9' : '--enable-dtrace=auto',
Expand Down
4 changes: 3 additions & 1 deletion pipelines/jobs/configurations/jdk17u_pipeline_config.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@ class Config17 {
dockerFile: [
openj9 : 'pipelines/build/dockerFiles/cuda.dockerfile'
],
test : 'default',
test: [
weekly : ['sanity.openjdk', 'sanity.system', 'extended.system', 'sanity.perf', 'sanity.functional', 'extended.functional’, ’extended.openjdk', 'extended.perf', 'special.functional', 'sanity.external', 'dev.openjdk', 'dev.functional']
],
reproducibleCompare : [
'temurin' : true
],
Expand Down
4 changes: 3 additions & 1 deletion pipelines/jobs/configurations/jdk21u_pipeline_config.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ class Config21 {
dockerFile: [
openj9 : 'pipelines/build/dockerFiles/cuda.dockerfile'
],
test : 'default',
test: [
weekly : ['sanity.openjdk', 'sanity.system', 'extended.system', 'sanity.perf', 'sanity.functional', 'extended.functional’, ’extended.openjdk', 'extended.perf', 'special.functional', 'sanity.external', 'dev.openjdk', 'dev.functional']
],
reproducibleCompare : [
'temurin' : true
],
Expand Down
4 changes: 3 additions & 1 deletion pipelines/jobs/configurations/jdk22_pipeline_config.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ class Config22 {
dockerFile: [
openj9 : 'pipelines/build/dockerFiles/cuda.dockerfile'
],
test : 'default',
test: [
weekly : ['sanity.openjdk', 'sanity.system', 'extended.system', 'sanity.perf', 'sanity.functional', 'extended.functional’, ’extended.openjdk', 'extended.perf', 'special.functional', 'sanity.external', 'dev.openjdk', 'dev.functional']
],
additionalTestLabels: [
openj9 : '!(centos6||rhel6)'
],
Expand Down
4 changes: 3 additions & 1 deletion pipelines/jobs/configurations/jdk23_pipeline_config.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ class Config23 {
dockerFile: [
openj9 : 'pipelines/build/dockerFiles/cuda.dockerfile'
],
test : 'default',
test: [
weekly : ['sanity.openjdk', 'sanity.system', 'extended.system', 'sanity.perf', 'sanity.functional', 'extended.functional’, ’extended.openjdk', 'extended.perf', 'special.functional', 'sanity.external', 'dev.openjdk', 'dev.functional']
],
additionalTestLabels: [
openj9 : '!(centos6||rhel6)'
],
Expand Down
5 changes: 4 additions & 1 deletion pipelines/jobs/configurations/jdk8u_pipeline_config.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,10 @@ class Config8 {
openj9 : 'pipelines/build/dockerFiles/cuda.dockerfile',
dragonwell: 'pipelines/build/dockerFiles/dragonwell.dockerfile'
],
test : 'default',
test: [
weekly : ['sanity.openjdk', 'sanity.system', 'extended.system', 'sanity.perf', 'sanity.functional', 'extended.functional’, ’extended.openjdk', 'extended.perf', 'special.functional', 'sanity.external', 'dev.openjdk', 'dev.functional']
],

configureArgs : [
'dragonwell' : '--enable-unlimited-crypto --with-jvm-variants=server --with-zlib=system',
],
Expand Down
Loading