Skip to content
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
Expand Up @@ -9,6 +9,7 @@
name: Nightly Aeron Tests

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

- name: Setup Java 17
- name: Setup Java 25
uses: actions/setup-java@v5
with:
distribution: temurin
java-version: 17
java-version: 25

- name: Install sbt
uses: sbt/setup-sbt@17575ea4e18dd928fe5968dbe32294b97923d65b # v1.1.13
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 @@ -115,7 +116,8 @@ jobs:
# binary version is required and Pekko build will set the right
# full version from it.
scalaVersion: ["2.13.x", "3.3.x"]
javaVersion: [17, 21]
# temp remove 8, 11, 17, 21
javaVersion: [25]
env:
DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }}
steps:
Expand Down
Loading