Skip to content

Commit

Permalink
Enable sanity.functional and dev.external on machines with criu318
Browse files Browse the repository at this point in the history
Signed-off-by: Lan Xia <[email protected]>
  • Loading branch information
llxia committed Sep 1, 2023
1 parent 0dcb6b2 commit 38fd9ed
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
10 changes: 10 additions & 0 deletions pipelines/build/common/openjdk_build_pipeline.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -444,6 +444,16 @@ class Build {
additionalArtifactsRequired = 'RI_JDK'
}

String additionalFileNameTag = buildConfig.ADDITIONAL_FILE_NAME_TAG
if (additionalFileNameTag == "criu" && buildConfig.ARCHITECTURE == 'ppc64le') {
if (testType == 'dev.external' || testType == 'sanity.functional') {
if (additionalTestLabel != '') {
additionalTestLabel += '&&'
}
additionalTestLabel += 'ci.role.test.criu318'
}
}

def jobParams = getAQATestJobParams(testType)

def testFlag = ''
Expand Down
3 changes: 2 additions & 1 deletion pipelines/jobs/configurations/jdk11u_pipeline_config.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -547,7 +547,8 @@ class Config11 {
nightly: [
'sanity.functional',
'extended.functional',
'special.functional'
'special.functional',
'dev.external'
],
weekly : []
],
Expand Down
3 changes: 2 additions & 1 deletion pipelines/jobs/configurations/jdk17u_pipeline_config.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -497,7 +497,8 @@ class Config17 {
nightly: [
'sanity.functional',
'extended.functional',
'special.functional'
'special.functional',
'dev.external'
],
weekly : []
],
Expand Down

0 comments on commit 38fd9ed

Please sign in to comment.