Skip to content

Commit

Permalink
Add missing commas to jdk16 config file (#2253)
Browse files Browse the repository at this point in the history
An errant c+p removed commas between multiple elements in a list,
causing pipeline failure. This change restores those commas.

Signed-off-by: Adam Farley <[email protected]>
  • Loading branch information
adamfarley authored Nov 24, 2020
1 parent 154fa4e commit 56156f0
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions pipelines/jobs/configurations/jdk16_pipeline_config.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class Config16 {
os : 'mac',
arch : 'x64',
additionalNodeLabels : 'macos10.14',
test : 'default'
test : 'default',
additionalFileNameTag: "macosXL",
configureArgs : '--with-noncompressedrefs --enable-dtrace'
],
Expand Down Expand Up @@ -47,7 +47,7 @@ class Config16 {
dockerFile: [
openj9 : 'pipelines/build/dockerFiles/cuda.dockerfile'
],
test : 'default'
test : 'default',
additionalFileNameTag: "linuxXL",
configureArgs : '--with-noncompressedrefs --enable-dtrace --enable-jitserver'
],
Expand Down Expand Up @@ -81,7 +81,7 @@ class Config16 {
os : 'windows',
arch : 'x64',
additionalNodeLabels : 'win2012&&vs2017',
test : 'default'
test : 'default',
additionalFileNameTag: "windowsXL",
configureArgs : '--with-noncompressedrefs'
],
Expand Down Expand Up @@ -125,7 +125,7 @@ class Config16 {
s390xLinuxXL : [
os : 'linux',
arch : 's390x',
test : 'default'
test : 'default',
additionalFileNameTag: "linuxXL",
configureArgs : '--with-noncompressedrefs --enable-dtrace'
],
Expand All @@ -147,7 +147,7 @@ class Config16 {
ppc64leLinuxXL : [
os : 'linux',
arch : 'ppc64le',
test : 'default'
test : 'default',
additionalFileNameTag: "linuxXL",
configureArgs : '--with-noncompressedrefs --disable-ccache --enable-dtrace'
],
Expand All @@ -167,7 +167,7 @@ class Config16 {
os : 'linux',
dockerImage : 'adoptopenjdk/centos7_build_image',
arch : 'aarch64',
test : 'default'
test : 'default',
additionalFileNameTag: "linuxXL",
configureArgs : '--with-noncompressedrefs --enable-dtrace'
],
Expand Down

0 comments on commit 56156f0

Please sign in to comment.