Skip to content

Commit

Permalink
Add fixed JDK version and OpenJDK distro to support it (#96)
Browse files Browse the repository at this point in the history
* Include latest JDK LTS and fixed versions

* Remove 17, Gradle conflicts

* Move from adopt to temurin

* Move from temurin to zulu
  • Loading branch information
geertjanw authored Oct 3, 2021
1 parent 415508e commit 3276c69
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,17 @@ jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-18.04, macOS-latest, windows-2016]
java: [11, 11.0.3]
steps:
- uses: actions/checkout@v1
- name: set up JDK 11
uses: actions/setup-java@v2
with:
distribution: 'adopt'
java-version: 11
distribution: 'zulu'
java-version: ${{ matrix.java }}
- name: Make gradlew executable
run: chmod +x ./gradlew
- name: Build
Expand Down

0 comments on commit 3276c69

Please sign in to comment.