Skip to content

Commit

Permalink
Convert false values to empty arrays to prevent boolean error (adopti…
Browse files Browse the repository at this point in the history
…um#2240)

Passing "false" in as the value of these variables appears to cause
a Groovy error where it says "No signature of method:
java.lang.Boolean.clear() is applicable for argument types: ()
values: []"

Switching the values to empty arrays, as on the other platforms, to
fix this.

Signed-off-by: Adam Farley <[email protected]>
  • Loading branch information
adamfarley authored Nov 18, 2020
1 parent a5bfc2d commit 974954b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pipelines/jobs/configurations/jdk16_pipeline_config.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ class Config16 {
dockerImage : 'adoptopenjdk/alpine3_build_image',
test : [
// TODO: enable tests
nightly: false,
nightly: [],
// release: ['sanity.openjdk', 'sanity.system', 'extended.system', 'sanity.perf', 'sanity.external', 'special.functional']
release: false
release: []
]
],

Expand Down

0 comments on commit 974954b

Please sign in to comment.