-
Notifications
You must be signed in to change notification settings - Fork 594
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: Add JDK 21 to nightly CI build (#4338)
- Loading branch information
1 parent
f429383
commit 0fedb87
Showing
1 changed file
with
7 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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: | ||
|
@@ -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] | ||
|