Gradle:
Some checks failed
CI / build (11) (push) Has been cancelled
CI / build-on (17) (push) Has been cancelled
CI / build-on (21) (push) Has been cancelled
CI / build-on (25) (push) Has been cancelled
CI / build-on (8) (push) Has been cancelled
CI / snapshot (push) Has been cancelled
CI / release (push) Has been cancelled
Fonts / Fonts (inter) (push) Has been cancelled
Fonts / Fonts (jetbrains-mono) (push) Has been cancelled
Fonts / Fonts (roboto) (push) Has been cancelled
Fonts / Fonts (roboto-mono) (push) Has been cancelled
Native Libraries / Natives (macos-latest) (push) Has been cancelled
Native Libraries / Natives (ubuntu-24.04-arm) (push) Has been cancelled
Native Libraries / Natives (ubuntu-latest) (push) Has been cancelled
Native Libraries / Natives (windows-latest) (push) Has been cancelled

- always use Java toolchains
- default is Java 11 (but source/targetCompatibility is still 1.8)
- use system property `toolchain` (e.g. `-Dtoolchain=25`) to compile with other Java versions

preparation for Gradle 9.x, which requires Java 17+ to run
This commit is contained in:
Karl Tauber
2025-10-28 12:42:04 +01:00
parent 3ccaacfb00
commit 056da35758
13 changed files with 19 additions and 21 deletions

View File

@@ -36,6 +36,7 @@ jobs:
cache: gradle
- name: Check with Error Prone
if: github.repository == 'JFormDesigner/FlatLaf'
run: ./gradlew errorprone clean
- name: Build with Gradle
@@ -67,23 +68,20 @@ jobs:
- 8
- 17 # LTS
- 21 # LTS
toolchain: [""]
include:
- java: 21
toolchain: 25 # LTS
- 25 # LTS
steps:
- uses: actions/checkout@v4
- name: Setup Java ${{ matrix.java }}
- name: Setup Java 11
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java }}
distribution: temurin # Java 8, 11, 17 and 21 are pre-installed on ubuntu-latest
java-version: 11
distribution: temurin # pre-installed on ubuntu-latest
cache: gradle
- name: Build with Gradle
run: ./gradlew build -Dtoolchain=${{ matrix.toolchain }}
run: ./gradlew build -Dtoolchain=${{ matrix.java }}
snapshot: