This is an automated email from the ASF dual-hosted git repository.
ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-bsf.git
The following commit(s) were added to refs/heads/master by this push:
new cdcfcce Add Java 24-ea as experimental builds
cdcfcce is described below
commit cdcfcce3def346c792614cee29a2e7c65a0e5196
Author: Gary Gregory <[email protected]>
AuthorDate: Mon Sep 23 09:45:33 2024 -0400
Add Java 24-ea as experimental builds
Make Java 21 and 23 normal builds
---
.github/workflows/maven.yml | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
index 83bb633..b55023f 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/maven.yml
@@ -27,12 +27,10 @@ jobs:
continue-on-error: ${{ matrix.experimental }}
strategy:
matrix:
- java: [ 8, 11, 17 ]
+ java: [ 8, 11, 17, 21, 23 ]
experimental: [false]
include:
- - java: 21
- experimental: true
- - java: 23
+ - java: 24-ea
experimental: true
steps: