diff options
author | Dominik Stadler <centic@apache.org> | 2016-12-30 17:00:13 +0000 |
---|---|---|
committer | Dominik Stadler <centic@apache.org> | 2016-12-30 17:00:13 +0000 |
commit | 02f2481d219c156f1acc6a5980550767de342a73 (patch) | |
tree | 1e64d14b6bf81e65ab6838716a81394e8e4d5178 /jenkins | |
parent | 2d7f4100bdb43e074697a405bef1b31c9b98280a (diff) | |
download | poi-02f2481d219c156f1acc6a5980550767de342a73.tar.gz poi-02f2481d219c156f1acc6a5980550767de342a73.zip |
Allow to set the new --add-opens argument for JDK 9, scratchpad tests require slightly more memory on JDK 9 now, also adjust the Jenkins DSL accordingly.
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1776608 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'jenkins')
-rw-r--r-- | jenkins/create_jobs.groovy | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/jenkins/create_jobs.groovy b/jenkins/create_jobs.groovy index 9973acb2eb..1c6712ec07 100644 --- a/jenkins/create_jobs.groovy +++ b/jenkins/create_jobs.groovy @@ -27,7 +27,14 @@ def poijobs = [ skipcigame: true ], [ name: 'POI-DSL-1.9', jdks: ['1.9'], trigger: triggerSundays, - properties: ['-Dmaxpermsize=-Dthis.is.a.dummy=true', '-Djava9addmods=--add-modules=java.xml.bind', '-Djava9addmodsvalue=-Dsun.reflect.debugModuleAccessChecks=true', '-Djava.locale.providers=JRE,CLDR'], + properties: ['-Dmaxpermsize=-Dthis.is.a.dummy=true', + '-Djava9addmods=--add-modules=java.xml.bind', + '-Djava9addmodsvalue=-Dsun.reflect.debugModuleAccessChecks=true', + '-Djava9addopens1=--add-opens=java.base/com.sun.org.apache.xerces.internal.util=ALL-UNNAMED', + '-Djava9addopens2=--add-opens=java.base/java.io=ALL-UNNAMED', + '-Djava9addopens3=--add-opens=java.base/java.nio=ALL-UNNAMED', + '-Djava9addopens4=--add-opens=java.base/java.lang=ALL-UNNAMED', + '-Djava.locale.providers=JRE,CLDR'], email: 'centic@apache.org', skipcigame: true ], [ name: 'POI-DSL-IBM-JDK', jdks: ['IBMJDK'], trigger: triggerSundays, noScratchpad: true, |