Skip to content

Commit

Permalink
build(ci): add JDK 11 to the setup-java pipeline
Browse files Browse the repository at this point in the history
This is required for the buildSrc module, since it uses "spoon" library, which is compiled for JDK11.
  • Loading branch information
SpaiR committed Aug 8, 2024
1 parent f779b13 commit e886282
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,10 @@ jobs:
- name: Setup Java
uses: actions/setup-java@v4
with:
java-version: 8
distribution: liberica
java-version: |
8
11
cache: gradle

- name: Build
Expand Down Expand Up @@ -68,8 +70,10 @@ jobs:
- name: Setup Java
uses: actions/setup-java@v4
with:
java-version: 8
distribution: liberica
java-version: |
8
11
cache: gradle

- name: Install Dependencies (for Windows build)
Expand Down Expand Up @@ -153,8 +157,10 @@ jobs:
- name: Setup Java
uses: actions/setup-java@v4
with:
java-version: 8
distribution: liberica
java-version: |
8
11
cache: gradle

- name: Download Artifacts
Expand Down

0 comments on commit e886282

Please sign in to comment.