Skip to content

Commit

Permalink
Switch builds for JDK 22 and 23 to Ant for now
Browse files Browse the repository at this point in the history
Gradle does not yet support newer JDKs

See https://docs.gradle.org/current/userguide/compatibility.html
and gradle/gradle#26162

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1915907 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
centic9 committed Feb 20, 2024
1 parent 3817f13 commit b4a2bc0
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions jenkins/create_jobs.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -107,9 +107,17 @@ 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,
// use Ant for building until Gradle supports JDK 22
// see https://docs.gradle.org/current/userguide/compatibility.html
// and https://github.com/gradle/gradle/issues/26162
useAnt: true
],
[ name: 'POI-DSL-Windows-1.23', jdk: '1.23', trigger: triggerSundays, windows: true, slaves: 'Windows', skipcigame: 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
// see https://docs.gradle.org/current/userguide/compatibility.html
// and https://github.com/gradle/gradle/issues/26162
useAnt: true
],
[ name: 'POI-DSL-Github-PullRequests', trigger: '', skipcigame: true, disabled: true
],
Expand Down

0 comments on commit b4a2bc0

Please sign in to comment.