From e9e71b7a68b40ab4a064543bb8aa3f32147b5cf0 Mon Sep 17 00:00:00 2001 From: Jochen Schalanda Date: Wed, 4 Jun 2025 13:57:55 +0200 Subject: [PATCH 1/2] Add `certified` tag to IBM Semeru Certified runtimes Fixes #227 --- update_data.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/update_data.bash b/update_data.bash index 9aad1808..39c3b5aa 100755 --- a/update_data.bash +++ b/update_data.bash @@ -52,7 +52,7 @@ done RELEASE_QUERY='.[] | select(.file_type | IN("tar.gz", "zip")) - | .["features"] = (.features | map(select(IN("musl", "javafx", "lite", "large_heap")))) + | .["features"] = (.features | map(select(IN("musl", "javafx", "lite", "large_heap", "certified")))) | [([.vendor, if (.image_type == "jre") then .image_type else empty end, if (.jvm_impl == "openj9") then .jvm_impl else empty end, if ((.features | length) == 0) then empty else (.features | join("-")) end, .version] | join("-")), .filename, .url, .sha256] | @tsv' for FILE in "${DATA_DIR}"/*.json From 305efd5aa8efed8640ec91c00154d0835c7c675e Mon Sep 17 00:00:00 2001 From: Jochen Schalanda Date: Wed, 4 Jun 2025 14:05:48 +0200 Subject: [PATCH 2/2] Replace canary in CI pipeline The old canary wasn't available on macOS (ARM64). ``` Runner Image Image: macos-14-arm64 Version: 20250527.1547 ``` ``` Unknown release: adoptopenjdk-openj9-8.0.252+9.1.openj9-0.20.0 ``` --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index eb1790b7..2222f45b 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -35,7 +35,7 @@ jobs: GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | . asdf/asdf.sh - asdf plugin-test java "$GITHUB_WORKSPACE" --asdf-plugin-gitref "$GITHUB_SHA" --asdf-tool-version adoptopenjdk-openj9-8.0.252+9.1.openj9-0.20.0 java -version + asdf plugin-test java "$GITHUB_WORKSPACE" --asdf-plugin-gitref "$GITHUB_SHA" --asdf-tool-version zulu-21.28.85 java -version - name: Check update_data.bash env: GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}