Skip to content

Commit fdaa27c

Browse files
authored
Add certified tag to IBM Semeru Certified runtimes (#253)
* Add `certified` tag to IBM Semeru Certified runtimes Fixes #227 * 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 ```
1 parent c61bd0f commit fdaa27c

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3636
run: |
3737
. asdf/asdf.sh
38-
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
38+
asdf plugin-test java "$GITHUB_WORKSPACE" --asdf-plugin-gitref "$GITHUB_SHA" --asdf-tool-version zulu-21.28.85 java -version
3939
- name: Check update_data.bash
4040
env:
4141
GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}

update_data.bash

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ done
5252

5353
RELEASE_QUERY='.[]
5454
| select(.file_type | IN("tar.gz", "zip"))
55-
| .["features"] = (.features | map(select(IN("musl", "javafx", "lite", "large_heap"))))
55+
| .["features"] = (.features | map(select(IN("musl", "javafx", "lite", "large_heap", "certified"))))
5656
| [([.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]
5757
| @tsv'
5858
for FILE in "${DATA_DIR}"/*.json

0 commit comments

Comments
 (0)