Jenkins: Try to disable coverage for JDK 13 for now as it seems to cause issues

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1851803 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Dominik Stadler 2019-01-22 10:23:58 +00:00
parent a1529d0718
commit 5a10cc9e6b
1 changed files with 4 additions and 1 deletions

View File

@ -71,7 +71,10 @@ def poijobs = [
'-Djava9addopens3=--add-opens=java.base/java.nio=ALL-UNNAMED',
'-Djava9addopens4=--add-opens=java.base/java.lang=ALL-UNNAMED',
'-Djava9addopens5=--add-opens=java.base/jdk.internal.ref=ALL-UNNAMED',
'-Djava.locale.providers=JRE,CLDR'],
'-Djava.locale.providers=JRE,CLDR',
// JaCoCo currently fails with "java.lang.NoSuchFieldException: $jacocoAccess",
// need to review/check with newer JDK 13 builds or when at least JaCoCo 0.8.3
'-Dcoverage.enabled=false'],
skipcigame: true
],
[ name: 'POI-DSL-IBM-JDK', jdk: 'IBMJDK', trigger: triggerSundays, skipcigame: true