This is an automated email from the ASF dual-hosted git repository.
rzo1 pushed a commit to branch opennlp-1.x
in repository https://gitbox.apache.org/repos/asf/opennlp.git
The following commit(s) were added to refs/heads/opennlp-1.x by this push:
new 983cbe6ab CI: limit opennlp-1.x Java CI matrix to ubuntu-latest
983cbe6ab is described below
commit 983cbe6abfeab44a48c46068bfaca5e9cda500e2
Author: Richard Zowalla <[email protected]>
AuthorDate: Fri Jun 12 16:15:46 2026 +0200
CI: limit opennlp-1.x Java CI matrix to ubuntu-latest
Temurin publishes no arm64 macOS JDK 8, so the macos-latest job failed
at "Set up JDK 8" and fail-fast cancelled the others. Build and test on
ubuntu-latest only, matching the branch's supported environment.
---
.github/workflows/maven.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
index 44ca0a643..a9689bdcd 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/maven.yml
@@ -30,7 +30,7 @@ jobs:
continue-on-error: ${{ matrix.experimental }}
strategy:
matrix:
- os: [ubuntu-latest, macos-latest, windows-latest]
+ os: [ubuntu-latest]
java: [ 8 ]
experimental: [false]