This is an automated email from the ASF dual-hosted git repository.
sunlan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/groovy.git
The following commit(s) were added to refs/heads/master by this push:
new 1e13cc4ddf Exclude Java 13 and 18 build for now
1e13cc4ddf is described below
commit 1e13cc4ddfcbe3d9fb23bf23228c9aec42816e66
Author: Daniel Sun <[email protected]>
AuthorDate: Sun Jan 5 05:58:16 2025 +0900
Exclude Java 13 and 18 build for now
---
.github/workflows/groovy-build-test.yml | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/.github/workflows/groovy-build-test.yml
b/.github/workflows/groovy-build-test.yml
index 1550e9d53c..1c2e8465ac 100644
--- a/.github/workflows/groovy-build-test.yml
+++ b/.github/workflows/groovy-build-test.yml
@@ -54,7 +54,8 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
- java: [12, 13, 14, 15, 16, 18, 19, 20, 22, 23]
+# java: [12, 13, 14, 15, 16, 18, 19, 20, 22, 23]
+ java: [12, 14, 15, 16, 19, 20, 22, 23]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4