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

[EXPERIMENT] test with java 23 #1534

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
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
5 changes: 3 additions & 2 deletions .github/workflows/nightly-builds-aeron.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: Nightly Aeron Tests

on:
pull_request:
schedule:
- cron: "0 0 * * *"
workflow_dispatch:
Expand All @@ -27,11 +28,11 @@ jobs:
fetch-depth: 0
fetch-tags: true

- name: Setup Java 11
- name: Setup Java 23
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 11
java-version: 23

- name: Cache Coursier cache
uses: coursier/cache-action@v6
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/nightly-builds.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: Nightly Builds

on:
pull_request:
schedule:
- cron: "0 0 * * *"
workflow_dispatch:
Expand Down Expand Up @@ -117,7 +118,8 @@ jobs:
# binary version is required and Pekko build will set the right
# full version from it.
scalaVersion: ["2.12.x", "2.13.x", "3.3.x"]
javaVersion: [8, 11, 17, 21]
# temp remove 8, 11, 17, 21
javaVersion: [23]
env:
DEVELOCITY_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }}
steps:
Expand Down
Loading