diff options
author | PJ Fanning <fanningpj@apache.org> | 2024-09-15 22:30:35 +0000 |
---|---|---|
committer | PJ Fanning <fanningpj@apache.org> | 2024-09-15 22:30:35 +0000 |
commit | c51270d308d2ed054fccc25b49c5fdd70928f51e (patch) | |
tree | 9907a7787196f5cd3ee8851bc27e0af09680b86d | |
parent | b6c67ae7364ba732759618ef74ffb7fdab1b7b6e (diff) | |
download | poi-c51270d308d2ed054fccc25b49c5fdd70928f51e.tar.gz poi-c51270d308d2ed054fccc25b49c5fdd70928f51e.zip |
back to ant
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1920702 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | jenkins/create_jobs.groovy | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/jenkins/create_jobs.groovy b/jenkins/create_jobs.groovy index a03de0891f..51579649be 100644 --- a/jenkins/create_jobs.groovy +++ b/jenkins/create_jobs.groovy @@ -46,6 +46,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.22', jdk: '1.22', trigger: triggerSundays, skipcigame: true, skipSpotbugs: true + // issues with jacoco and Gradle and this JDK + useAnt: true ], // Jenkins on ci-builds.apache.org does not support spotbugs with a new enough version of asm for Java18+ [ name: 'POI-DSL-1.23', jdk: '1.23', trigger: triggerSundays, skipcigame: true, skipSpotbugs: true, @@ -103,7 +105,9 @@ def poijobs = [ ], [ name: 'POI-DSL-Windows-1.21', jdk: '1.21', trigger: 'H */12 * * *', windows: true, slaves: 'Windows', skipcigame: true ], - [ name: 'POI-DSL-Windows-1.22', jdk: '1.22', trigger: triggerSundays, windows: true, slaves: 'Windows', skipcigame: true + [ name: 'POI-DSL-Windows-1.22', jdk: '1.22', trigger: triggerSundays, windows: true, slaves: 'Windows', skipcigame: true, + // issues with jacoco and Gradle and this JDK + useAnt: true ], [ name: 'POI-DSL-Windows-1.23', jdk: '1.23', trigger: triggerSundays, windows: true, slaves: 'Windows', skipcigame: true, // use Ant for building until Gradle supports JDK 22 |