Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add java 21 to build matrix #738

Merged
merged 1 commit into from
Oct 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ executors:
docker:
- image: circleci/openjdk:17-buster
resource_class: small
scala_jdk21_executor:
docker:
- image: cimg/openjdk:21.0-node
resource_class: small

commands:
sbt_cmd:
Expand Down Expand Up @@ -127,6 +131,18 @@ workflows:
name: jdk17_3.x
java_version: jdk17
scala_version: 3.3.4
- scala_job:
name: jdk21_2.12.x
java_version: jdk21
scala_version: 2.12.20
- scala_job:
name: jdk21_2.13.x
java_version: jdk21
scala_version: 2.13.15
- scala_job:
name: jdk21_3.x
java_version: jdk21
scala_version: 3.3.4
- scalajs_job:
name: sjs1.0_2.12.x
scala_version: 2.12.20
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
fail-fast: false
matrix:
java: [8, 11, 17]
java: [8, 11, 17, 21]
scala: [2.12.x, 2.13.x, 3.x]
runs-on: ubuntu-latest
steps:
Expand Down