update the Gradle build tool to v9.0.0, JDK 17+ required to build #163
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| # GitHub Actions workflow for commits pushed to the j-ogg-all repo - all branches | |
| name: CI at GitHub | |
| on: [push] | |
| jobs: | |
| Java17-Linux: | |
| if: contains(toJson(github.event.commits), '[ci skip] ') == false | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/setup-java@v4 | |
| with: | |
| distribution: 'zulu' | |
| java-version: 17 | |
| - uses: actions/checkout@v5 | |
| - uses: gradle/actions/wrapper-validation@v4 | |
| - run: ./gradlew build install --console=plain --stacktrace | |
| Java17-MacOS: | |
| if: contains(toJson(github.event.commits), '[ci skip] ') == false | |
| runs-on: macOS-15 | |
| steps: | |
| - uses: actions/setup-java@v4 | |
| with: | |
| distribution: 'zulu' | |
| java-version: 17 | |
| - uses: actions/checkout@v5 | |
| - run: ./gradlew build install --console=plain --stacktrace | |
| Java24-Windows: | |
| if: contains(toJson(github.event.commits), '[ci skip] ') == false | |
| runs-on: windows-2025 | |
| steps: | |
| - uses: actions/setup-java@v4 | |
| with: | |
| distribution: 'zulu' | |
| java-version: 24 | |
| - uses: actions/checkout@v5 | |
| - run: ./gradlew build install --console=plain --stacktrace | |
| shell: bash |