diff options
author | PJ Fanning <fanningpj@apache.org> | 2023-08-05 13:41:30 +0000 |
---|---|---|
committer | PJ Fanning <fanningpj@apache.org> | 2023-08-05 13:41:30 +0000 |
commit | 2fee41c1f79e3b0c9884e207aafc76a833a5183a (patch) | |
tree | b712a65cdaa12512b09716ccafc9f0843666c028 /jenkins | |
parent | d2f58f436c48cee842a02f247ed44949aa616ab2 (diff) | |
download | poi-2fee41c1f79e3b0c9884e207aafc76a833a5183a.tar.gz poi-2fee41c1f79e3b0c9884e207aafc76a833a5183a.zip |
update jobs
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1911465 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'jenkins')
-rw-r--r-- | jenkins/create_jobs.groovy | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/jenkins/create_jobs.groovy b/jenkins/create_jobs.groovy index 0a5bd68657..80492a35b3 100644 --- a/jenkins/create_jobs.groovy +++ b/jenkins/create_jobs.groovy @@ -36,6 +36,8 @@ def poijobs = [ ], // Jenkins on ci-builds.apache.org does not support spotbugs with a new enough version of asm for Java18+ [ name: 'POI-DSL-1.18', jdk: '1.18', trigger: triggerSundays, skipcigame: true, skipSpotbugs: true + // let's save some CPU cycles here, 18 is not a LTS and JDK 20 is out + disabled: true ], // Jenkins on ci-builds.apache.org does not support spotbugs with a new enough version of asm for Java18+ [ name: 'POI-DSL-1.19', jdk: '1.19', trigger: triggerSundays, skipcigame: true, skipSpotbugs: true @@ -90,7 +92,9 @@ def poijobs = [ [ name: 'POI-DSL-Windows-1.17', jdk: '1.17', trigger: 'H */12 * * *', windows: true, slaves: 'Windows', skipcigame: true ], [ name: 'POI-DSL-Windows-1.18', jdk: '1.18', trigger: triggerSundays, windows: true, slaves: 'Windows', skipcigame: true, - skipSpotbugs: true + skipSpotbugs: true, + // let's save some CPU cycles here, 18 is not a LTS and JDK 20 is out + disabled: true ], [ name: 'POI-DSL-Github-PullRequests', trigger: '', skipcigame: true, disabled: true ], @@ -108,9 +112,13 @@ def xmlbeansjobs = [ [ name: 'POI-XMLBeans-DSL-1.17', jdk: '1.17', trigger: triggerSundays, skipcigame: true, ], [ name: 'POI-XMLBeans-DSL-1.18', jdk: '1.18', trigger: triggerSundays, skipcigame: true, + // let's save some CPU cycles here, 18 is not a LTS and JDK 20 is out + disabled: true ], [ name: 'POI-XMLBeans-DSL-1.19', jdk: '1.19', trigger: triggerSundays, skipcigame: true, ], + [ name: 'POI-XMLBeans-DSL-1.20', jdk: '1.20', trigger: triggerSundays, skipcigame: true, + ], [ name: 'POI-XMLBeans-DSL-Sonar', jdk: '1.11', trigger: triggerSundays, skipcigame: true, sonar: true ] |