Author: kiwiwings
Date: Sat Apr 11 23:16:18 2020
New Revision: 1876407
URL: http://svn.apache.org/viewvc?rev=1876407&view=rev
Log:
Add Java 15 job
Modified:
poi/trunk/jenkins/create_jobs.groovy
Modified: poi/trunk/jenkins/create_jobs.groovy
URL:
http://svn.apache.org/viewvc/poi/trunk/jenkins/create_jobs.groovy?rev=1876407&r1=1876406&r2=1876407&view=diff
==============================================================================
--- poi/trunk/jenkins/create_jobs.groovy (original)
+++ poi/trunk/jenkins/create_jobs.groovy Sat Apr 11 23:16:18 2020
@@ -35,6 +35,8 @@ def poijobs = [
],
[ name: 'POI-DSL-1.14', jdk: '1.14', trigger: triggerSundays,
skipcigame: true
],
+ [ name: 'POI-DSL-1.15', jdk: '1.15', trigger: triggerSundays,
skipcigame: true
+ ],
[ name: 'POI-DSL-IBM-JDK', jdk: 'IBMJDK', trigger: triggerSundays,
skipcigame: true
],
[ name: 'POI-DSL-old-Xerces', trigger: triggerSundays,
@@ -55,9 +57,7 @@ def poijobs = [
[ name: 'POI-DSL-no-scratchpad', trigger: triggerSundays,
noScratchpad: true
],
[ name: 'POI-DSL-SonarQube', trigger: 'H 7 * * *', maven: true, sonar:
true, skipcigame: true,
- email: '[email protected]',
- // H40 can't access sonar instance
- slaveAdd: '&&!H40'
+ email: '[email protected]'
],
[ name: 'POI-DSL-SonarQube-Gradle', trigger: 'H 9 * * *', gradle:
true, sonar: true, skipcigame: true,
disabled: true // this one does run, but does not actually
send data to Sonarqube for some reason, we need to investigate some more
@@ -114,6 +114,7 @@ def jdkMapping = [
'1.12': 'JDK 12 (latest)',
'1.13': 'JDK 13 (latest)',
'1.14': 'JDK 14 (latest)',
+ '1.15': 'JDK 15 (latest)',
'OpenJDK 1.8': 'OpenJDK 1.8.0_242',
'IBMJDK': 'IBM 1.8 64-bit (on Ubuntu only)',
]
@@ -498,7 +499,7 @@ xmlbeansjobs.each { xjob ->
// when using JDK 9/10 for running Ant, we need to provide
more modules for the forbidden-api-checks task
// on JDK 11 and newer there is no such module any more, so do
not add it here
env('ANT_OPTS', '--add-modules=java.xml.bind
--add-opens=java.xml/com.sun.org.apache.xerces.internal.util=ALL-UNNAMED
--add-opens=java.base/java.lang=ALL-UNNAMED')
- } else if (jdkKey == '1.11' || jdkKey == '1.12' || jdkKey ==
'1.13' || jdkKey == '1.14') {
+ } else if (jdkKey == '1.11' || jdkKey == '1.12' || jdkKey ==
'1.13' || jdkKey == '1.14' || jdkKey == '1.15') {
env('ANT_OPTS',
'--add-opens=java.xml/com.sun.org.apache.xerces.internal.util=ALL-UNNAMED
--add-opens=java.base/java.lang=ALL-UNNAMED')
}
// will be needed for forbidden-apis-check: env('ANT_HOME',
xjob.windows ? 'f:\\jenkins\\tools\\ant\\latest' : '/usr/share/ant')
@@ -592,7 +593,8 @@ Unfortunately we often see builds break
'JDK 11 (latest)',
'JDK 12 (latest)',
'JDK 13 (latest)',
- 'JDK 14 (latest)'
+ 'JDK 14 (latest)',
+ 'JDK 15 (latest)'
)
elasticAxis {
name('Nodes')
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]