Skip to content

Commit

Permalink
Using TCK Tested JDK builds of OpenJDK (#2293)
Browse files Browse the repository at this point in the history
The AdoptOpenJDK has been discontinued since July 2021 (https://adoptopenjdk.net). Switching the distribution to Azul Zulu. When using Zulu you get all the latest updated (TCK Tested) builds for all versions of OpenJDK.
  • Loading branch information
carldea authored Jan 15, 2022
1 parent 0084f12 commit 027e194
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,18 @@ jobs:
build:

runs-on: ubuntu-latest

strategy:
matrix:
java-version: [ 11 ]
steps:
- name: Download repository
uses: actions/checkout@v2

- name: Setup Java
- name: Setup Java ${{ matrix.java-version }}
uses: actions/setup-java@v2
with:
distribution: 'adopt'
java-version: '11'
distribution: 'zulu'
java-version: ${{ matrix.java-version }}

- name: Build with Gradle
run: bash ./gradlew build --stacktrace
Expand Down

0 comments on commit 027e194

Please sign in to comment.