This is an automated email from the ASF dual-hosted git repository.
rzo1 pushed a commit to branch STORM-4108-Remove-joda-time
in repository https://gitbox.apache.org/repos/asf/storm.git
The following commit(s) were added to refs/heads/STORM-4108-Remove-joda-time by
this push:
new b3d9b32a1 Disable build for Java 11 (cf. Mailing list) and build with
17 by default. Further discussion about raising the actual Java baseline to 17
are still ongoing but for now we want to save GH action compute time.
b3d9b32a1 is described below
commit b3d9b32a1bd61fa234d837f33ceb0a749eada21a
Author: Richard Zowalla <[email protected]>
AuthorDate: Mon Nov 11 20:50:04 2024 +0100
Disable build for Java 11 (cf. Mailing list) and build with 17 by default.
Further discussion about raising the actual Java baseline to 17 are still
ongoing but for now we want to save GH action compute time.
---
.github/workflows/maven.yaml | 2 +-
.github/workflows/nightlies.yaml | 2 +-
.github/workflows/snapshots.yaml | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/.github/workflows/maven.yaml b/.github/workflows/maven.yaml
index 32daaa320..e66f3265f 100644
--- a/.github/workflows/maven.yaml
+++ b/.github/workflows/maven.yaml
@@ -28,7 +28,7 @@ jobs:
strategy:
matrix:
os: [ ubuntu-latest ]
- java: [ 11, 17, 21 ]
+ java: [ 17, 21 ]
module: [ Client, Server, Core, External, Check-Updated-License-Files,
Integration-Test ]
experimental: [false]
fail-fast: false
diff --git a/.github/workflows/nightlies.yaml b/.github/workflows/nightlies.yaml
index 07ccd0cd1..6eba8e956 100644
--- a/.github/workflows/nightlies.yaml
+++ b/.github/workflows/nightlies.yaml
@@ -52,7 +52,7 @@ jobs:
uses: actions/setup-java@v4
with:
distribution: temurin
- java-version: 11
+ java-version: 17
- name: Set up Maven # We need to avoid default-http-blocker at the
moment until we fix it ;-)
uses: stCarolas/setup-maven@v5
with:
diff --git a/.github/workflows/snapshots.yaml b/.github/workflows/snapshots.yaml
index f586d4fa4..3a5ae6eb9 100644
--- a/.github/workflows/snapshots.yaml
+++ b/.github/workflows/snapshots.yaml
@@ -52,7 +52,7 @@ jobs:
uses: actions/setup-java@v4
with:
distribution: temurin
- java-version: 11
+ java-version: 17
- name: Set up Maven # We need to avoid default-http-blocker at the
moment until we fix it ;-)
uses: stCarolas/setup-maven@v5
with: