Skip to content

Commit

Permalink
Fix bad merge resolution on jdk8 aix,win,xmac
Browse files Browse the repository at this point in the history
Signed-off-by: Adam Brousseau <[email protected]>
  • Loading branch information
AdamBrousseau committed Sep 5, 2024
1 parent 08855e4 commit e8d1d09
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions pipelines/jobs/configurations/jdk8u_pipeline_config.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ class Config8 {
openj9 : 'ci.project.openj9 && hw.arch.x86 && sw.os.mac.10_15'
],
cleanWorkspaceAfterBuild: true,
configureArgs : '--with-product-name="IBM Semeru Runtime" --with-product-suffix="Open Edition"',
test : 'default',
configureArgs : [
'temurin' : '--disable-ccache'
'temurin' : '--disable-ccache',
'openj9' : '--with-product-name="IBM Semeru Runtime" --with-product-suffix="Open Edition"'
],
buildArgs : [
'temurin' : '--create-sbom',
Expand Down Expand Up @@ -138,10 +138,10 @@ class Config8 {
openj9 : 'ci.project.openj9 && hw.arch.x86 && sw.os.windows',
dragonwell: 'win2012'
],
configureArgs : '--with-product-name="IBM Semeru Runtime" --with-product-suffix="Open Edition"',
test : 'default',
configureArgs : [
'temurin' : '--disable-ccache'
'temurin' : '--disable-ccache',
'openj9' : '--with-product-name="IBM Semeru Runtime" --with-product-suffix="Open Edition"'
],
buildArgs : [
'temurin' : '--create-sbom',
Expand Down Expand Up @@ -179,12 +179,10 @@ class Config8 {
additionalTestLabels : [
temurin: 'sw.os.aix.7_2'
],
configureArgs: [
'openj9' : '--disable-ccache --with-product-name="IBM Semeru Runtime" --with-product-suffix="Open Edition"'
],
cleanWorkspaceAfterBuild: true,
configureArgs : [
'temurin' : '--disable-ccache'
'temurin' : '--disable-ccache',
'openj9' : '--disable-ccache --with-product-name="IBM Semeru Runtime" --with-product-suffix="Open Edition"'
],
buildArgs : [
'temurin' : '--create-sbom',
Expand Down

0 comments on commit e8d1d09

Please sign in to comment.