From f89b30dac3debb14f01947eb7a4a09521188a51b Mon Sep 17 00:00:00 2001 From: lprimak Date: Tue, 1 Sep 2026 14:19:28 -0500 Subject: [PATCH] chore(build): add Semeru runtimes --- .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 e86539a034..1ca4613fd6 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 }}