This is an automated email from the ASF dual-hosted git repository.
lprimak pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/shiro.git
The following commit(s) were added to refs/heads/main by this push:
new eeb738375 chore(build): add Semeru runtimes (#2879)
eeb738375 is described below
commit eeb7383753724117a94d775de12a43250ed0d489
Author: Lenny Primak <[email protected]>
AuthorDate: Tue Sep 8 11:36:55 2026 -0500
chore(build): add Semeru runtimes (#2879)
---
.github/workflows/maven.yml | 11 ++++-------
1 file changed, 4 insertions(+), 7 deletions(-)
diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
index e86539a03..1ca4613fd 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/maven.yml
@@ -60,24 +60,21 @@ jobs:
matrix:
os: [ 'ubuntu-latest', 'windows-latest', 'macOS-latest' ]
jdk: [ 21, 25 ]
- dist: [ 'temurin', 'adopt-openj9', 'zulu' ]
+ dist: [ 'temurin', 'semeru', 'zulu' ]
exclude:
# was already built
- os: 'ubuntu-latest'
jdk: 25
dist: 'temurin'
- # exclude temurin on MacOS. zulu (also hotspot) and OpenJ9 are
sufficient.
+ # exclude temurin on MacOS. zulu (also hotspot) and Semeru are
sufficient.
- os: 'macOS-latest'
dist: 'temurin'
# no Temurin 21
- dist: 'temurin'
jdk: 21
- # no OpenJ9 21
- - dist: adopt-openj9
+ # no Semeru 21
+ - dist: 'semeru'
jdk: 21
- # no OpenJ9 25
- - dist: adopt-openj9
- jdk: 25
fail-fast: false
runs-on: ${{ matrix.os }}