Skip to content

Commit

Permalink
Merge pull request #1055 from abelsromero/support-java-17
Browse files Browse the repository at this point in the history
  • Loading branch information
robertpanzer committed Oct 2, 2021
2 parents e6c1387 + 94a60a4 commit c4d3329
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
15 changes: 10 additions & 5 deletions .github/workflows/continuous-integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,23 +19,23 @@ jobs:
java:
- '8'
- '11'
- '16'
- '17'
os:
- ubuntu-latest
- macos-latest
exclude:
- os: macos-latest
java: '1.8'
- os: macos-latest
java: '16'
java: '17'
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 1
- uses: actions/setup-java@v2
with:
distribution: 'adopt'
distribution: 'temurin'
java-version: ${{ matrix.java }}
- name: Build
run: |
Expand All @@ -50,6 +50,13 @@ jobs:
build-windows:
name: Build on Windows
runs-on: windows-latest
strategy:
fail-fast: false
max-parallel: 2
matrix:
java:
- '11'
- '17'
steps:
- uses: actions/checkout@v2
with:
Expand All @@ -66,5 +73,3 @@ jobs:
shell: cmd
run: |
gradlew.bat -i -S check
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.0-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit c4d3329

Please sign in to comment.