Skip to content

Commit

Permalink
build: Add JDK 21 to nightly CI build (#4338)
Browse files Browse the repository at this point in the history
  • Loading branch information
johanandren authored Nov 9, 2023
1 parent f429383 commit 0fedb87
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,17 @@ jobs:
fail-fast: false
matrix:
SCALA_VERSION: [2.13, 3.3]
JDK_VERSION: ["1.11", "1.17"]
JDK_VERSION: ["1.11", "1.17", "1.21"]
include:
- JDK_VERSION: 1.11
JVM_NAME: temurin:1.11
extraOpts: ''
- JDK_VERSION: 1.17
JVM_NAME: temurin:1.17
extraOpts: ''
- JDK_VERSION: 1.21
JVM_NAME: temurin:1.21
extraOpts: ''
AKKA_VERSION: [main, default, snapshot]

steps:
Expand All @@ -36,9 +39,11 @@ jobs:
uses: coursier/[email protected]

- name: Set up JDK ${{ matrix.JDK_VERSION }}
uses: coursier/[email protected].0
uses: coursier/[email protected].4
with:
jvm: ${{ matrix.JVM_NAME }}
# FIXME default index not giving us access to JDK 21 (yet)
jvm-index: https://raw.githubusercontent.com/coursier/jvm-index/32d659500e6c65efb9eee91718a0fb0e797ad4ee/index.json

- name: Cache Build Target
uses: actions/[email protected]
Expand Down

0 comments on commit 0fedb87

Please sign in to comment.