diff --git a/.github/actions/apt-bootstrap/action.yml b/.github/actions/apt-bootstrap/action.yml index 4d06132924..906719ab15 100644 --- a/.github/actions/apt-bootstrap/action.yml +++ b/.github/actions/apt-bootstrap/action.yml @@ -30,12 +30,23 @@ inputs: description: Install packages with --no-install-recommends when set to true. required: false default: "false" + update_timeout_seconds: + description: Maximum seconds to allow each apt-get update attempt before retrying. + required: false + default: "600" + install_timeout_seconds: + description: Maximum seconds to allow each apt-get install attempt before retrying. + required: false + default: "1800" runs: using: composite steps: - name: Harden apt update and install shell: bash + env: + APT_UPDATE_TIMEOUT_SECONDS: ${{ inputs.update_timeout_seconds }} + APT_INSTALL_TIMEOUT_SECONDS: ${{ inputs.install_timeout_seconds }} run: | set -euo pipefail bash "${{ github.action_path }}/bootstrap.sh" \ diff --git a/.github/actions/apt-bootstrap/bootstrap.sh b/.github/actions/apt-bootstrap/bootstrap.sh index 93830e9982..2a5074ba5e 100644 --- a/.github/actions/apt-bootstrap/bootstrap.sh +++ b/.github/actions/apt-bootstrap/bootstrap.sh @@ -8,6 +8,8 @@ INITIAL_BACKOFF_SECONDS=5 QUIET=false UPDATE_ONLY=false NO_INSTALL_RECOMMENDS=false +APT_UPDATE_TIMEOUT_SECONDS="${APT_UPDATE_TIMEOUT_SECONDS:-600}" +APT_INSTALL_TIMEOUT_SECONDS="${APT_INSTALL_TIMEOUT_SECONDS:-1800}" while [[ $# -gt 0 ]]; do case "$1" in @@ -50,6 +52,10 @@ apt_update() { sudo apt-get clean sudo rm -rf /var/lib/apt/lists/* local cmd=( + timeout + --signal=TERM + --kill-after=60s + "${APT_UPDATE_TIMEOUT_SECONDS}s" sudo apt-get -o Acquire::Retries=3 -o Acquire::http::No-Cache=true @@ -91,6 +97,10 @@ fi read -r -a package_array <<< "$FULL_PACKAGES" install_cmd=( + timeout + --signal=TERM + --kill-after=60s + "${APT_INSTALL_TIMEOUT_SECONDS}s" sudo env DEBIAN_FRONTEND=noninteractive APT_LISTCHANGES_FRONTEND=none diff --git a/.github/actions/generic-source-regression-check/action.yml b/.github/actions/generic-source-regression-check/action.yml index e0b72d6f69..3e912d11f3 100644 --- a/.github/actions/generic-source-regression-check/action.yml +++ b/.github/actions/generic-source-regression-check/action.yml @@ -20,6 +20,10 @@ inputs: description: Manually pinned upstream tag/ref to clone for the next stable candidate required: false default: "" + pypi_package: + description: Optional PyPI distribution name to use for next-version resolution when the runnable artifact is published on PyPI. + required: false + default: "" limited_cpu_probe: description: Optional bounded Arm64 CPU/source/import/help proof script to run after the candidate source resolves. required: false @@ -80,6 +84,7 @@ runs: LANE_KIND="${{ inputs.lane_kind }}" OVERRIDE_VERSION="${{ inputs.next_version_override }}" OVERRIDE_TAG="${{ inputs.candidate_tag_override }}" + PYPI_PACKAGE="${{ inputs.pypi_package }}" LIMITED_CPU_PROBE="${INPUT_LIMITED_CPU_PROBE:-}" LIMITED_CPU_DESCRIPTION="${INPUT_LIMITED_CPU_DESCRIPTION:-A bounded CPU-side proof completed on the Arm64 runner. This is not a full specialized runtime validation.}" DEFER_ON_LIMITED_CPU_PROBE_FAILURE="${INPUT_DEFER_ON_LIMITED_CPU_PROBE_FAILURE:-false}" @@ -154,6 +159,69 @@ runs: STATUS_KIND="FOUND_OVERRIDE" LATEST_VERSION="$OVERRIDE_VERSION" CANDIDATE_TAG="$OVERRIDE_TAG" + elif [ -n "$PYPI_PACKAGE" ]; then + PIP_INDEX_OUTPUT=$(python3 -m pip index versions "$PYPI_PACKAGE" --only-binary=:all: 2>/tmp/pypi-index-error.log || true) + PYPI_RESULT=$(PIP_INDEX_OUTPUT="$PIP_INDEX_OUTPUT" python3 - "$CURRENT" "$PYPI_PACKAGE" <<'PY' + import os + import re + import sys + + current = sys.argv[1].strip() + package = sys.argv[2].strip() + output = os.environ.get("PIP_INDEX_OUTPUT", "") + pre_re = re.compile(r"(?:alpha|beta|rc|preview|pre|nightly|dev)", re.I) + + def normalize(value: str): + value = value.strip().lstrip("vV") + if pre_re.search(value): + return None + if not re.match(r"^\d+(?:[._-]\d+)*$", value): + return None + display = value + parts = tuple(int(x) for x in re.split(r"[._-]", value)) + return parts, display + + match = re.search(r"Available versions:\s*(.+)", output) + versions = [] + if match: + versions = [item.strip() for item in match.group(1).split(",") if item.strip()] + else: + # Older pip output may only print the current latest as "package (version)". + latest_match = re.search(rf"^{re.escape(package)}\s+\(([^)]+)\)", output, re.M | re.I) + if latest_match: + versions = [latest_match.group(1).strip()] + + current_norm = normalize(current) + parsed = [] + for version in versions: + norm = normalize(version) + if norm is not None: + parsed.append(norm) + + if not parsed: + print("UNRESOLVED\t\t") + raise SystemExit(0) + + parsed.sort(key=lambda item: item[0]) + latest = parsed[-1] + + if current_norm is None: + print(f"METADATA_REVIEW\t{latest[1]}\t{latest[1]}") + raise SystemExit(0) + + newer = [item for item in parsed if item[0] > current_norm[0]] + if not newer: + print(f"NONE\t{current_norm[1]}\t{current}") + raise SystemExit(0) + + candidate = newer[-1] + print(f"FOUND_PYPI\t{candidate[1]}\t{candidate[1]}") + PY + ) + + STATUS_KIND=$(printf '%s' "$PYPI_RESULT" | awk -F '\t' '{print $1}') + LATEST_VERSION=$(printf '%s' "$PYPI_RESULT" | awk -F '\t' '{print $2}') + CANDIDATE_TAG=$(printf '%s' "$PYPI_RESULT" | awk -F '\t' '{print $3}') else mapfile -t RAW_TAGS < <(git ls-remote --tags --refs "https://github.com/${REPO}.git" 2>/dev/null | awk '{print $2}' | sed 's#refs/tags/##') @@ -247,6 +315,14 @@ runs: "Automatic next-version resolution needs manual review and runtime validation is not automated" \ "The baseline version ${CURRENT} does not parse cleanly for automatic ordering, while ${REPO} exposes newer stable-looking tags such as ${LATEST_VERSION}. This workflow also does not install and execute the package on Arm64." ;; + FOUND_PYPI) + run_limited_cpu_probe "${LATEST_VERSION}" "${CANDIDATE_TAG}" || \ + emit_runtime_not_automated \ + "${LATEST_VERSION}" \ + "${LATEST_VERSION}" \ + "Next PyPI release resolved, but runtime validation is not automated" \ + "Baseline ${CURRENT} passed bounded checks. PyPI resolved ${PYPI_PACKAGE} candidate ${LATEST_VERSION}, but this workflow does not have a package-specific runtime probe configured." + ;; FOUND_OVERRIDE) rm -rf next-src if git clone --depth 1 --branch "$CANDIDATE_TAG" "https://github.com/${REPO}.git" next-src >/dev/null 2>&1; then diff --git a/.github/workflows/test-activemq.yml b/.github/workflows/test-activemq.yml index ee75755923..9d986b85a2 100644 --- a/.github/workflows/test-activemq.yml +++ b/.github/workflows/test-activemq.yml @@ -1,6 +1,7 @@ name: Test ActiveMQ on Arm64 on: + workflow_dispatch: workflow_call: outputs: contract_version: @@ -113,14 +114,10 @@ jobs: - name: Install ActiveMQ id: install run: | - set -e + set -euo pipefail echo "Installing ActiveMQ from Ubuntu packages..." - sudo apt-get update - # Install Java + ActiveMQ (classic) - sudo DEBIAN_FRONTEND=noninteractive apt-get install -y \ - default-jre-headless \ - activemq + bash .github/actions/apt-bootstrap/bootstrap.sh --packages "default-jre-headless activemq" # Find activemq binary ACTIVEMQ_BIN=$(command -v activemq || dpkg -L activemq | grep '/bin/activemq$' | head -1 || true) @@ -377,4 +374,3 @@ jobs: echo "3. Check 'activemq --help' output: ${{ steps.test3.outputs.status || 'skipped' }}" >> $GITHUB_STEP_SUMMARY echo "4. Check Java dependency: ${{ steps.test4.outputs.status || 'skipped' }}" >> $GITHUB_STEP_SUMMARY echo "5. Check ActiveMQ has configuration files under /etc: ${{ steps.test5.outputs.status || 'skipped' }}" >> $GITHUB_STEP_SUMMARY - diff --git a/.github/workflows/test-java-openjdk.yml b/.github/workflows/test-java-openjdk.yml index d286b33449..5662d780f8 100644 --- a/.github/workflows/test-java-openjdk.yml +++ b/.github/workflows/test-java-openjdk.yml @@ -142,10 +142,10 @@ jobs: - name: Install Java/OpenJDK id: install run: | + set -euo pipefail echo "Installing OpenJDK 17..." - sudo apt-get update - if sudo apt-get install -y openjdk-17-jdk; then + if bash .github/actions/apt-bootstrap/bootstrap.sh --packages "openjdk-17-jdk"; then echo "OpenJDK installed successfully" echo "install_status=success" >> $GITHUB_OUTPUT else diff --git a/.github/workflows/test-shap.yml b/.github/workflows/test-shap.yml index c3c23c146b..4c846ed595 100644 --- a/.github/workflows/test-shap.yml +++ b/.github/workflows/test-shap.yml @@ -379,6 +379,7 @@ jobs: baseline_version: ${{ steps.version.outputs.version || env.BASELINE_VERSION }} github_repo: ${{ env.GITHUB_REPO }} lane_kind: ${{ env.LANE_KIND }} + pypi_package: shap limited_cpu_probe: | python -m venv next-venv . next-venv/bin/activate diff --git a/.github/workflows/test-spacy.yml b/.github/workflows/test-spacy.yml index 1de9a22cd8..39f98f9f4b 100644 --- a/.github/workflows/test-spacy.yml +++ b/.github/workflows/test-spacy.yml @@ -79,6 +79,10 @@ jobs: permissions: contents: read actions: read + env: + SPACY_VERSION: "3.8.14" + NUMPY_CONSTRAINT: "numpy<2.0" + CLICK_CONSTRAINT: "click<9" outputs: contract_version: "2.0" @@ -121,9 +125,14 @@ jobs: python3 -m venv venv source venv/bin/activate python -m pip install --upgrade pip - python -m pip install spacy + python -m pip install "$NUMPY_CONSTRAINT" "$CLICK_CONSTRAINT" "spacy==${SPACY_VERSION}" + python -m pip check echo "$PWD/venv/bin" >> "$GITHUB_PATH" - if python -c "import spacy" >/dev/null 2>&1; then + if python - <<'PY' + import spacy + print(f"spaCy import OK: {spacy.__version__}") + PY + then echo "install_status=success" >> "$GITHUB_OUTPUT" else echo "install_status=failed" >> "$GITHUB_OUTPUT" @@ -142,7 +151,7 @@ jobs: continue-on-error: true run: | START_TIME=$(date +%s) - if python -c "import spacy" >/dev/null 2>&1; then + if python -c "import spacy; print('spaCy import OK')"; then echo "status=passed" >> "$GITHUB_OUTPUT" else echo "status=failed" >> "$GITHUB_OUTPUT" diff --git a/.github/workflows/test-wireshark.yml b/.github/workflows/test-wireshark.yml index 3a64c828e7..91388055d4 100644 --- a/.github/workflows/test-wireshark.yml +++ b/.github/workflows/test-wireshark.yml @@ -80,7 +80,7 @@ jobs: test-wireshark: runs-on: ubuntu-24.04-arm env: - WIRESHARK_VERSION: "4.6.3" + WIRESHARK_VERSION: "4.6.6" outputs: contract_version: "2.0" @@ -123,38 +123,7 @@ jobs: id: install run: | set -euo pipefail - sudo apt-get update - sudo DEBIAN_FRONTEND=noninteractive apt-get install -y \ - build-essential \ - cmake \ - ninja-build \ - flex \ - bison \ - curl \ - python3-dev \ - qt6-base-dev \ - qt6-tools-dev \ - qt6-multimedia-dev \ - libbrotli-dev \ - libc-ares-dev \ - libcap-dev \ - libgcrypt20-dev \ - libglib2.0-dev \ - libgnutls28-dev \ - libkrb5-dev \ - liblua5.4-dev \ - libmaxminddb-dev \ - libminizip-dev \ - libnghttp2-dev \ - libnl-3-dev \ - libnl-genl-3-dev \ - libpcap-dev \ - libsbc-dev \ - libsnappy-dev \ - libspeexdsp-dev \ - libssh-gcrypt-dev \ - libsystemd-dev \ - libxml2-dev + bash .github/actions/apt-bootstrap/bootstrap.sh --packages "build-essential cmake ninja-build flex bison curl python3-dev qt6-base-dev qt6-tools-dev qt6-multimedia-dev libbrotli-dev libc-ares-dev libcap-dev libgcrypt20-dev libglib2.0-dev libgnutls28-dev libkrb5-dev liblua5.4-dev libmaxminddb-dev libminizip-dev libnghttp2-dev libnl-3-dev libnl-genl-3-dev libpcap-dev libsbc-dev libsnappy-dev libspeexdsp-dev libssh-gcrypt-dev libsystemd-dev libxml2-dev" BASE_DIR="${RUNNER_TEMP}/wireshark-current" rm -rf "$BASE_DIR" diff --git a/data/test-results-index.json b/data/test-results-index.json index 3a4955d3fa..d2996cc389 100644 --- a/data/test-results-index.json +++ b/data/test-results-index.json @@ -8,7 +8,7 @@ "dashboard_link": "/linux/opensource_packages/0xffff", "job_url_resolution_status": "central_exact", "package_slug": "0xffff", - "production_refreshed_at": "2026-05-14T19:37:17.264343+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.477143+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -22,15 +22,15 @@ }, "run": { "attempt": "1", - "id": "25877367704", + "id": "26658677990", "job_name": "test-0xffff / test-0xffff", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:54Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026098" + "timestamp": "2026-05-29T19:48:03Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346133" }, "schema_version": "2.0", "tests": { @@ -39,31 +39,31 @@ "duration_seconds": 0, "name": "Test 1 - Check 0xffff binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026098#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346133#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check 0xffff version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026098#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346133#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check 0xffff help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026098#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346133#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026098#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346133#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026098#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346133#step:10:1" }, { "comparison": "Current pinned 0xFFFF version 0.9 passed smoke tests in this run. Regression validation built and executed candidate version 0.10 from source tag 0.10 on Arm64.", @@ -75,7 +75,7 @@ "next_installed_version": "0.10", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026098#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346133#step:11:1" } ], "duration_seconds": 3, @@ -93,7 +93,7 @@ "dashboard_link": "/linux/opensource_packages/5G-RAL", "job_url_resolution_status": "central_exact", "package_slug": "5G-RAL", - "production_refreshed_at": "2026-05-14T19:37:17.264702+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.477508+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -107,15 +107,15 @@ }, "run": { "attempt": "1", - "id": "25877359516", + "id": "26658670904", "job_name": "test-5g-ral / test-5g-ral", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:44Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991334" + "timestamp": "2026-05-29T19:47:53Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321794" }, "schema_version": "2.0", "tests": { @@ -124,46 +124,46 @@ "duration_seconds": 0, "name": "Test 1 - Check Library Built", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991334#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321794#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991334#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321794#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Headers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991334#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321794#step:9:1" }, { - "duration_seconds": 53, + "duration_seconds": 54, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991334#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321794#step:10:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991334#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321794#step:11:1" }, { "comparison": "Current pinned 5G RAL version armral-25.01 passed smoke tests in this run. Regression validation built and tested candidate version armral-25.04 from source tag armral-25.04 on Arm64.", "current_version": "armral-25.01", "decision": "next_install_validated", - "duration_seconds": 122, + "duration_seconds": 118, "latest_version": "armral-25.04", "name": "Test 6 - Regression Validation", "next_installed_version": "armral-25.04", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991334#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321794#step:12:1" } ], - "duration_seconds": 174, + "duration_seconds": 172, "failed": 0, "passed": 6, "skipped": 0 @@ -178,7 +178,7 @@ "dashboard_link": "/linux/opensource_packages/7-zip", "job_url_resolution_status": "central_exact", "package_slug": "7-zip", - "production_refreshed_at": "2026-05-14T19:37:17.264958+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.477743+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -190,15 +190,15 @@ }, "run": { "attempt": "1", - "id": "25877399008", + "id": "26658707245", "job_name": "test-7-zip / test-7-zip", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:34Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125634" + "timestamp": "2026-05-29T19:48:38Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445324" }, "schema_version": "2.0", "tests": { @@ -207,37 +207,37 @@ "duration_seconds": 0, "name": "Test 1 - Check 7-zip binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125634#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445324#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check 7-zip version/help command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125634#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445324#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check 7-zip help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125634#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445324#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125634#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445324#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125634#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445324#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125634#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445324#step:11:1" } ], "duration_seconds": 0, @@ -255,7 +255,7 @@ "dashboard_link": "/linux/opensource_packages/AvxToNeon", "job_url_resolution_status": "central_exact", "package_slug": "AvxToNeon", - "production_refreshed_at": "2026-05-14T19:37:17.265169+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.477940+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "no_newer_stable_available", @@ -269,15 +269,15 @@ }, "run": { "attempt": "1", - "id": "25877359516", + "id": "26658670904", "job_name": "test-avxtoneon / test-avxtoneon", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:45Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991130" + "timestamp": "2026-05-29T19:47:52Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320679" }, "schema_version": "2.0", "tests": { @@ -286,46 +286,46 @@ "duration_seconds": 0, "name": "Test 1 - Check Header Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991130#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320679#step:7:1" }, { - "duration_seconds": 1, + "duration_seconds": 2, "name": "Test 2 - Compile Simple Program", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991130#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320679#step:9:1" }, { "duration_seconds": 0, "name": "Test 3 - Run Program", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991130#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320679#step:10:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991130#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320679#step:11:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991130#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320679#step:12:1" }, { "comparison": "The current pinned AvxToNeon release 1.0.0 passed smoke tests in this run, and the upstream release feed still exposes the same version as latest. There is no newer public stable release to use for a real Test 6 upgrade validation on Arm64.", "current_version": "1.0.0", "decision": "no_newer_stable_available", - "duration_seconds": 1, + "duration_seconds": 0, "latest_version": "1.0.0", "name": "Test 6 - Regression Validation", "next_installed_version": "1.0.0", "regression_result": "No newer stable upstream release is available for Test 6", "status": "skipped", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991130#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320679#step:13:1" } ], - "duration_seconds": 1, + "duration_seconds": 2, "failed": 0, "passed": 5, "skipped": 1 @@ -340,7 +340,7 @@ "dashboard_link": "/linux/opensource_packages/CP2K", "job_url_resolution_status": "central_exact", "package_slug": "CP2K", - "production_refreshed_at": "2026-05-14T19:37:17.265378+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.478148+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -354,15 +354,15 @@ }, "run": { "attempt": "1", - "id": "25877371674", + "id": "26658681575", "job_name": "test-cp2k / test-cp2k", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:58Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031564" + "timestamp": "2026-05-29T19:48:07Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358382" }, "schema_version": "2.0", "tests": { @@ -371,46 +371,46 @@ "duration_seconds": 0, "name": "Test 1 - Check cp2k binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031564#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358382#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check exact release version", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031564#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358382#step:7:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 3 - Check cp2k help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031564#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358382#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify binary is Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031564#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358382#step:9:1" }, { "duration_seconds": 1, "name": "Test 5 - Functional validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031564#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358382#step:10:1" }, { "comparison": "Current pinned CP2K version 2023.1 passed an H2 Quickstep energy smoke in this run. Regression validation built candidate 2023.2 on Arm64, cp2k reported version 2023.2, and the same H2 fixture executed.", "current_version": "2023.1", "decision": "next_install_validated", - "duration_seconds": 593, + "duration_seconds": 574, "latest_version": "2023.2", "name": "Test 6 - Regression Validation", "next_installed_version": "2023.2", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031564#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358382#step:11:1" } ], - "duration_seconds": 595, + "duration_seconds": 575, "failed": 0, "passed": 6, "skipped": 0 @@ -425,7 +425,7 @@ "dashboard_link": "/linux/opensource_packages/Crystal-Language", "job_url_resolution_status": "central_exact", "package_slug": "Crystal-Language", - "production_refreshed_at": "2026-05-14T19:37:17.265578+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.478371+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -437,15 +437,15 @@ }, "run": { "attempt": "1", - "id": "25877406767", + "id": "26658714432", "job_name": "test-crystal-language / test-crystal-language", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:43Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155651" + "timestamp": "2026-05-29T19:48:48Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469416" }, "schema_version": "2.0", "tests": { @@ -454,40 +454,40 @@ "duration_seconds": 0, "name": "Test 1 - Check crystal binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155651#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469416#step:6:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 2 - Check crystal version", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155651#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469416#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check crystal help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155651#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469416#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155651#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469416#step:9:1" }, { - "duration_seconds": 1, + "duration_seconds": 3, "name": "Test 5 - Functional validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155651#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469416#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155651#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469416#step:11:1" } ], - "duration_seconds": 2, + "duration_seconds": 3, "failed": 0, "passed": 6, "skipped": 0 @@ -502,7 +502,7 @@ "dashboard_link": "/linux/opensource_packages/DPDK", "job_url_resolution_status": "central_exact", "package_slug": "DPDK", - "production_refreshed_at": "2026-05-14T19:37:17.265785+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.478560+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -514,15 +514,15 @@ }, "run": { "attempt": "1", - "id": "25877419588", + "id": "26658724696", "job_name": "test-dpdk / test-dpdk", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:59Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192293" + "timestamp": "2026-05-29T19:49:01Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503416" }, "schema_version": "2.0", "tests": { @@ -531,40 +531,40 @@ "duration_seconds": 0, "name": "Test 1 - Check library and headers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192293#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503416#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192293#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503416#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check pkg-config output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192293#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503416#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify architecture", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192293#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503416#step:9:1" }, { - "duration_seconds": 1, + "duration_seconds": 2, "name": "Test 5 - Functional compile and run", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192293#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503416#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192293#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503416#step:11:1" } ], - "duration_seconds": 1, + "duration_seconds": 2, "failed": 0, "passed": 6, "skipped": 0 @@ -579,7 +579,7 @@ "dashboard_link": "/linux/opensource_packages/Datree", "job_url_resolution_status": "central_exact", "package_slug": "Datree", - "production_refreshed_at": "2026-05-14T19:37:17.265997+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.478740+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -593,15 +593,15 @@ }, "run": { "attempt": "1", - "id": "25877427741", + "id": "26658731236", "job_name": "test-datree / test-datree", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:09Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218867" + "timestamp": "2026-05-29T19:49:10Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529377" }, "schema_version": "2.0", "tests": { @@ -610,31 +610,31 @@ "duration_seconds": 0, "name": "Test 1 - Check datree binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218867#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529377#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218867#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529377#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218867#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529377#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218867#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529377#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218867#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529377#step:10:1" }, { "comparison": "Current pinned Datree release tag 1.9.17 passed smoke tests in this run. Regression validation installed candidate release tag 1.9.19 on Arm64 from the versioned asset path, and the extracted binary executed successfully for both version and help output.", @@ -646,7 +646,7 @@ "next_installed_version": "1.9.19", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218867#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529377#step:11:1" } ], "duration_seconds": 1, @@ -664,7 +664,7 @@ "dashboard_link": "/linux/opensource_packages/Dgraph-Labs", "job_url_resolution_status": "central_exact", "package_slug": "Dgraph-Labs", - "production_refreshed_at": "2026-05-14T19:37:17.266243+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.478933+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -678,48 +678,48 @@ }, "run": { "attempt": "1", - "id": "25877375677", + "id": "26658685142", "job_name": "test-dgraph-labs / test-dgraph-labs", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:02Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045289" + "timestamp": "2026-05-29T19:48:10Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370467" }, "schema_version": "2.0", "tests": { "details": [ { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 1 - Check dgraph binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045289#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370467#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045289#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370467#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045289#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370467#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045289#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370467#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045289#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370467#step:10:1" }, { "comparison": "Current pinned Dgraph Labs version 24.1.0 passed smoke tests in this run. Regression validation installed candidate version 24.1.1 on Arm64, and the extracted binary reported version 24.1.1.", @@ -731,7 +731,7 @@ "next_installed_version": "24.1.1", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045289#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370467#step:11:1" } ], "duration_seconds": 1, @@ -749,7 +749,7 @@ "dashboard_link": "/linux/opensource_packages/DroneCli", "job_url_resolution_status": "central_exact", "package_slug": "DroneCli", - "production_refreshed_at": "2026-05-14T19:37:17.266448+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.479111+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -763,15 +763,15 @@ }, "run": { "attempt": "1", - "id": "25877423406", + "id": "26658727918", "job_name": "test-dronecli / test-drone", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:03Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209535" + "timestamp": "2026-05-29T19:49:05Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516064" }, "schema_version": "2.0", "tests": { @@ -780,31 +780,31 @@ "duration_seconds": 0, "name": "Test 1 - Check drone binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209535#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516064#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209535#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516064#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209535#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516064#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209535#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516064#step:9:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209535#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516064#step:10:1" }, { "comparison": "Current pinned Drone CLI release tag 1.8.0 passed smoke tests in this run. Regression validation installed candidate release tag 1.9.0 on Arm64 from the versioned asset path, and the extracted binary executed successfully for both --version and --help.", @@ -816,7 +816,7 @@ "next_installed_version": "1.9.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209535#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516064#step:11:1" } ], "duration_seconds": 0, @@ -834,7 +834,7 @@ "dashboard_link": "/linux/opensource_packages/Flume", "job_url_resolution_status": "central_exact", "package_slug": "Flume", - "production_refreshed_at": "2026-05-14T19:37:17.266679+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.479321+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -848,15 +848,15 @@ }, "run": { "attempt": "1", - "id": "25877375677", + "id": "26658685142", "job_name": "test-flume / test-flume", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:03Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045194" + "timestamp": "2026-05-29T19:48:11Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370730" }, "schema_version": "2.0", "tests": { @@ -865,46 +865,46 @@ "duration_seconds": 0, "name": "Test 1 - Check flume-ng binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045194#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370730#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Check flume version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045194#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370730#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Check flume help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045194#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370730#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045194#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370730#step:10:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation (Configuration)", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045194#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370730#step:11:1" }, { "comparison": "Current pinned Flume version 1.10.0 passed smoke tests in this run. Regression validation downloaded candidate version 1.10.1 on Arm64, and the extracted distribution exposed the official flume-ng binary plus versioned core library layout for 1.10.1. Raw version output: Flume 1.10.1 Source code repository: https://git.apache.org/repos/asf/flume.git Revision: 047516d4bd5574c3e67a5d98ca2cfe025886df7c Compiled by rgoers on Sat Aug 13 11:16:08 MST 2022 From source with checksum de1cf990338c759d311522e65597e457", "current_version": "1.10.0", "decision": "next_install_validated", - "duration_seconds": 175, + "duration_seconds": 169, "latest_version": "1.10.1", "name": "Test 6 - Regression Validation", "next_installed_version": "1.10.1", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045194#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370730#step:12:1" } ], - "duration_seconds": 175, + "duration_seconds": 169, "failed": 0, "passed": 6, "skipped": 0 @@ -919,7 +919,7 @@ "dashboard_link": "/linux/opensource_packages/H2", "job_url_resolution_status": "central_exact", "package_slug": "H2", - "production_refreshed_at": "2026-05-14T19:37:17.267008+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.479598+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -933,15 +933,15 @@ }, "run": { "attempt": "1", - "id": "25877403044", + "id": "26658710721", "job_name": "test-h2 / test-h2", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:38Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140889" + "timestamp": "2026-05-29T19:48:44Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456235" }, "schema_version": "2.0", "tests": { @@ -950,46 +950,46 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140889#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456235#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140889#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456235#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140889#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456235#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140889#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456235#step:9:1" }, { "duration_seconds": 1, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140889#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456235#step:10:1" }, { "comparison": "Current pinned H2 version 2.3.230 passed smoke tests in this run. Regression validation downloaded candidate version 2.3.232 on Arm64, the JAR manifest reported version 2.3.232, and the candidate JAR created and queried a tiny H2 database.", "current_version": "2.3.230", "decision": "next_install_validated", - "duration_seconds": 0, + "duration_seconds": 1, "latest_version": "2.3.232", "name": "Test 6 - Regression Validation", "next_installed_version": "2.3.232", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140889#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456235#step:11:1" } ], - "duration_seconds": 1, + "duration_seconds": 2, "failed": 0, "passed": 6, "skipped": 0 @@ -1004,7 +1004,7 @@ "dashboard_link": "/linux/opensource_packages/HMMER", "job_url_resolution_status": "central_exact", "package_slug": "HMMER", - "production_refreshed_at": "2026-05-14T19:37:17.267216+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.479794+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -1016,15 +1016,15 @@ }, "run": { "attempt": "1", - "id": "25877399008", + "id": "26658707245", "job_name": "test-hmmer / test-hmmer", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:32Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126185" + "timestamp": "2026-05-29T19:48:38Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445237" }, "schema_version": "2.0", "tests": { @@ -1033,37 +1033,37 @@ "duration_seconds": 0, "name": "Test 1 - Check hmmbuild binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126185#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445237#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check hmmsearch binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126185#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445237#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check hmmbuild help command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126185#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445237#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Create a simple HMM profile", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126185#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445237#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Search sequence against profile", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126185#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445237#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126185#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445237#step:11:1" } ], "duration_seconds": 0, @@ -1081,7 +1081,7 @@ "dashboard_link": "/linux/opensource_packages/Iguazio_Nuclio", "job_url_resolution_status": "central_exact", "package_slug": "Iguazio_Nuclio", - "production_refreshed_at": "2026-05-14T19:37:17.267421+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.479967+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -1093,15 +1093,15 @@ }, "run": { "attempt": "1", - "id": "25877403044", + "id": "26658710721", "job_name": "test-iguazio_nuclio / test-iguazio_nuclio", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:37Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140979" + "timestamp": "2026-05-29T19:48:44Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456376" }, "schema_version": "2.0", "tests": { @@ -1110,40 +1110,40 @@ "duration_seconds": 0, "name": "Test 1 - Check nuctl binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140979#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456376#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check nuctl version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140979#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456376#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check nuctl help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140979#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456376#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140979#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456376#step:9:1" }, { - "duration_seconds": 7, + "duration_seconds": 6, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140979#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456376#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140979#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456376#step:11:1" } ], - "duration_seconds": 7, + "duration_seconds": 6, "failed": 0, "passed": 6, "skipped": 0 @@ -1158,7 +1158,7 @@ "dashboard_link": "/linux/opensource_packages/Indigo-EPAM", "job_url_resolution_status": "central_exact", "package_slug": "Indigo-EPAM", - "production_refreshed_at": "2026-05-14T19:37:17.267604+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.480140+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -1170,15 +1170,15 @@ }, "run": { "attempt": "1", - "id": "25877392111", + "id": "26658699892", "job_name": "test-indigo-epam / test-indigo-epam", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:23Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095818" + "timestamp": "2026-05-29T19:48:30Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420503" }, "schema_version": "2.0", "tests": { @@ -1187,37 +1187,37 @@ "duration_seconds": 0, "name": "Test 1 - Check Python Import", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095818#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420503#step:6:1" }, { "duration_seconds": 1, "name": "Test 2 - Check pip metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095818#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420503#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Basic Usage Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095818#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420503#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095818#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420503#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation (Molecule Loading)", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095818#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420503#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095818#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420503#step:11:1" } ], "duration_seconds": 1, @@ -1235,7 +1235,7 @@ "dashboard_link": "/linux/opensource_packages/JAX", "job_url_resolution_status": "central_exact", "package_slug": "JAX", - "production_refreshed_at": "2026-05-14T19:37:17.267832+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.480345+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -1243,61 +1243,61 @@ }, "package": { "name": "JAX", - "version": "0.10.0" + "version": "0.10.1" }, "run": { "attempt": "1", - "id": "25877387746", + "id": "26658696365", "job_name": "test-jax / test-jax", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:17Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084134" + "timestamp": "2026-05-29T19:48:23Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407493" }, "schema_version": "2.0", "tests": { "details": [ { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 1 - Check jax binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084134#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407493#step:6:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 2 - Check jax version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084134#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407493#step:7:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 3 - Check jax help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084134#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407493#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084134#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407493#step:9:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084134#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407493#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084134#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407493#step:11:1" } ], - "duration_seconds": 1, + "duration_seconds": 2, "failed": 0, "passed": 6, "skipped": 0 @@ -1312,7 +1312,7 @@ "dashboard_link": "/linux/opensource_packages/Junit5", "job_url_resolution_status": "central_exact", "package_slug": "Junit5", - "production_refreshed_at": "2026-05-14T19:37:17.268043+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.480523+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -1324,15 +1324,15 @@ }, "run": { "attempt": "1", - "id": "25877395502", + "id": "26658703674", "job_name": "test-junit5 / test-junit5", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:26Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110101" + "timestamp": "2026-05-29T19:48:33Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432926" }, "schema_version": "2.0", "tests": { @@ -1341,40 +1341,40 @@ "duration_seconds": 0, "name": "Test 1 - Check junit5 binary/jar", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110101#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432926#step:6:1" }, { "duration_seconds": 1, "name": "Test 2 - Check junit5 engines command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110101#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432926#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check junit5 help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110101#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432926#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110101#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432926#step:9:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 5 - Functional Validation (Dummy Test)", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110101#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432926#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110101#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432926#step:11:1" } ], - "duration_seconds": 2, + "duration_seconds": 1, "failed": 0, "passed": 6, "skipped": 0 @@ -1389,7 +1389,7 @@ "dashboard_link": "/linux/opensource_packages/Kunpeng_Acceleration_Engine", "job_url_resolution_status": "central_exact", "package_slug": "Kunpeng_Acceleration_Engine", - "production_refreshed_at": "2026-05-14T19:37:17.268264+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.480692+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -1403,15 +1403,15 @@ }, "run": { "attempt": "1", - "id": "25877423406", + "id": "26658727918", "job_name": "test-kunpeng_acceleration_engine / test-kunpeng_acceleration_engine", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:00Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209435" + "timestamp": "2026-05-29T19:49:05Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516096" }, "schema_version": "2.0", "tests": { @@ -1420,46 +1420,46 @@ "duration_seconds": 0, "name": "Test 1 - Artifact Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209435#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516096#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209435#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516096#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Help Or Configuration Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209435#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516096#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209435#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516096#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209435#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516096#step:10:1" }, { "comparison": "Candidate KAE tag 2.0.4 cloned successfully on Arm64 and exposed the expected source artifacts. Accelerator runtime validation still requires real Kunpeng HPRE/SEC/ZIP hardware.", "current_version": "2.0.3", "decision": "next_install_validated", - "duration_seconds": 1, + "duration_seconds": 2, "latest_version": "2.0.4", "name": "Test 6 - Regression Validation", "next_installed_version": "2.0.4", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209435#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516096#step:11:1" } ], - "duration_seconds": 1, + "duration_seconds": 2, "failed": 0, "passed": 6, "skipped": 0 @@ -1474,7 +1474,7 @@ "dashboard_link": "/linux/opensource_packages/LZO", "job_url_resolution_status": "central_exact", "package_slug": "LZO", - "production_refreshed_at": "2026-05-14T19:37:17.268473+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.480870+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -1486,15 +1486,15 @@ }, "run": { "attempt": "1", - "id": "25877399008", + "id": "26658707245", "job_name": "test-lzo / test-lzo", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:32Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125155" + "timestamp": "2026-05-29T19:48:39Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445514" }, "schema_version": "2.0", "tests": { @@ -1503,37 +1503,37 @@ "duration_seconds": 0, "name": "Test 1 - Check lzo binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125155#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445514#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check lzo version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125155#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445514#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check lzo help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125155#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445514#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125155#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445514#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125155#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445514#step:10:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125155#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445514#step:11:1" } ], "duration_seconds": 0, @@ -1551,7 +1551,7 @@ "dashboard_link": "/linux/opensource_packages/Lachesis", "job_url_resolution_status": "central_exact", "package_slug": "Lachesis", - "production_refreshed_at": "2026-05-14T19:37:17.268672+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.481031+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -1563,15 +1563,15 @@ }, "run": { "attempt": "1", - "id": "25877419588", + "id": "26658724696", "job_name": "test-lachesis / test-lachesis", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:57Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192471" + "timestamp": "2026-05-29T19:49:01Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504010" }, "schema_version": "2.0", "tests": { @@ -1580,37 +1580,37 @@ "duration_seconds": 0, "name": "Test 1 - Check package install exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192471#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504010#step:6:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 2 - Check lachesis version metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192471#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504010#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check lachesis import", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192471#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504010#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192471#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504010#step:9:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192471#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504010#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192471#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504010#step:11:1" } ], "duration_seconds": 1, @@ -1628,7 +1628,7 @@ "dashboard_link": "/linux/opensource_packages/Neutron", "job_url_resolution_status": "central_exact", "package_slug": "Neutron", - "production_refreshed_at": "2026-05-14T19:37:17.268885+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.481197+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -1640,15 +1640,15 @@ }, "run": { "attempt": "1", - "id": "25877411197", + "id": "26658717942", "job_name": "test-neutron / test-neutron", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:49Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174519" + "timestamp": "2026-05-29T19:48:51Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478665" }, "schema_version": "2.0", "tests": { @@ -1657,37 +1657,37 @@ "duration_seconds": 0, "name": "Test 1 - Check Neutron entry points", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174519#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478665#step:6:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 2 - Check exact pinned version", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174519#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478665#step:7:1" }, { - "duration_seconds": 1, + "duration_seconds": 2, "name": "Test 3 - Check neutron-server help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174519#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478665#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174519#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478665#step:9:1" }, { "duration_seconds": 2, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174519#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478665#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174519#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478665#step:11:1" } ], "duration_seconds": 4, @@ -1705,7 +1705,7 @@ "dashboard_link": "/linux/opensource_packages/ODP", "job_url_resolution_status": "central_exact", "package_slug": "ODP", - "production_refreshed_at": "2026-05-14T19:37:17.269108+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.481410+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -1719,15 +1719,15 @@ }, "run": { "attempt": "1", - "id": "25877383844", + "id": "26658692522", "job_name": "test-odp / test-odp", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:12Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071819" + "timestamp": "2026-05-29T19:48:20Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394517" }, "schema_version": "2.0", "tests": { @@ -1736,31 +1736,31 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071819#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394517#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071819#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394517#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Configuration or Linkage", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071819#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394517#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071819#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394517#step:9:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071819#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394517#step:10:1" }, { "comparison": "Candidate OpenDataPlane 1.47.0.0 built successfully on Arm64 and the isolated installation reported version 1.47.0.0.", @@ -1772,10 +1772,10 @@ "next_installed_version": "1.47.0.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071819#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394517#step:11:1" } ], - "duration_seconds": 64, + "duration_seconds": 63, "failed": 0, "passed": 6, "skipped": 0 @@ -1790,7 +1790,7 @@ "dashboard_link": "/linux/opensource_packages/OVS", "job_url_resolution_status": "central_exact", "package_slug": "OVS", - "production_refreshed_at": "2026-05-14T19:37:17.269296+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.481600+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -1802,15 +1802,15 @@ }, "run": { "attempt": "1", - "id": "25877363365", + "id": "26658674448", "job_name": "test-ovs / test-ovs", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:48Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000717" + "timestamp": "2026-05-29T19:47:56Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334940" }, "schema_version": "2.0", "tests": { @@ -1819,37 +1819,37 @@ "duration_seconds": 0, "name": "Test 1 - Check ovs-vsctl binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000717#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334940#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check ovs version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000717#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334940#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check ovs service status (smoke check only)", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000717#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334940#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000717#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334940#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000717#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334940#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000717#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334940#step:11:1" } ], "duration_seconds": 0, @@ -1867,7 +1867,7 @@ "dashboard_link": "/linux/opensource_packages/Open-Policy-Agent", "job_url_resolution_status": "central_exact", "package_slug": "Open-Policy-Agent", - "production_refreshed_at": "2026-05-14T19:37:17.269498+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.481770+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -1881,15 +1881,15 @@ }, "run": { "attempt": "1", - "id": "25877406767", + "id": "26658714432", "job_name": "test-open-policy-agent / test-open-policy-agent", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:43Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155439" + "timestamp": "2026-05-29T19:48:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469541" }, "schema_version": "2.0", "tests": { @@ -1898,46 +1898,46 @@ "duration_seconds": 0, "name": "Test 1 - Check OPA binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155439#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469541#step:6:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 2 - Check version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155439#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469541#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155439#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469541#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155439#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469541#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155439#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469541#step:10:1" }, { "comparison": "Candidate OPA 1.14.1 downloaded successfully on Arm64 and the static binary reported version 1.14.1.", "current_version": "1.2.0", "decision": "next_install_validated", - "duration_seconds": 0, + "duration_seconds": 1, "latest_version": "1.14.1", "name": "Test 6 - Regression Validation", "next_installed_version": "1.14.1", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155439#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469541#step:11:1" } ], - "duration_seconds": 0, + "duration_seconds": 1, "failed": 0, "passed": 6, "skipped": 0 @@ -1952,7 +1952,7 @@ "dashboard_link": "/linux/opensource_packages/OpenEBS", "job_url_resolution_status": "central_exact", "package_slug": "OpenEBS", - "production_refreshed_at": "2026-05-14T19:37:17.269713+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.481943+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -1966,15 +1966,15 @@ }, "run": { "attempt": "1", - "id": "25877363365", + "id": "26658674448", "job_name": "test-openebs / test-openebs", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:47Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000735" + "timestamp": "2026-05-29T19:47:58Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334848" }, "schema_version": "2.0", "tests": { @@ -1983,43 +1983,43 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000735#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334848#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000735#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334848#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Configuration Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000735#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334848#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000735#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334848#step:9:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000735#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334848#step:10:1" }, { "comparison": "Candidate OpenEBS chart 3.9.0 downloaded successfully on Arm64 and exposed appVersion 3.9.0; template rendering also succeeded.", "current_version": "3.8.0", "decision": "next_install_validated", - "duration_seconds": 0, + "duration_seconds": 1, "latest_version": "3.9.0", "name": "Test 6 - Regression Validation", "next_installed_version": "3.9.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000735#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334848#step:11:1" } ], "duration_seconds": 1, @@ -2037,7 +2037,7 @@ "dashboard_link": "/linux/opensource_packages/OpenH264", "job_url_resolution_status": "central_exact", "package_slug": "OpenH264", - "production_refreshed_at": "2026-05-14T19:37:17.269944+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.482114+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -2051,15 +2051,15 @@ }, "run": { "attempt": "1", - "id": "25877367704", + "id": "26658677990", "job_name": "test-openh264 / test-openh264", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:59Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027039" + "timestamp": "2026-05-29T19:48:03Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347072" }, "schema_version": "2.0", "tests": { @@ -2068,46 +2068,46 @@ "duration_seconds": 0, "name": "Test 1 - Check encoder and decoder binaries exist", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027039#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347072#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check versioned library install", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027039#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347072#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027039#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347072#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027039#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347072#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027039#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347072#step:10:1" }, { "comparison": "Candidate OpenH264 2.6.0 built successfully on Arm64 and exposed the expected encoder, decoder, and versioned shared library.", "current_version": "2.5.1", "decision": "next_install_validated", - "duration_seconds": 13, + "duration_seconds": 12, "latest_version": "2.6.0", "name": "Test 6 - Regression Validation", "next_installed_version": "2.6.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027039#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347072#step:11:1" } ], - "duration_seconds": 13, + "duration_seconds": 12, "failed": 0, "passed": 6, "skipped": 0 @@ -2122,7 +2122,7 @@ "dashboard_link": "/linux/opensource_packages/R", "job_url_resolution_status": "central_exact", "package_slug": "R", - "production_refreshed_at": "2026-05-14T19:37:17.270138+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.482301+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -2136,15 +2136,15 @@ }, "run": { "attempt": "1", - "id": "25877383844", + "id": "26658692522", "job_name": "test-r / test-r", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:11Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071538" + "timestamp": "2026-05-29T19:48:19Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394378" }, "schema_version": "2.0", "tests": { @@ -2153,46 +2153,46 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071538#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394378#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071538#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394378#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071538#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394378#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071538#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394378#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071538#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394378#step:10:1" }, { "comparison": "Current pinned R version 4.4.2 passed smoke tests in this run. Regression validation built and installed candidate source release 4.4.3 on Arm64, and the isolated binary reported version 4.4.3.", "current_version": "4.4.2", "decision": "next_install_validated", - "duration_seconds": 169, + "duration_seconds": 165, "latest_version": "4.4.3", "name": "Test 6 - Regression Validation", "next_installed_version": "4.4.3", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071538#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394378#step:11:1" } ], - "duration_seconds": 169, + "duration_seconds": 165, "failed": 0, "passed": 6, "skipped": 0 @@ -2207,7 +2207,7 @@ "dashboard_link": "/linux/opensource_packages/RKE", "job_url_resolution_status": "central_exact", "package_slug": "RKE", - "production_refreshed_at": "2026-05-14T19:37:17.270356+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.482494+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -2221,15 +2221,15 @@ }, "run": { "attempt": "1", - "id": "25877411197", + "id": "26658717942", "job_name": "test-rke / test-rke", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:49Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174597" + "timestamp": "2026-05-29T19:48:51Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478588" }, "schema_version": "2.0", "tests": { @@ -2238,31 +2238,31 @@ "duration_seconds": 0, "name": "Test 1 - Check rke binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174597#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478588#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check rke version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174597#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478588#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check rke help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174597#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478588#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174597#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478588#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174597#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478588#step:10:1" }, { "comparison": "Current pinned Rancher Kubernetes Engine (RKE) version 1.8.0 passed smoke tests in this run. Regression validation installed candidate version 1.8.1 on Arm64, and the installed binary reported version 1.8.1.", @@ -2274,7 +2274,7 @@ "next_installed_version": "1.8.1", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174597#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478588#step:11:1" } ], "duration_seconds": 1, @@ -2292,7 +2292,7 @@ "dashboard_link": "/linux/opensource_packages/Redundans", "job_url_resolution_status": "central_exact", "package_slug": "Redundans", - "production_refreshed_at": "2026-05-14T19:37:17.270587+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.482673+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -2306,15 +2306,15 @@ }, "run": { "attempt": "1", - "id": "25877371674", + "id": "26658681575", "job_name": "test-redundans / test-redundans", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:02Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031513" + "timestamp": "2026-05-29T19:48:07Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358603" }, "schema_version": "2.0", "tests": { @@ -2323,31 +2323,31 @@ "duration_seconds": 0, "name": "Test 1 - Check main script exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031513#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358603#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check binary folder content", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031513#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358603#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help output (source script)", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031513#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358603#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031513#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358603#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031513#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358603#step:10:1" }, { "comparison": "Current pinned Redundans version v1.01 passed smoke tests in this run. Regression validation cloned and exercised candidate version v2.00 from source tag v2.00 on Arm64.", @@ -2359,7 +2359,7 @@ "next_installed_version": "v2.00", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031513#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358603#step:11:1" } ], "duration_seconds": 1, @@ -2377,7 +2377,7 @@ "dashboard_link": "/linux/opensource_packages/RoaringBitmap", "job_url_resolution_status": "central_exact", "package_slug": "RoaringBitmap", - "production_refreshed_at": "2026-05-14T19:37:17.270788+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.482848+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -2391,15 +2391,15 @@ }, "run": { "attempt": "1", - "id": "25877415436", + "id": "26658721315", "job_name": "test-roaringbitmap / test-roaringbitmap", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:54Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180750" + "timestamp": "2026-05-29T19:48:56Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491803" }, "schema_version": "2.0", "tests": { @@ -2408,43 +2408,43 @@ "duration_seconds": 0, "name": "Test 1 - Check JAR Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180750#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491803#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Versioned Artifact Coordinate", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180750#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491803#step:7:1" }, { - "duration_seconds": 2, + "duration_seconds": 1, "name": "Test 3 - Compile Java Smoke Program", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180750#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491803#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180750#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491803#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180750#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491803#step:10:1" }, { "comparison": "Current pinned RoaringBitmap version 1.3.0 passed bitmap compile/runtime smoke tests in this run. Regression validation downloaded candidate version 1.6.13 from Maven Central on Arm64, compiled the same bitmap cardinality smoke against the candidate JAR, and ran it successfully.", "current_version": "1.3.0", "decision": "next_install_validated", - "duration_seconds": 0, + "duration_seconds": 1, "latest_version": "1.6.13", "name": "Test 6 - Regression Validation", "next_installed_version": "1.6.13", "regression_result": "Next version installed and ran successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180750#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491803#step:11:1" } ], "duration_seconds": 2, @@ -2462,7 +2462,7 @@ "dashboard_link": "/linux/opensource_packages/SAS-Kernel", "job_url_resolution_status": "central_exact", "package_slug": "SAS-Kernel", - "production_refreshed_at": "2026-05-14T19:37:17.270966+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.483024+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -2474,15 +2474,15 @@ }, "run": { "attempt": "1", - "id": "25877423406", + "id": "26658727918", "job_name": "test-sas-kernel / test-sas-kernel", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:05Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209676" + "timestamp": "2026-05-29T19:49:08Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515985" }, "schema_version": "2.0", "tests": { @@ -2491,37 +2491,37 @@ "duration_seconds": 0, "name": "Test 1 - Check sas-kernel binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209676#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515985#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check sas-kernel version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209676#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515985#step:7:1" }, { "duration_seconds": 1, "name": "Test 3 - Check sas-kernel help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209676#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515985#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209676#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515985#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209676#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515985#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209676#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515985#step:11:1" } ], "duration_seconds": 1, @@ -2539,7 +2539,7 @@ "dashboard_link": "/linux/opensource_packages/Split-Python-SDK", "job_url_resolution_status": "central_exact", "package_slug": "Split-Python-SDK", - "production_refreshed_at": "2026-05-14T19:37:17.271171+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.483184+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -2551,54 +2551,54 @@ }, "run": { "attempt": "1", - "id": "25877403044", + "id": "26658710721", "job_name": "test-split-python-sdk / test-split-python-sdk", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:37Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048139858" + "timestamp": "2026-05-29T19:48:42Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455621" }, "schema_version": "2.0", "tests": { "details": [ { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 1 - Check module import", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048139858#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455621#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check pip package info", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048139858#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455621#step:7:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 3 - Check Class Import", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048139858#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455621#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048139858#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455621#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048139858#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455621#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048139858#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455621#step:11:1" } ], "duration_seconds": 1, @@ -2616,7 +2616,7 @@ "dashboard_link": "/linux/opensource_packages/TiDB", "job_url_resolution_status": "central_exact", "package_slug": "TiDB", - "production_refreshed_at": "2026-05-14T19:37:17.271430+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.483462+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -2630,63 +2630,63 @@ }, "run": { "attempt": "1", - "id": "25877383844", + "id": "26658692522", "job_name": "test-tidb / test-tidb", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:11Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071823" + "timestamp": "2026-05-29T19:48:20Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394558" }, "schema_version": "2.0", "tests": { "details": [ { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 1 - Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071823#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394558#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071823#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394558#step:7:1" }, { - "duration_seconds": 2, + "duration_seconds": 3, "name": "Test 3 - Configuration Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071823#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394558#step:8:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071823#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394558#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071823#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394558#step:10:1" }, { "comparison": "Current pinned TiDB image v7.5.5 passed smoke tests in this run. Regression validation pulled candidate image v7.5.6 on Arm64, and /tidb-server -V reported v7.5.6.", "current_version": "v7.5.5", "decision": "next_install_validated", - "duration_seconds": 13, + "duration_seconds": 15, "latest_version": "v7.5.6", "name": "Test 6 - Regression Validation", "next_installed_version": "v7.5.6", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071823#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394558#step:11:1" } ], - "duration_seconds": 16, + "duration_seconds": 18, "failed": 0, "passed": 6, "skipped": 0 @@ -2701,7 +2701,7 @@ "dashboard_link": "/linux/opensource_packages/VVenC", "job_url_resolution_status": "central_exact", "package_slug": "VVenC", - "production_refreshed_at": "2026-05-14T19:37:17.271631+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.483645+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -2715,15 +2715,15 @@ }, "run": { "attempt": "1", - "id": "25877415436", + "id": "26658721315", "job_name": "test-vvenc / test-vvenc", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:51Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180973" + "timestamp": "2026-05-29T19:48:57Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491886" }, "schema_version": "2.0", "tests": { @@ -2732,46 +2732,46 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180973#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491886#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180973#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491886#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180973#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491886#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180973#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491886#step:9:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180973#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491886#step:10:1" }, { "comparison": "Current pinned VVenC version 1.13.1 passed smoke tests in this run. Regression validation built and exercised candidate version 1.14.0 from source tag v1.14.0 on Arm64.", "current_version": "1.13.1", "decision": "next_install_validated", - "duration_seconds": 130, + "duration_seconds": 124, "latest_version": "1.14.0", "name": "Test 6 - Regression Validation", "next_installed_version": "1.14.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180973#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491886#step:11:1" } ], - "duration_seconds": 131, + "duration_seconds": 124, "failed": 0, "passed": 6, "skipped": 0 @@ -2786,7 +2786,7 @@ "dashboard_link": "/linux/opensource_packages/Zipkin", "job_url_resolution_status": "central_exact", "package_slug": "Zipkin", - "production_refreshed_at": "2026-05-14T19:37:17.271856+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.483821+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -2798,15 +2798,15 @@ }, "run": { "attempt": "1", - "id": "25877383844", + "id": "26658692522", "job_name": "test-zipkin / test-zipkin", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:12Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071572" + "timestamp": "2026-05-29T19:48:19Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394397" }, "schema_version": "2.0", "tests": { @@ -2815,37 +2815,37 @@ "duration_seconds": 0, "name": "Test 1 - Check JAR Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071572#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394397#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Versioned Artifact Download", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071572#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394397#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check JAR Readability", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071572#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394397#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071572#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394397#step:9:1" }, { "duration_seconds": 8, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071572#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394397#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071572#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394397#step:11:1" } ], "duration_seconds": 6, @@ -2863,7 +2863,7 @@ "dashboard_link": "/linux/opensource_packages/abyss", "job_url_resolution_status": "central_exact", "package_slug": "abyss", - "production_refreshed_at": "2026-05-14T19:37:17.272065+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.483993+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -2875,15 +2875,15 @@ }, "run": { "attempt": "1", - "id": "25877355625", + "id": "26658667828", "job_name": "test-abyss / test-abyss", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:37Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976400" + "timestamp": "2026-05-29T19:47:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308676" }, "schema_version": "2.0", "tests": { @@ -2892,37 +2892,37 @@ "duration_seconds": 0, "name": "Test 1 - Check abyss-pe binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976400#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308676#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check ABySS tool version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976400#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308676#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check ABySS tool help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976400#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308676#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976400#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308676#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976400#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308676#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976400#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308676#step:11:1" } ], "duration_seconds": 0, @@ -2940,7 +2940,7 @@ "dashboard_link": "/linux/opensource_packages/accumulo", "job_url_resolution_status": "central_exact", "package_slug": "accumulo", - "production_refreshed_at": "2026-05-14T19:37:17.272284+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.484159+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -2954,15 +2954,15 @@ }, "run": { "attempt": "1", - "id": "25877355625", + "id": "26658667828", "job_name": "test-accumulo / test-accumulo", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:38Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976572" + "timestamp": "2026-05-29T19:47:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308963" }, "schema_version": "2.0", "tests": { @@ -2971,46 +2971,46 @@ "duration_seconds": 0, "name": "Test 1 - Check accumulo binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976572#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308963#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check 'accumulo version' reachability", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976572#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308963#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check 'accumulo help' reachability", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976572#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308963#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Check accumulo-util helper exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976572#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308963#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Check 'accumulo classpath' reachability", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976572#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308963#step:10:1" }, { "comparison": "Current pinned Apache Accumulo version 2.1.4 passed smoke tests in this run. Regression validation downloaded candidate version 3.0.0 on Arm64, and the extracted versioned binary distribution path validated candidate version 3.0.0 on Arm64.", "current_version": "2.1.4", "decision": "next_install_validated", - "duration_seconds": 27, + "duration_seconds": 51, "latest_version": "3.0.0", "name": "Test 6 - Regression Validation", "next_installed_version": "3.0.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976572#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308963#step:11:1" } ], - "duration_seconds": 27, + "duration_seconds": 51, "failed": 0, "passed": 6, "skipped": 0 @@ -3025,7 +3025,7 @@ "dashboard_link": "/linux/opensource_packages/ace", "job_url_resolution_status": "central_exact", "package_slug": "ace", - "production_refreshed_at": "2026-05-14T19:37:17.272486+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.484352+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -3039,15 +3039,15 @@ }, "run": { "attempt": "1", - "id": "25877355625", + "id": "26658667828", "job_name": "test-ace / test-ace", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:39Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976539" + "timestamp": "2026-05-29T19:47:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308749" }, "schema_version": "2.0", "tests": { @@ -3056,31 +3056,31 @@ "duration_seconds": 0, "name": "Test 1 - Check Library Entry Point", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976539#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308749#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976539#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308749#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Package Metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976539#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308749#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976539#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308749#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976539#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308749#step:10:1" }, { "comparison": "Current pinned ACE version 1.39.1 passed smoke tests in this run. Regression validation downloaded candidate version 1.40.0 on Arm64, and the extracted package metadata reported version 1.40.0.", @@ -3092,7 +3092,7 @@ "next_installed_version": "1.40.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976539#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308749#step:11:1" } ], "duration_seconds": 1, @@ -3110,7 +3110,7 @@ "dashboard_link": "/linux/opensource_packages/acl", "job_url_resolution_status": "central_exact", "package_slug": "acl", - "production_refreshed_at": "2026-05-14T19:37:17.272723+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.484526+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -3124,15 +3124,15 @@ }, "run": { "attempt": "1", - "id": "25877355625", + "id": "26658667828", "job_name": "test-acl / test-acl", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:39Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976611" + "timestamp": "2026-05-29T19:47:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309090" }, "schema_version": "2.0", "tests": { @@ -3141,46 +3141,46 @@ "duration_seconds": 0, "name": "Test 1 - Check acl binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976611#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309090#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check acl version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976611#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309090#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check ACL headers/libs installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976611#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309090#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976611#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309090#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976611#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309090#step:10:1" }, { "comparison": "Current pinned ACL version 3.6.5 passed smoke tests in this run. Regression validation built and installed candidate version 3.6.6 from source tag v3.6.6 into an isolated Arm64 staging prefix.", "current_version": "3.6.5", "decision": "next_install_validated", - "duration_seconds": 61, + "duration_seconds": 57, "latest_version": "3.6.6", "name": "Test 6 - Regression Validation", "next_installed_version": "3.6.6", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976611#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309090#step:11:1" } ], - "duration_seconds": 61, + "duration_seconds": 57, "failed": 0, "passed": 6, "skipped": 0 @@ -3195,7 +3195,7 @@ "dashboard_link": "/linux/opensource_packages/activemq", "job_url_resolution_status": "central_exact", "package_slug": "activemq", - "production_refreshed_at": "2026-05-14T19:37:17.272957+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.484694+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -3207,15 +3207,15 @@ }, "run": { "attempt": "1", - "id": "25877355625", + "id": "26658667828", "job_name": "test-activemq / test-activemq", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:37Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976453" + "timestamp": "2026-05-29T19:47:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308837" }, "schema_version": "2.0", "tests": { @@ -3224,37 +3224,37 @@ "duration_seconds": 0, "name": "Test 1 - Check activemq binary exists and is executable", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976453#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308837#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check ActiveMQ package is installed (dpkg status)", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976453#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308837#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check 'activemq --help' output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976453#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308837#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Check Java dependency", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976453#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308837#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Check ActiveMQ has configuration files under /etc", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976453#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308837#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976453#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308837#step:11:1" } ], "duration_seconds": 0, @@ -3272,7 +3272,7 @@ "dashboard_link": "/linux/opensource_packages/adoptopenjdk", "job_url_resolution_status": "central_exact", "package_slug": "adoptopenjdk", - "production_refreshed_at": "2026-05-14T19:37:17.273160+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.484857+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -3286,15 +3286,15 @@ }, "run": { "attempt": "1", - "id": "25877355625", + "id": "26658667828", "job_name": "test-adoptopenjdk / test-adoptopenjdk", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:38Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976672" + "timestamp": "2026-05-29T19:47:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308671" }, "schema_version": "2.0", "tests": { @@ -3303,43 +3303,43 @@ "duration_seconds": 0, "name": "Test 1 - Check java binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976672#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308671#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check javac binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976672#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308671#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check java -version output includes 21", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976672#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308671#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Compile and run HelloWorld", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976672#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308671#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976672#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308671#step:10:1" }, { "comparison": "Baseline JDK 21 passed Tests 1-5. Regression validation installed Adoptium JDK 22 on Arm64 and verified compile/run using the candidate JDK binaries.", "current_version": "21", "decision": "next_install_validated", - "duration_seconds": 5, + "duration_seconds": 4, "latest_version": "22", "name": "Test 6 - Regression Validation", "next_installed_version": "22", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976672#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308671#step:11:1" } ], "duration_seconds": 0, @@ -3357,7 +3357,7 @@ "dashboard_link": "/linux/opensource_packages/aerospike", "job_url_resolution_status": "central_exact", "package_slug": "aerospike", - "production_refreshed_at": "2026-05-14T19:37:17.273367+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.485035+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -3369,15 +3369,15 @@ }, "run": { "attempt": "1", - "id": "25877355625", + "id": "26658667828", "job_name": "test-aerospike / test-aerospike", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:37Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976756" + "timestamp": "2026-05-29T19:47:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309011" }, "schema_version": "2.0", "tests": { @@ -3386,37 +3386,37 @@ "duration_seconds": 0, "name": "Test 1 - Check binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976756#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309011#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976756#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309011#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976756#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309011#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Check configuration file", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976756#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309011#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Validate Config (Dry Run)", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976756#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309011#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976756#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309011#step:11:1" } ], "duration_seconds": 0, @@ -3434,7 +3434,7 @@ "dashboard_link": "/linux/opensource_packages/airflow", "job_url_resolution_status": "central_exact", "package_slug": "airflow", - "production_refreshed_at": "2026-05-14T19:37:17.273547+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.485204+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -3446,15 +3446,15 @@ }, "run": { "attempt": "1", - "id": "25877355625", + "id": "26658667828", "job_name": "test-airflow / test-airflow", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:37Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976999" + "timestamp": "2026-05-29T19:47:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308762" }, "schema_version": "2.0", "tests": { @@ -3463,37 +3463,37 @@ "duration_seconds": 1, "name": "Test 1 - Check Version Command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976999#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308762#step:7:1" }, { "duration_seconds": 3, "name": "Test 2 - Initialize Database", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976999#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308762#step:8:1" }, { "duration_seconds": 1, "name": "Test 3 - Check Config List", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976999#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308762#step:9:1" }, { - "duration_seconds": 2, + "duration_seconds": 3, "name": "Test 4 - Create User", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976999#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308762#step:10:1" }, { - "duration_seconds": 10, + "duration_seconds": 9, "name": "Test 5 - Start Webserver and Check Health", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976999#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308762#step:11:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976999#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308762#step:12:1" } ], "duration_seconds": 17, @@ -3511,7 +3511,7 @@ "dashboard_link": "/linux/opensource_packages/akka", "job_url_resolution_status": "central_exact", "package_slug": "akka", - "production_refreshed_at": "2026-05-14T19:37:17.273775+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.485398+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -3525,15 +3525,15 @@ }, "run": { "attempt": "1", - "id": "25877355625", + "id": "26658667828", "job_name": "test-akka / test-akka", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:37Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976555" + "timestamp": "2026-05-29T19:47:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308818" }, "schema_version": "2.0", "tests": { @@ -3542,46 +3542,46 @@ "duration_seconds": 0, "name": "Test 1 - Check Akka JAR exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976555#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308818#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Java version", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976555#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308818#step:7:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 3 - Verify JAR content (basic check)", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976555#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308818#step:8:1" }, { - "duration_seconds": 2, + "duration_seconds": 1, "name": "Test 4 - Simple Classpath Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976555#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308818#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976555#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308818#step:10:1" }, { "comparison": "Current pinned Akka version 2.7.1 passed smoke tests in this run. Regression validation downloaded the Scala 2.13 candidate artifact 2.8.0 on Arm64, and the JAR exposed akka.actor classes.", "current_version": "2.7.1", "decision": "next_install_validated", - "duration_seconds": 0, + "duration_seconds": 1, "latest_version": "2.8.0", "name": "Test 6 - Regression Validation", "next_installed_version": "2.8.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976555#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308818#step:11:1" } ], - "duration_seconds": 3, + "duration_seconds": 2, "failed": 0, "passed": 6, "skipped": 0 @@ -3596,7 +3596,7 @@ "dashboard_link": "/linux/opensource_packages/albumentations", "job_url_resolution_status": "central_exact", "package_slug": "albumentations", - "production_refreshed_at": "2026-05-14T19:37:17.273979+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.485571+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -3610,15 +3610,15 @@ }, "run": { "attempt": "1", - "id": "25877355625", + "id": "26658667828", "job_name": "test-albumentations / test-albumentations", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:37Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976918" + "timestamp": "2026-05-29T19:47:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308821" }, "schema_version": "2.0", "tests": { @@ -3627,46 +3627,46 @@ "duration_seconds": 0, "name": "Test 1 - Package installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976918#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308821#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Version metadata matches baseline", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976918#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308821#step:8:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 3 - Installed files metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976918#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308821#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976918#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308821#step:10:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976918#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308821#step:11:1" }, { "comparison": "Current pinned package version 0.0.2 passed smoke tests in this run, and the newer stable PyPI candidate 0.0.3 installed successfully on Arm64.", "current_version": "0.0.2", "decision": "next_install_validated", - "duration_seconds": 20, + "duration_seconds": 22, "latest_version": "0.0.3", "name": "Test 6 - Regression Validation", "next_installed_version": "0.0.3", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976918#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308821#step:12:1" } ], - "duration_seconds": 20, + "duration_seconds": 22, "failed": 0, "passed": 6, "skipped": 0 @@ -3681,7 +3681,7 @@ "dashboard_link": "/linux/opensource_packages/alertmanager", "job_url_resolution_status": "central_exact", "package_slug": "alertmanager", - "production_refreshed_at": "2026-05-14T19:37:17.274191+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.485748+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -3695,15 +3695,15 @@ }, "run": { "attempt": "1", - "id": "25877403044", + "id": "26658710721", "job_name": "test-alertmanager / test-alertmanager", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:37Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140529" + "timestamp": "2026-05-29T19:48:43Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456408" }, "schema_version": "2.0", "tests": { @@ -3712,31 +3712,31 @@ "duration_seconds": 0, "name": "Test 1 - Check alertmanager binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140529#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456408#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check alertmanager version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140529#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456408#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check alertmanager help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140529#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456408#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140529#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456408#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140529#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456408#step:10:1" }, { "comparison": "Current pinned Alertmanager version 0.28.1 passed smoke tests in this run. Regression validation installed candidate version 0.29.0 on Arm64, and the installed binary reported version 0.29.0.", @@ -3748,7 +3748,7 @@ "next_installed_version": "0.29.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140529#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456408#step:11:1" } ], "duration_seconds": 1, @@ -3766,7 +3766,7 @@ "dashboard_link": "/linux/opensource_packages/alfresco", "job_url_resolution_status": "central_exact", "package_slug": "alfresco", - "production_refreshed_at": "2026-05-14T19:37:17.274395+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.485921+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -3778,15 +3778,15 @@ }, "run": { "attempt": "1", - "id": "25877355625", + "id": "26658667828", "job_name": "test-alfresco / test-alfresco", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:37Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976541" + "timestamp": "2026-05-29T19:47:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309053" }, "schema_version": "2.0", "tests": { @@ -3795,40 +3795,40 @@ "duration_seconds": 0, "name": "Test 1 - Check Docker image exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976541#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309053#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Inspect Image Architecture (Verify Arm64 Support)", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976541#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309053#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Image Labels/Env", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976541#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309053#step:8:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 4 - Dry Run Container Start", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976541#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309053#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976541#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309053#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976541#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309053#step:11:1" } ], - "duration_seconds": 0, + "duration_seconds": 1, "failed": 0, "passed": 6, "skipped": 0 @@ -3843,7 +3843,7 @@ "dashboard_link": "/linux/opensource_packages/alluxio", "job_url_resolution_status": "central_exact", "package_slug": "alluxio", - "production_refreshed_at": "2026-05-14T19:37:17.274589+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.486084+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -3857,15 +3857,15 @@ }, "run": { "attempt": "1", - "id": "25877355625", + "id": "26658667828", "job_name": "test-alluxio / test-alluxio", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:37Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976414" + "timestamp": "2026-05-29T19:47:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308681" }, "schema_version": "2.0", "tests": { @@ -3874,31 +3874,31 @@ "duration_seconds": 0, "name": "Test 1 - Check binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976414#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308681#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976414#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308681#step:7:1" }, { - "duration_seconds": 1, + "duration_seconds": 2, "name": "Test 3 - Check validateEnv command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976414#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308681#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Check configuration file template", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976414#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308681#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976414#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308681#step:10:1" }, { "comparison": "Current pinned Alluxio version 2.9.4 passed smoke tests in this run. Regression validation downloaded candidate version 2.9.5 on Arm64, and the extracted distribution reported version 2.9.5.", @@ -3910,7 +3910,7 @@ "next_installed_version": "2.9.5", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976414#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308681#step:11:1" } ], "duration_seconds": 25, @@ -3928,7 +3928,7 @@ "dashboard_link": "/linux/opensource_packages/almalinux", "job_url_resolution_status": "central_exact", "package_slug": "almalinux", - "production_refreshed_at": "2026-05-14T19:37:17.274809+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.486266+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -3942,15 +3942,15 @@ }, "run": { "attempt": "1", - "id": "25877355625", + "id": "26658667828", "job_name": "test-almalinux / test-almalinux", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:37Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976774" + "timestamp": "2026-05-29T19:47:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308758" }, "schema_version": "2.0", "tests": { @@ -3959,31 +3959,31 @@ "duration_seconds": 0, "name": "Test 1 - Check Image Availability", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976774#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308758#step:6:1" }, { "duration_seconds": 1, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976774#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308758#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976774#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308758#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976774#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308758#step:9:1" }, { - "duration_seconds": 10, + "duration_seconds": 3, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976774#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308758#step:10:1" }, { "comparison": "Baseline AlmaLinux 10.0 passed Tests 1-5. Regression validation pulled candidate tag 10.1 (version 10.1) and validated package-manager functionality inside the Arm64 container.", @@ -3995,10 +3995,10 @@ "next_installed_version": "10.1", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976774#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308758#step:11:1" } ], - "duration_seconds": 17, + "duration_seconds": 10, "failed": 0, "passed": 6, "skipped": 0 @@ -4013,7 +4013,7 @@ "dashboard_link": "/linux/opensource_packages/alpine_linux", "job_url_resolution_status": "central_exact", "package_slug": "alpine_linux", - "production_refreshed_at": "2026-05-14T19:37:17.275044+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.486459+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -4027,48 +4027,48 @@ }, "run": { "attempt": "1", - "id": "25877406767", + "id": "26658714432", "job_name": "test-alpine_linux / test-alpine_linux", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:43Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154556" + "timestamp": "2026-05-29T19:48:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468605" }, "schema_version": "2.0", "tests": { "details": [ { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 1 - Check image architecture", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154556#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468605#step:6:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 2 - Check OS release file", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154556#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468605#step:7:1" }, { "duration_seconds": 1, "name": "Test 3 - Install package with apk", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154556#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468605#step:8:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 4 - Check architecture inside container", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154556#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468605#step:9:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 5 - Simple command execution", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154556#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468605#step:10:1" }, { "comparison": "Baseline Alpine Linux 3.20.10 passed the Arm64 container smoke in this run, and candidate image tag 3.21 also pulled successfully, reported VERSION_ID 3.21.7, completed in-container apk smoke, and passed architecture plus command validation on Arm64.", @@ -4080,10 +4080,10 @@ "next_installed_version": "3.21.7", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154556#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468605#step:11:1" } ], - "duration_seconds": 5, + "duration_seconds": 6, "failed": 0, "passed": 6, "skipped": 0 @@ -4098,7 +4098,7 @@ "dashboard_link": "/linux/opensource_packages/amaranth", "job_url_resolution_status": "central_exact", "package_slug": "amaranth", - "production_refreshed_at": "2026-05-14T19:37:17.275249+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.486631+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -4112,15 +4112,15 @@ }, "run": { "attempt": "1", - "id": "25877355625", + "id": "26658667828", "job_name": "test-amaranth / test-amaranth", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:37Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976911" + "timestamp": "2026-05-29T19:47:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308862" }, "schema_version": "2.0", "tests": { @@ -4129,46 +4129,46 @@ "duration_seconds": 0, "name": "Test 1 - Package installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976911#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308862#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Version metadata matches baseline", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976911#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308862#step:8:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 3 - Installed files metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976911#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308862#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976911#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308862#step:10:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976911#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308862#step:11:1" }, { "comparison": "Current pinned package version 0.3 passed smoke tests in this run, and the newer stable PyPI candidate 0.4.0 installed successfully on Arm64.", "current_version": "0.3", "decision": "next_install_validated", - "duration_seconds": 7, + "duration_seconds": 5, "latest_version": "0.4.0", "name": "Test 6 - Regression Validation", "next_installed_version": "0.4.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976911#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308862#step:12:1" } ], - "duration_seconds": 7, + "duration_seconds": 6, "failed": 0, "passed": 6, "skipped": 0 @@ -4183,7 +4183,7 @@ "dashboard_link": "/linux/opensource_packages/amazon-vpc-cni-k8s", "job_url_resolution_status": "central_exact", "package_slug": "amazon-vpc-cni-k8s", - "production_refreshed_at": "2026-05-14T19:37:17.275462+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.486814+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -4197,15 +4197,15 @@ }, "run": { "attempt": "1", - "id": "25877355625", + "id": "26658667828", "job_name": "test-amazon-vpc-cni-k8s / test-amazon-vpc-cni-k8s", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:37Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976840" + "timestamp": "2026-05-29T19:47:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308768" }, "schema_version": "2.0", "tests": { @@ -4214,31 +4214,31 @@ "duration_seconds": 0, "name": "Test 1 - Check package-specific baseline markers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976840#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308768#step:8:1" }, { "duration_seconds": 0, "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976840#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308768#step:9:1" }, { "duration_seconds": 0, "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976840#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308768#step:10:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976840#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308768#step:11:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976840#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308768#step:12:1" }, { "comparison": "Test 6 reran the scoped Amazon VPC CNI Arm preflight against the next stable source tag: Go package discovery, linux/arm64 command builds, AArch64 binary checks, and Kubernetes/CNI manifest validation. Full pod networking still requires Kubernetes plus AWS VPC/ENI infrastructure.", @@ -4250,7 +4250,7 @@ "next_installed_version": "1.6.3", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976840#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308768#step:13:1" } ], "duration_seconds": 30, @@ -4268,7 +4268,7 @@ "dashboard_link": "/linux/opensource_packages/ampere-ai-text-to-sql", "job_url_resolution_status": "central_exact", "package_slug": "ampere-ai-text-to-sql", - "production_refreshed_at": "2026-05-14T19:37:17.275672+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.486993+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "no_newer_stable_available", @@ -4282,63 +4282,63 @@ }, "run": { "attempt": "1", - "id": "25877355625", + "id": "26658667828", "job_name": "test-ampere-ai-text-to-sql / test-ampere-ai-text-to-sql", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:37Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976835" + "timestamp": "2026-05-29T19:47:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308904" }, "schema_version": "2.0", "tests": { "details": [ { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 1 - Check package-specific baseline markers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976835#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308904#step:8:1" }, { "duration_seconds": 0, "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976835#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308904#step:9:1" }, { "duration_seconds": 0, "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976835#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308904#step:10:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976835#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308904#step:11:1" }, { "duration_seconds": 1, "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976835#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308904#step:12:1" }, { "comparison": "The current version 0.1 is already the latest stable source tag we could resolve from AmpereComputingAI/ampere-ai-text2sql. Tests 1-5 remain the bounded Arm64 proof for this package; no newer candidate exists for Test 6. Compiled the next Ampere AI Text-to-SQL source candidate on the Arm64 runner and verified Text-to-SQL source identity. Full runtime remains scoped because DB, model, and service configuration are required.", "current_version": "0.1", "decision": "no_newer_stable_available", - "duration_seconds": 0, + "duration_seconds": 1, "latest_version": "0.1", "name": "Test 6 - Regression Validation", "next_installed_version": "not_installed", "regression_result": "No newer stable public release is available", "status": "skipped", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976835#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308904#step:13:1" } ], - "duration_seconds": 0, + "duration_seconds": 1, "failed": 0, "passed": 5, "skipped": 1 @@ -4353,7 +4353,7 @@ "dashboard_link": "/linux/opensource_packages/ampere-optimised-ollama", "job_url_resolution_status": "central_exact", "package_slug": "ampere-optimised-ollama", - "production_refreshed_at": "2026-05-14T19:37:17.275885+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.487170+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "no_newer_stable_available", @@ -4367,15 +4367,15 @@ }, "run": { "attempt": "1", - "id": "25877355625", + "id": "26658667828", "job_name": "test-ampere-optimised-ollama / test-ampere-optimised-ollama", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:37Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976810" + "timestamp": "2026-05-29T19:47:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308916" }, "schema_version": "2.0", "tests": { @@ -4384,31 +4384,31 @@ "duration_seconds": 0, "name": "Test 1 - Check package-specific baseline markers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976810#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308916#step:8:1" }, { "duration_seconds": 0, "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976810#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308916#step:9:1" }, { "duration_seconds": 0, "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976810#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308916#step:10:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976810#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308916#step:11:1" }, { - "duration_seconds": 1, + "duration_seconds": 2, "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976810#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308916#step:12:1" }, { "comparison": "Tests 1-5 pulled the current Ampere Optimised Ollama Arm64 image and executed ollama --version on the Arm64 runner. The visible newer tags are packaging variants of the same 1.0.0 release line rather than a newer stable application version, so there is no newer stable public release to validate here.", @@ -4420,7 +4420,7 @@ "next_installed_version": "not_installed", "regression_result": "No newer stable public release is available", "status": "skipped", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976810#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308916#step:13:1" } ], "duration_seconds": 0, @@ -4438,7 +4438,7 @@ "dashboard_link": "/linux/opensource_packages/ampere-optimized-llama", "job_url_resolution_status": "central_exact", "package_slug": "ampere-optimized-llama", - "production_refreshed_at": "2026-05-14T19:37:17.276198+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.487465+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -4452,15 +4452,15 @@ }, "run": { "attempt": "1", - "id": "25877355625", + "id": "26658667828", "job_name": "test-ampere-optimized-llama / test-ampere-optimized-llama", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:38Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047977071" + "timestamp": "2026-05-29T19:47:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308942" }, "schema_version": "2.0", "tests": { @@ -4469,46 +4469,46 @@ "duration_seconds": 0, "name": "Test 1 - Check package-specific baseline markers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047977071#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308942#step:8:1" }, { "duration_seconds": 0, "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047977071#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308942#step:9:1" }, { "duration_seconds": 0, "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047977071#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308942#step:10:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047977071#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308942#step:11:1" }, { - "duration_seconds": 10, + "duration_seconds": 7, "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047977071#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308942#step:12:1" }, { "comparison": "Test 6 reran a scoped Ampere llama.cpp Arm64 release-artifact preflight against the next stable release: downloaded the official AIO tarball, verified the included llama binaries are AArch64, and ran CLI/server help on the Arm64 runner. No source build, GGUF model inference, model quality, or performance claim is made.", "current_version": "1.2.0", "decision": "limited_cpu_smoke_validated", - "duration_seconds": 7, + "duration_seconds": 4, "latest_version": "3.4.2", "name": "Test 6 - Regression Validation", "next_installed_version": "3.4.2", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047977071#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308942#step:13:1" } ], - "duration_seconds": 7, + "duration_seconds": 4, "failed": 0, "passed": 6, "skipped": 0 @@ -4523,7 +4523,7 @@ "dashboard_link": "/linux/opensource_packages/ampere-optimized-onnx", "job_url_resolution_status": "central_exact", "package_slug": "ampere-optimized-onnx", - "production_refreshed_at": "2026-05-14T19:37:17.276410+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.487737+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -4537,15 +4537,15 @@ }, "run": { "attempt": "1", - "id": "25877355625", + "id": "26658667828", "job_name": "test-ampere-optimized-onnx / test-ampere-optimized-onnx", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:37Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976933" + "timestamp": "2026-05-29T19:47:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308978" }, "schema_version": "2.0", "tests": { @@ -4554,46 +4554,46 @@ "duration_seconds": 0, "name": "Test 1 - Check package-specific baseline markers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976933#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308978#step:8:1" }, { "duration_seconds": 0, "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976933#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308978#step:9:1" }, { "duration_seconds": 0, "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976933#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308978#step:10:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976933#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308978#step:11:1" }, { - "duration_seconds": 41, + "duration_seconds": 44, "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976933#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308978#step:12:1" }, { "comparison": "The newer stable Ampere Optimized ONNX Runtime image tag 1.12.0 was pulled for linux/arm64, imported onnxruntime, verified native library architecture, and ran a tiny CPU ONNX Add inference. This does not claim full optimized model serving.", "current_version": "1.4.0", "decision": "limited_cpu_smoke_validated", - "duration_seconds": 43, + "duration_seconds": 45, "latest_version": "1.12.0", "name": "Test 6 - Regression Validation", "next_installed_version": "1.12.0", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976933#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308978#step:13:1" } ], - "duration_seconds": 84, + "duration_seconds": 89, "failed": 0, "passed": 6, "skipped": 0 @@ -4608,7 +4608,7 @@ "dashboard_link": "/linux/opensource_packages/ampere-optimized-pytorch", "job_url_resolution_status": "central_exact", "package_slug": "ampere-optimized-pytorch", - "production_refreshed_at": "2026-05-14T19:37:17.276623+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.487962+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -4622,15 +4622,15 @@ }, "run": { "attempt": "1", - "id": "25877355625", + "id": "26658667828", "job_name": "test-ampere-optimized-pytorch / test-ampere-optimized-pytorch", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:38Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976944" + "timestamp": "2026-05-29T19:47:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308970" }, "schema_version": "2.0", "tests": { @@ -4639,46 +4639,46 @@ "duration_seconds": 0, "name": "Test 1 - Check package-specific baseline markers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976944#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308970#step:8:1" }, { "duration_seconds": 0, "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976944#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308970#step:9:1" }, { "duration_seconds": 0, "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976944#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308970#step:10:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976944#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308970#step:11:1" }, { - "duration_seconds": 32, + "duration_seconds": 33, "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976944#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308970#step:12:1" }, { "comparison": "The newer stable Ampere Optimized PyTorch image tag 1.12.1 was pulled for linux/arm64, imported torch, verified the native extension architecture, and ran a tiny CPU tensor matmul. This does not claim full optimized training or model inference.", "current_version": "1.4.0", "decision": "limited_cpu_smoke_validated", - "duration_seconds": 38, + "duration_seconds": 39, "latest_version": "1.12.1", "name": "Test 6 - Regression Validation", "next_installed_version": "1.12.1", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976944#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308970#step:13:1" } ], - "duration_seconds": 70, + "duration_seconds": 72, "failed": 0, "passed": 6, "skipped": 0 @@ -4693,7 +4693,7 @@ "dashboard_link": "/linux/opensource_packages/ampere-optimized-tensorflow", "job_url_resolution_status": "central_exact", "package_slug": "ampere-optimized-tensorflow", - "production_refreshed_at": "2026-05-14T19:37:17.276845+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.488289+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -4707,15 +4707,15 @@ }, "run": { "attempt": "1", - "id": "25877359516", + "id": "26658670904", "job_name": "test-ampere-optimized-tensorflow / test-ampere-optimized-tensorflow", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:44Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991282" + "timestamp": "2026-05-29T19:47:53Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321573" }, "schema_version": "2.0", "tests": { @@ -4724,46 +4724,46 @@ "duration_seconds": 0, "name": "Test 1 - Check package-specific baseline markers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991282#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321573#step:8:1" }, { "duration_seconds": 0, "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991282#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321573#step:9:1" }, { "duration_seconds": 0, "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991282#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321573#step:10:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991282#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321573#step:11:1" }, { - "duration_seconds": 35, + "duration_seconds": 48, "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991282#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321573#step:12:1" }, { "comparison": "The newer stable Ampere Optimized TensorFlow image tag 1.12.0 was pulled for linux/arm64, imported TensorFlow, verified native library architecture, and ran a tiny CPU matmul. This does not claim full accelerator or tuned graph validation.", "current_version": "1.4.0", "decision": "limited_cpu_smoke_validated", - "duration_seconds": 37, + "duration_seconds": 51, "latest_version": "1.12.0", "name": "Test 6 - Regression Validation", "next_installed_version": "1.12.0", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991282#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321573#step:13:1" } ], - "duration_seconds": 72, + "duration_seconds": 99, "failed": 0, "passed": 6, "skipped": 0 @@ -4778,7 +4778,7 @@ "dashboard_link": "/linux/opensource_packages/anda", "job_url_resolution_status": "central_exact", "package_slug": "anda", - "production_refreshed_at": "2026-05-14T19:37:17.277070+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.488523+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -4790,15 +4790,15 @@ }, "run": { "attempt": "1", - "id": "25877355625", + "id": "26658667828", "job_name": "test-anda / test-anda", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:37Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976545" + "timestamp": "2026-05-29T19:47:48Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308728" }, "schema_version": "2.0", "tests": { @@ -4807,37 +4807,37 @@ "duration_seconds": 0, "name": "Test 1 - Check binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976545#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308728#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976545#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308728#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976545#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308728#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Check 'build' subcommand availability", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976545#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308728#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976545#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308728#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976545#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308728#step:11:1" } ], "duration_seconds": 0, @@ -4855,7 +4855,7 @@ "dashboard_link": "/linux/opensource_packages/angularcli", "job_url_resolution_status": "central_exact", "package_slug": "angularcli", - "production_refreshed_at": "2026-05-14T19:37:17.277259+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.488705+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -4863,19 +4863,19 @@ }, "package": { "name": "Angular CLI", - "version": "21.2.11" + "version": "21.2.13" }, "run": { "attempt": "1", - "id": "25877355625", + "id": "26658667828", "job_name": "test-angularcli / test-angularcli", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:37Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976621" + "timestamp": "2026-05-29T19:47:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309032" }, "schema_version": "2.0", "tests": { @@ -4884,37 +4884,37 @@ "duration_seconds": 0, "name": "Test 1 - Check binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976621#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309032#step:6:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 2 - Check version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976621#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309032#step:7:1" }, { "duration_seconds": 1, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976621#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309032#step:8:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 4 - Create New Project (Dry Run)", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976621#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309032#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976621#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309032#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976621#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309032#step:11:1" } ], "duration_seconds": 2, @@ -4932,7 +4932,7 @@ "dashboard_link": "/linux/opensource_packages/anolis-os", "job_url_resolution_status": "central_exact", "package_slug": "anolis-os", - "production_refreshed_at": "2026-05-14T19:37:17.277469+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.488881+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -4946,15 +4946,15 @@ }, "run": { "attempt": "1", - "id": "25877355625", + "id": "26658667828", "job_name": "test-anolis-os / test-anolis-os", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:37Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976511" + "timestamp": "2026-05-29T19:47:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308949" }, "schema_version": "2.0", "tests": { @@ -4963,46 +4963,46 @@ "duration_seconds": 0, "name": "Test 1 - Check Image Architecture", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976511#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308949#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check OS Release File", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976511#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308949#step:7:1" }, { - "duration_seconds": 8, + "duration_seconds": 9, "name": "Test 3 - Install Package (yum/dnf)", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976511#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308949#step:8:1" }, { "duration_seconds": 1, "name": "Test 4 - Check Kernel/Arch inside container", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976511#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308949#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Simple Command Execution", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976511#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308949#step:10:1" }, { "comparison": "Baseline Anolis OS 23 passed the Arm64 container smoke in this run, and candidate image tag 23.4 also pulled successfully, reported VERSION_ID 23.4, completed in-container package-manager smoke, and passed architecture plus command validation on Arm64.", "current_version": "23", "decision": "next_install_validated", - "duration_seconds": 16, + "duration_seconds": 14, "latest_version": "23.4", "name": "Test 6 - Regression Validation", "next_installed_version": "23.4", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976511#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308949#step:11:1" } ], - "duration_seconds": 25, + "duration_seconds": 24, "failed": 0, "passed": 6, "skipped": 0 @@ -5017,7 +5017,7 @@ "dashboard_link": "/linux/opensource_packages/ansible", "job_url_resolution_status": "central_exact", "package_slug": "ansible", - "production_refreshed_at": "2026-05-14T19:37:17.277687+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.489055+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -5029,15 +5029,15 @@ }, "run": { "attempt": "1", - "id": "25877355625", + "id": "26658667828", "job_name": "test-ansible / test-ansible", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:37Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976536" + "timestamp": "2026-05-29T19:47:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308767" }, "schema_version": "2.0", "tests": { @@ -5046,37 +5046,37 @@ "duration_seconds": 0, "name": "Test 1 - Check Version Command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976536#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308767#step:7:1" }, { "duration_seconds": 1, "name": "Test 2 - Run Ad-hoc Ping", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976536#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308767#step:8:1" }, { "duration_seconds": 2, "name": "Test 3 - Run Simple Playbook", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976536#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308767#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify Playbook Effect", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976536#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308767#step:10:1" }, { "duration_seconds": 0, "name": "Test 5 - Check Module Documentation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976536#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308767#step:11:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976536#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308767#step:12:1" } ], "duration_seconds": 3, @@ -5094,7 +5094,7 @@ "dashboard_link": "/linux/opensource_packages/ant", "job_url_resolution_status": "central_exact", "package_slug": "ant", - "production_refreshed_at": "2026-05-14T19:37:17.277913+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.489229+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "no_newer_stable_available", @@ -5108,15 +5108,15 @@ }, "run": { "attempt": "1", - "id": "25877359516", + "id": "26658670904", "job_name": "test-ant / test-ant", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:44Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991631" + "timestamp": "2026-05-29T19:47:53Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321861" }, "schema_version": "2.0", "tests": { @@ -5125,31 +5125,31 @@ "duration_seconds": 0, "name": "Test 1 - Check package-specific baseline markers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991631#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321861#step:8:1" }, { "duration_seconds": 0, "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991631#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321861#step:9:1" }, { "duration_seconds": 0, "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991631#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321861#step:10:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991631#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321861#step:11:1" }, { "duration_seconds": 0, "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991631#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321861#step:12:1" }, { "comparison": "Tests 1-5 validated the current Ant Media Server Community Edition baseline 2.3.3.1 on Arm64 using the package source/artifact lane, and the upstream stable tag feed does not expose a newer comparable release above 2.3.3.1. No next candidate exists for an honest Test 6 install validation.", @@ -5161,7 +5161,7 @@ "next_installed_version": "not_installed", "regression_result": "No newer stable upstream release is available for Test 6", "status": "skipped", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991631#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321861#step:13:1" } ], "duration_seconds": 0, @@ -5179,7 +5179,7 @@ "dashboard_link": "/linux/opensource_packages/antlr4", "job_url_resolution_status": "central_exact", "package_slug": "antlr4", - "production_refreshed_at": "2026-05-14T19:37:17.278100+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.489438+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -5193,15 +5193,15 @@ }, "run": { "attempt": "1", - "id": "25877355625", + "id": "26658667828", "job_name": "test-antlr4 / test-antlr4", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:38Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976772" + "timestamp": "2026-05-29T19:47:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308685" }, "schema_version": "2.0", "tests": { @@ -5210,46 +5210,46 @@ "duration_seconds": 0, "name": "Test 1 - Check JAR Execution", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976772#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308685#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Create Grammar File", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976772#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308685#step:8:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 3 - Compile Grammar", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976772#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308685#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Check Generated Files", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976772#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308685#step:10:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 5 - Compile Generated Java Code", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976772#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308685#step:11:1" }, { "comparison": "Current pinned Antlr4 version 4.13.1 passed smoke tests in this run. Regression validation downloaded candidate version 4.13.2 on Arm64, and the installed artifact version 4.13.2 executed successfully.", "current_version": "4.13.1", "decision": "next_install_validated", - "duration_seconds": 0, + "duration_seconds": 1, "latest_version": "4.13.2", "name": "Test 6 - Regression Validation", "next_installed_version": "4.13.2", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976772#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308685#step:12:1" } ], - "duration_seconds": 1, + "duration_seconds": 2, "failed": 0, "passed": 6, "skipped": 0 @@ -5264,7 +5264,7 @@ "dashboard_link": "/linux/opensource_packages/apache-arrow", "job_url_resolution_status": "central_exact", "package_slug": "apache-arrow", - "production_refreshed_at": "2026-05-14T19:37:17.278320+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.489625+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -5276,15 +5276,15 @@ }, "run": { "attempt": "1", - "id": "25877355625", + "id": "26658667828", "job_name": "test-apache-arrow / test-apache-arrow", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:37Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976744" + "timestamp": "2026-05-29T19:47:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309038" }, "schema_version": "2.0", "tests": { @@ -5293,37 +5293,37 @@ "duration_seconds": 0, "name": "Test 1 - Check import", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976744#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309038#step:6:1" }, { "duration_seconds": 1, "name": "Test 2 - Create Array", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976744#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309038#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Write Parquet File", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976744#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309038#step:8:1" }, { "duration_seconds": 1, "name": "Test 4 - Read Parquet File", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976744#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309038#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Check Build Info", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976744#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309038#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976744#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309038#step:11:1" } ], "duration_seconds": 2, @@ -5341,7 +5341,7 @@ "dashboard_link": "/linux/opensource_packages/apache-doris", "job_url_resolution_status": "central_exact", "package_slug": "apache-doris", - "production_refreshed_at": "2026-05-14T19:37:17.278518+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.489804+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -5355,63 +5355,63 @@ }, "run": { "attempt": "1", - "id": "25877406767", + "id": "26658714432", "job_name": "test-apache-doris / test-apache-doris", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:43Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155423" + "timestamp": "2026-05-29T19:48:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469299" }, "schema_version": "2.0", "tests": { "details": [ { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 1 - Check FE image contents", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155423#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469299#step:6:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 2 - Check BE image contents", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155423#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469299#step:7:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 3 - Check FE and BE startup scripts parse", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155423#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469299#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155423#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469299#step:9:1" }, { "duration_seconds": 1, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155423#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469299#step:10:1" }, { "comparison": "Current pinned Apache Doris version 3.0.8 passed smoke tests in this run. Regression validation pulled the official Arm64 FE/BE images tagged 3.1.0, and both images exposed usable startup scripts on Arm64.", "current_version": "3.0.8", "decision": "next_install_validated", - "duration_seconds": 172, + "duration_seconds": 83, "latest_version": "3.1.0", "name": "Test 6 - Regression Validation", "next_installed_version": "3.1.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155423#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469299#step:11:1" } ], - "duration_seconds": 175, + "duration_seconds": 85, "failed": 0, "passed": 6, "skipped": 0 @@ -5426,7 +5426,7 @@ "dashboard_link": "/linux/opensource_packages/apache-shiro", "job_url_resolution_status": "central_exact", "package_slug": "apache-shiro", - "production_refreshed_at": "2026-05-14T19:37:17.278695+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.489975+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -5440,15 +5440,15 @@ }, "run": { "attempt": "1", - "id": "25877363365", + "id": "26658674448", "job_name": "test-apache-shiro / test-apache-shiro", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:46Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000797" + "timestamp": "2026-05-29T19:47:57Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334861" }, "schema_version": "2.0", "tests": { @@ -5457,31 +5457,31 @@ "duration_seconds": 0, "name": "Test 1 - Create Shiro Maven test project", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000797#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334861#step:6:1" }, { - "duration_seconds": 24, + "duration_seconds": 17, "name": "Test 2 - Resolve Shiro dependency artifact", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000797#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334861#step:7:1" }, { - "duration_seconds": 6, + "duration_seconds": 4, "name": "Test 3 - Compile Shiro JUnit test", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000797#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334861#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000797#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334861#step:9:1" }, { - "duration_seconds": 7, + "duration_seconds": 5, "name": "Test 5 - Functional Validation - Shiro auth JUnit", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000797#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334861#step:10:1" }, { "comparison": "Current Apache Shiro 2.0.0 completed a real JUnit authentication smoke test. Test 6 resolved shiro-core 2.1.0 from Maven on Arm64.", @@ -5493,10 +5493,10 @@ "next_installed_version": "2.1.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000797#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334861#step:11:1" } ], - "duration_seconds": 37, + "duration_seconds": 26, "failed": 0, "passed": 6, "skipped": 0 @@ -5511,7 +5511,7 @@ "dashboard_link": "/linux/opensource_packages/apache_ant", "job_url_resolution_status": "central_exact", "package_slug": "apache_ant", - "production_refreshed_at": "2026-05-14T19:37:17.278917+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.490142+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -5525,15 +5525,15 @@ }, "run": { "attempt": "1", - "id": "25877419588", + "id": "26658724696", "job_name": "test-apache_ant / test-apache_ant", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:58Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048191499" + "timestamp": "2026-05-29T19:49:02Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503341" }, "schema_version": "2.0", "tests": { @@ -5542,31 +5542,31 @@ "duration_seconds": 0, "name": "Test 1 - Check ant binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048191499#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503341#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check ant version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048191499#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503341#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check ant help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048191499#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503341#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048191499#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503341#step:9:1" }, { - "duration_seconds": 3, + "duration_seconds": 1, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048191499#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503341#step:10:1" }, { "comparison": "Current pinned Apache Ant version 1.10.14 passed smoke tests in this run. Regression validation installed candidate version 1.10.15 on Arm64, and the extracted Ant binary reported version 1.10.15.", @@ -5578,10 +5578,10 @@ "next_installed_version": "1.10.15", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048191499#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503341#step:11:1" } ], - "duration_seconds": 42, + "duration_seconds": 40, "failed": 0, "passed": 6, "skipped": 0 @@ -5596,7 +5596,7 @@ "dashboard_link": "/linux/opensource_packages/apache_drill", "job_url_resolution_status": "central_exact", "package_slug": "apache_drill", - "production_refreshed_at": "2026-05-14T19:37:17.279121+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.490334+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -5610,15 +5610,15 @@ }, "run": { "attempt": "1", - "id": "25877363365", + "id": "26658674448", "job_name": "test-apache_drill / test-apache_drill", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:47Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000859" + "timestamp": "2026-05-29T19:47:57Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334652" }, "schema_version": "2.0", "tests": { @@ -5627,46 +5627,46 @@ "duration_seconds": 0, "name": "Test 1 - Check drill binaries exist", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000859#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334652#step:6:1" }, { "duration_seconds": 1, "name": "Test 2 - Check drill-conf command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000859#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334652#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Java Environment Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000859#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334652#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000859#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334652#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000859#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334652#step:10:1" }, { "comparison": "Current pinned Apache Drill version 1.21.2 passed smoke tests in this run. Regression validation downloaded candidate version 1.22.0 on Arm64, and the extracted Drill CLI help commands executed successfully.", "current_version": "1.21.2", "decision": "next_install_validated", - "duration_seconds": 24, + "duration_seconds": 33, "latest_version": "1.22.0", "name": "Test 6 - Regression Validation", "next_installed_version": "1.22.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000859#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334652#step:11:1" } ], - "duration_seconds": 25, + "duration_seconds": 34, "failed": 0, "passed": 6, "skipped": 0 @@ -5681,7 +5681,7 @@ "dashboard_link": "/linux/opensource_packages/apache_knox", "job_url_resolution_status": "central_exact", "package_slug": "apache_knox", - "production_refreshed_at": "2026-05-14T19:37:17.279336+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.490506+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -5695,15 +5695,15 @@ }, "run": { "attempt": "1", - "id": "25877371674", + "id": "26658681575", "job_name": "test-apache_knox / test-apache_knox", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:58Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031888" + "timestamp": "2026-05-29T19:48:07Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358017" }, "schema_version": "2.0", "tests": { @@ -5712,46 +5712,46 @@ "duration_seconds": 0, "name": "Test 1 - Check Directory Structure", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031888#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358017#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Gateway Script", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031888#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358017#step:8:1" }, { "duration_seconds": 1, "name": "Test 3 - Check Knox CLI Help", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031888#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358017#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031888#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358017#step:10:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031888#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358017#step:11:1" }, { "comparison": "Current pinned Apache Knox version 2.0.0 passed smoke tests in this run. Regression validation downloaded official distribution 2.1.0 on Arm64, verified the extracted Knox CLI scripts, and confirmed non-interactive help and status behavior.", "current_version": "2.0.0", "decision": "next_install_validated", - "duration_seconds": 11, + "duration_seconds": 9, "latest_version": "2.1.0", "name": "Test 6 - Regression Validation", "next_installed_version": "2.1.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031888#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358017#step:12:1" } ], - "duration_seconds": 12, + "duration_seconds": 11, "failed": 0, "passed": 6, "skipped": 0 @@ -5766,7 +5766,7 @@ "dashboard_link": "/linux/opensource_packages/apache_kudu", "job_url_resolution_status": "central_exact", "package_slug": "apache_kudu", - "production_refreshed_at": "2026-05-14T19:37:17.279530+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.490672+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -5780,15 +5780,15 @@ }, "run": { "attempt": "1", - "id": "25877406767", + "id": "26658714432", "job_name": "test-apache_kudu / test-apache_kudu", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:44Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155346" + "timestamp": "2026-05-29T19:48:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469222" }, "schema_version": "2.0", "tests": { @@ -5797,46 +5797,46 @@ "duration_seconds": 0, "name": "Test 1 - Check README", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155346#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469222#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Build Files", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155346#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469222#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Source Structure", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155346#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469222#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155346#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469222#step:9:1" }, { "duration_seconds": 2, "name": "Test 5 - Compile and Run Arm64 Atomic Probe", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155346#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469222#step:10:1" }, { "comparison": "Apache Kudu baseline 1.17.0 compiled and ran an Arm64 atomic operations probe. Regression validation cloned candidate 1.17.1 on Arm64 and compiled/ran the same Kudu atomic probe successfully.", "current_version": "1.17.0", "decision": "next_install_validated", - "duration_seconds": 2, + "duration_seconds": 3, "latest_version": "1.17.1", "name": "Test 6 - Regression Validation", "next_installed_version": "1.17.1", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155346#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469222#step:11:1" } ], - "duration_seconds": 4, + "duration_seconds": 5, "failed": 0, "passed": 6, "skipped": 0 @@ -5851,7 +5851,7 @@ "dashboard_link": "/linux/opensource_packages/apache_thrift", "job_url_resolution_status": "central_exact", "package_slug": "apache_thrift", - "production_refreshed_at": "2026-05-14T19:37:17.279722+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.490848+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -5865,15 +5865,15 @@ }, "run": { "attempt": "1", - "id": "25877403044", + "id": "26658710721", "job_name": "test-apache_thrift / test-apache_thrift", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:36Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140576" + "timestamp": "2026-05-29T19:48:44Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455547" }, "schema_version": "2.0", "tests": { @@ -5882,46 +5882,46 @@ "duration_seconds": 0, "name": "Test 1 - Check thrift binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140576#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455547#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check thrift version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140576#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455547#step:7:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 3 - Check thrift help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140576#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455547#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140576#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455547#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140576#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455547#step:10:1" }, { "comparison": "Current pinned Apache Thrift version 0.21.0 passed smoke tests in this run. Regression validation built candidate version 0.22.0 from source on Arm64, and the generated thrift compiler reported version 0.22.0.", "current_version": "0.21.0", "decision": "next_install_validated", - "duration_seconds": 62, + "duration_seconds": 60, "latest_version": "0.22.0", "name": "Test 6 - Regression Validation", "next_installed_version": "0.22.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140576#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455547#step:11:1" } ], - "duration_seconds": 62, + "duration_seconds": 60, "failed": 0, "passed": 6, "skipped": 0 @@ -5936,7 +5936,7 @@ "dashboard_link": "/linux/opensource_packages/apache_tomcat", "job_url_resolution_status": "central_exact", "package_slug": "apache_tomcat", - "production_refreshed_at": "2026-05-14T19:37:17.279927+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.491024+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -5948,15 +5948,15 @@ }, "run": { "attempt": "1", - "id": "25877375677", + "id": "26658685142", "job_name": "test-apache_tomcat / test-apache_tomcat", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:03Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044606" + "timestamp": "2026-05-29T19:48:10Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370670" }, "schema_version": "2.0", "tests": { @@ -5965,37 +5965,37 @@ "duration_seconds": 0, "name": "Test 1 - Check Tomcat directory exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044606#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370670#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check for configuration files", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044606#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370670#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check service status (mock)", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044606#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370670#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044606#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370670#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044606#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370670#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044606#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370670#step:11:1" } ], "duration_seconds": 0, @@ -6013,7 +6013,7 @@ "dashboard_link": "/linux/opensource_packages/apisix", "job_url_resolution_status": "central_exact", "package_slug": "apisix", - "production_refreshed_at": "2026-05-14T19:37:17.280133+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.491193+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -6027,15 +6027,15 @@ }, "run": { "attempt": "1", - "id": "25877355625", + "id": "26658667828", "job_name": "test-apisix / test-apisix", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:37Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976547" + "timestamp": "2026-05-29T19:47:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309071" }, "schema_version": "2.0", "tests": { @@ -6044,31 +6044,31 @@ "duration_seconds": 0, "name": "Test 1 - Check container running", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976547#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309071#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Admin API", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976547#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309071#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Create a Route", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976547#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309071#step:8:1" }, { "duration_seconds": 5, "name": "Test 4 - Access the Route", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976547#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309071#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Check Admin Routes Again", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976547#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309071#step:10:1" }, { "comparison": "Current pinned Apache APISIX version 3.12.0 passed smoke tests in this run. Regression validation pulled candidate image tag 3.13.0-debian on Arm64, and the APISIX binary reported version 3.13.0.", @@ -6080,7 +6080,7 @@ "next_installed_version": "3.13.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976547#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309071#step:11:1" } ], "duration_seconds": 16, @@ -6098,7 +6098,7 @@ "dashboard_link": "/linux/opensource_packages/apr", "job_url_resolution_status": "central_exact", "package_slug": "apr", - "production_refreshed_at": "2026-05-14T19:37:17.280318+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.491397+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -6112,63 +6112,63 @@ }, "run": { "attempt": "1", - "id": "25877355625", + "id": "26658667828", "job_name": "test-apr / test-apr", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:37Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976868" + "timestamp": "2026-05-29T19:47:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308806" }, "schema_version": "2.0", "tests": { "details": [ { - "duration_seconds": 23, + "duration_seconds": 21, "name": "Test 1 - Configure", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976868#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308806#step:7:1" }, { "duration_seconds": 18, "name": "Test 2 - Compile (Make)", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976868#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308806#step:8:1" }, { "duration_seconds": 163, "name": "Test 3 - Run Tests (Make Test)", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976868#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308806#step:9:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 4 - Install (Dry Run)", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976868#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308806#step:10:1" }, { "duration_seconds": 0, "name": "Test 5 - Check Installed Libs", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976868#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308806#step:11:1" }, { "comparison": "Current pinned APR version 1.7.5 passed smoke tests in this run. Regression validation downloaded candidate version 1.7.6 on Arm64, built it successfully, and the installed apr-1-config reported version 1.7.6.", "current_version": "1.7.5", "decision": "next_install_validated", - "duration_seconds": 21, + "duration_seconds": 20, "latest_version": "1.7.6", "name": "Test 6 - Regression Validation", "next_installed_version": "1.7.6", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976868#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308806#step:12:1" } ], - "duration_seconds": 226, + "duration_seconds": 222, "failed": 0, "passed": 6, "skipped": 0 @@ -6183,7 +6183,7 @@ "dashboard_link": "/linux/opensource_packages/arangodb", "job_url_resolution_status": "central_exact", "package_slug": "arangodb", - "production_refreshed_at": "2026-05-14T19:37:17.280538+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.491594+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -6197,15 +6197,15 @@ }, "run": { "attempt": "1", - "id": "25877359516", + "id": "26658670904", "job_name": "test-arangodb / test-arangodb", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:45Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990004" + "timestamp": "2026-05-29T19:47:51Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320729" }, "schema_version": "2.0", "tests": { @@ -6214,46 +6214,46 @@ "duration_seconds": 0, "name": "Test 1 - Check Database Binary", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990004#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320729#step:6:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990004#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320729#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990004#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320729#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990004#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320729#step:9:1" }, { "duration_seconds": 5, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990004#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320729#step:10:1" }, { "comparison": "Current pinned ArangoDB version 3.12.4 passed smoke tests in this run. Regression validation pulled candidate container 3.12.5 on Arm64, and the installed server binary reported version 3.12.5.", "current_version": "3.12.4", "decision": "next_install_validated", - "duration_seconds": 8, + "duration_seconds": 11, "latest_version": "3.12.5", "name": "Test 6 - Regression Validation", "next_installed_version": "3.12.5", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990004#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320729#step:11:1" } ], - "duration_seconds": 14, + "duration_seconds": 16, "failed": 0, "passed": 6, "skipped": 0 @@ -6268,7 +6268,7 @@ "dashboard_link": "/linux/opensource_packages/archiconda3", "job_url_resolution_status": "central_exact", "package_slug": "archiconda3", - "production_refreshed_at": "2026-05-14T19:37:17.280774+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.491766+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -6280,15 +6280,15 @@ }, "run": { "attempt": "1", - "id": "25877359516", + "id": "26658670904", "job_name": "test-archiconda3 / test-archiconda3", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:44Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990083" + "timestamp": "2026-05-29T19:47:51Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320747" }, "schema_version": "2.0", "tests": { @@ -6297,40 +6297,40 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990083#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320747#step:6:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990083#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320747#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990083#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320747#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990083#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320747#step:9:1" }, { - "duration_seconds": 20, + "duration_seconds": 19, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990083#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320747#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990083#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320747#step:11:1" } ], - "duration_seconds": 20, + "duration_seconds": 19, "failed": 0, "passed": 6, "skipped": 0 @@ -6345,7 +6345,7 @@ "dashboard_link": "/linux/opensource_packages/argo", "job_url_resolution_status": "central_exact", "package_slug": "argo", - "production_refreshed_at": "2026-05-14T19:37:17.281054+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.492024+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -6359,15 +6359,15 @@ }, "run": { "attempt": "1", - "id": "25877359516", + "id": "26658670904", "job_name": "test-argo / test-argo", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:45Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990079" + "timestamp": "2026-05-29T19:47:52Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320694" }, "schema_version": "2.0", "tests": { @@ -6376,31 +6376,31 @@ "duration_seconds": 0, "name": "Test 1 - Check Version Command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990079#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320694#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Create Workflow File", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990079#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320694#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Lint Workflow", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990079#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320694#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Check Help Command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990079#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320694#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990079#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320694#step:10:1" }, { "comparison": "Current pinned argo version v3.6.4 passed smoke tests in this run. Regression validation installed candidate version v3.6.5 on Arm64, and the installed binary reported version 3.6.5.", @@ -6412,7 +6412,7 @@ "next_installed_version": "3.6.5", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990079#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320694#step:11:1" } ], "duration_seconds": 1, @@ -6430,7 +6430,7 @@ "dashboard_link": "/linux/opensource_packages/arthas", "job_url_resolution_status": "central_exact", "package_slug": "arthas", - "production_refreshed_at": "2026-05-14T19:37:17.281255+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.492205+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -6444,15 +6444,15 @@ }, "run": { "attempt": "1", - "id": "25877359516", + "id": "26658670904", "job_name": "test-arthas / test-arthas", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:45Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990027" + "timestamp": "2026-05-29T19:47:53Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320664" }, "schema_version": "2.0", "tests": { @@ -6461,31 +6461,31 @@ "duration_seconds": 0, "name": "Test 1 - Check Boot Jar Execution", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990027#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320664#step:7:1" }, { - "duration_seconds": 3, + "duration_seconds": 2, "name": "Test 2 - Start Dummy Java Process", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990027#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320664#step:8:1" }, { - "duration_seconds": 3, + "duration_seconds": 4, "name": "Test 3 - Attach Arthas and Query JVM", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990027#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320664#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990027#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320664#step:11:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990027#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320664#step:12:1" }, { "comparison": "Current pinned Arthas version 4.0.5 passed smoke tests in this run. Regression validation downloaded the versioned release asset arthas-all-4.1.0 on Arm64, the extracted manifest reported 4.1.0, and the candidate help path completed successfully.", @@ -6497,7 +6497,7 @@ "next_installed_version": "4.1.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990027#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320664#step:13:1" } ], "duration_seconds": 7, @@ -6515,7 +6515,7 @@ "dashboard_link": "/linux/opensource_packages/asp-net", "job_url_resolution_status": "central_exact", "package_slug": "asp-net", - "production_refreshed_at": "2026-05-14T19:37:17.281462+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.492412+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -6523,19 +6523,19 @@ }, "package": { "name": "ASP.NET", - "version": "8.0.126" + "version": "8.0.127" }, "run": { "attempt": "1", - "id": "25877379982", + "id": "26658688675", "job_name": "test-asp-net / test-asp-net", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:07Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057237" + "timestamp": "2026-05-29T19:48:15Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380582" }, "schema_version": "2.0", "tests": { @@ -6544,40 +6544,40 @@ "duration_seconds": 0, "name": "Test 1 - Check dotnet binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057237#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380582#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check dotnet version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057237#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380582#step:7:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 3 - Check dotnet help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057237#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380582#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057237#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380582#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057237#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380582#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057237#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380582#step:11:1" } ], - "duration_seconds": 1, + "duration_seconds": 0, "failed": 0, "passed": 6, "skipped": 0 @@ -6592,7 +6592,7 @@ "dashboard_link": "/linux/opensource_packages/atlas", "job_url_resolution_status": "central_exact", "package_slug": "atlas", - "production_refreshed_at": "2026-05-14T19:37:17.281644+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.492586+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -6606,15 +6606,15 @@ }, "run": { "attempt": "1", - "id": "25877355625", + "id": "26658667828", "job_name": "test-atlas / test-atlas", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:37Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976844" + "timestamp": "2026-05-29T19:47:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308864" }, "schema_version": "2.0", "tests": { @@ -6623,46 +6623,46 @@ "duration_seconds": 0, "name": "Test 1 - Check Source Files", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976844#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308864#step:8:1" }, { - "duration_seconds": 2, + "duration_seconds": 1, "name": "Test 2 - Check Maven Version", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976844#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308864#step:9:1" }, { - "duration_seconds": 34, + "duration_seconds": 48, "name": "Test 3 - Validate Build (Maven)", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976844#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308864#step:10:1" }, { "duration_seconds": 0, "name": "Test 4 - Check Distro Module", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976844#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308864#step:11:1" }, { "duration_seconds": 0, "name": "Test 5 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976844#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308864#step:12:1" }, { "comparison": "Baseline Apache Atlas 2.3.0 passed Tests 1-5. Regression validation downloaded 2.4.0 source and passed Maven validate on Arm64 for the same module path used by baseline checks.", "current_version": "2.3.0", "decision": "next_install_validated", - "duration_seconds": 12, + "duration_seconds": 34, "latest_version": "2.4.0", "name": "Test 6 - Regression Validation", "next_installed_version": "2.4.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976844#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308864#step:13:1" } ], - "duration_seconds": 48, + "duration_seconds": 83, "failed": 0, "passed": 6, "skipped": 0 @@ -6677,7 +6677,7 @@ "dashboard_link": "/linux/opensource_packages/auditbeat", "job_url_resolution_status": "central_exact", "package_slug": "auditbeat", - "production_refreshed_at": "2026-05-14T19:37:17.281845+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.492755+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -6691,15 +6691,15 @@ }, "run": { "attempt": "1", - "id": "25877359516", + "id": "26658670904", "job_name": "test-auditbeat / test-auditbeat", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:45Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047989973" + "timestamp": "2026-05-29T19:47:51Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320695" }, "schema_version": "2.0", "tests": { @@ -6708,46 +6708,46 @@ "duration_seconds": 0, "name": "Test 1 - Check Version Command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047989973#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320695#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Help", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047989973#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320695#step:7:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 3 - Export Template", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047989973#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320695#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047989973#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320695#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047989973#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320695#step:10:1" }, { "comparison": "Current pinned Auditbeat version 8.17.0 passed smoke tests in this run. Regression validation installed candidate version 8.18.0 on Arm64, and the installed binary reported version 8.18.0.", "current_version": "8.17.0", "decision": "next_install_validated", - "duration_seconds": 1, + "duration_seconds": 3, "latest_version": "8.18.0", "name": "Test 6 - Regression Validation", "next_installed_version": "8.18.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047989973#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320695#step:11:1" } ], - "duration_seconds": 1, + "duration_seconds": 4, "failed": 0, "passed": 6, "skipped": 0 @@ -6762,7 +6762,7 @@ "dashboard_link": "/linux/opensource_packages/avahi", "job_url_resolution_status": "central_exact", "package_slug": "avahi", - "production_refreshed_at": "2026-05-14T19:37:17.282063+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.492928+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -6774,15 +6774,15 @@ }, "run": { "attempt": "1", - "id": "25877359516", + "id": "26658670904", "job_name": "test-avahi / test-avahi", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:45Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047989968" + "timestamp": "2026-05-29T19:47:52Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320701" }, "schema_version": "2.0", "tests": { @@ -6791,37 +6791,37 @@ "duration_seconds": 0, "name": "Test 1 - Check Version Command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047989968#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320701#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Config Syntax", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047989968#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320701#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Avahi Browse Help", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047989968#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320701#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047989968#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320701#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047989968#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320701#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047989968#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320701#step:11:1" } ], "duration_seconds": 0, @@ -6839,7 +6839,7 @@ "dashboard_link": "/linux/opensource_packages/avro_py", "job_url_resolution_status": "central_exact", "package_slug": "avro_py", - "production_refreshed_at": "2026-05-14T19:37:17.282241+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.493093+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -6851,15 +6851,15 @@ }, "run": { "attempt": "1", - "id": "25877359516", + "id": "26658670904", "job_name": "test-avro_py / test-avro_py", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:47Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990975" + "timestamp": "2026-05-29T19:47:53Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320731" }, "schema_version": "2.0", "tests": { @@ -6868,37 +6868,37 @@ "duration_seconds": 0, "name": "Test 1 - Import Avro", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990975#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320731#step:7:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 2 - Validate datum against schema", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990975#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320731#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Parse schema", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990975#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320731#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Binary encode and decode", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990975#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320731#step:10:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990975#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320731#step:11:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990975#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320731#step:12:1" } ], "duration_seconds": 0, @@ -6916,7 +6916,7 @@ "dashboard_link": "/linux/opensource_packages/azul_system", "job_url_resolution_status": "central_exact", "package_slug": "azul_system", - "production_refreshed_at": "2026-05-14T19:37:17.282446+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.493274+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -6930,15 +6930,15 @@ }, "run": { "attempt": "1", - "id": "25877383844", + "id": "26658692522", "job_name": "test-azul_system / test-azul_system", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:12Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071330" + "timestamp": "2026-05-29T19:48:20Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394513" }, "schema_version": "2.0", "tests": { @@ -6947,46 +6947,46 @@ "duration_seconds": 0, "name": "Test 1 - Check azul_system binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071330#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394513#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check azul_system version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071330#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394513#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check azul_system help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071330#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394513#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071330#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394513#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071330#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394513#step:10:1" }, { "comparison": "Current pinned Zulu OpenJDK version 17.0.9 passed smoke tests in this run. Regression validation installed candidate version 17.0.10 on Arm64, and the downloaded JDK reported version 17.0.10.", "current_version": "17.0.9", "decision": "next_install_validated", - "duration_seconds": 11, + "duration_seconds": 6, "latest_version": "17.0.10", "name": "Test 6 - Regression Validation", "next_installed_version": "17.0.10", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071330#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394513#step:11:1" } ], - "duration_seconds": 11, + "duration_seconds": 6, "failed": 0, "passed": 6, "skipped": 0 @@ -7001,7 +7001,7 @@ "dashboard_link": "/linux/opensource_packages/azurecli", "job_url_resolution_status": "central_exact", "package_slug": "azurecli", - "production_refreshed_at": "2026-05-14T19:37:17.282652+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.493458+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -7015,15 +7015,15 @@ }, "run": { "attempt": "1", - "id": "25877359516", + "id": "26658670904", "job_name": "test-azurecli / test-azurecli", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:55Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991464" + "timestamp": "2026-05-29T19:48:00Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321490" }, "schema_version": "2.0", "tests": { @@ -7032,46 +7032,46 @@ "duration_seconds": 0, "name": "Test 1 - Check package-specific baseline markers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991464#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321490#step:9:1" }, { "duration_seconds": 0, "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991464#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321490#step:10:1" }, { "duration_seconds": 0, "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991464#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321490#step:11:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991464#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321490#step:12:1" }, { - "duration_seconds": 10, + "duration_seconds": 9, "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991464#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321490#step:13:1" }, { "comparison": "Installed the next Azure CLI candidate on the Arm64 runner and ran az --version plus a non-auth az group help command.", "current_version": "2.46.0", "decision": "limited_cpu_smoke_validated", - "duration_seconds": 109, + "duration_seconds": 103, "latest_version": "2.84.0", "name": "Test 6 - Regression Validation", "next_installed_version": "2.84.0", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991464#step:14:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321490#step:14:1" } ], - "duration_seconds": 109, + "duration_seconds": 103, "failed": 0, "passed": 6, "skipped": 0 @@ -7086,7 +7086,7 @@ "dashboard_link": "/linux/opensource_packages/azurelinux", "job_url_resolution_status": "central_exact", "package_slug": "azurelinux", - "production_refreshed_at": "2026-05-14T19:37:17.282881+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.493629+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -7100,15 +7100,15 @@ }, "run": { "attempt": "1", - "id": "25877363365", + "id": "26658674448", "job_name": "test-azurelinux / test-azurelinux", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:48Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000933" + "timestamp": "2026-05-29T19:47:58Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334843" }, "schema_version": "2.0", "tests": { @@ -7117,46 +7117,46 @@ "duration_seconds": 0, "name": "Test 1 - Check package-specific baseline markers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000933#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334843#step:8:1" }, { "duration_seconds": 0, "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000933#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334843#step:9:1" }, { "duration_seconds": 0, "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000933#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334843#step:10:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000933#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334843#step:11:1" }, { - "duration_seconds": 18, + "duration_seconds": 22, "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000933#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334843#step:12:1" }, { "comparison": "Test 6 reran the scoped Azure Linux Arm preflight using the matching stable Azure Linux base-image stream: Arm64 image pull/inspect, os-release and RPM checks, tdnf makecache, and a non-root process smoke. VM boot and Azure hardware validation remain out of scope.", "current_version": "3.0", "decision": "limited_cpu_smoke_validated", - "duration_seconds": 18, - "latest_version": "3.0.20260510-3.0", + "duration_seconds": 20, + "latest_version": "3.0.20260517-3.0", "name": "Test 6 - Regression Validation", - "next_installed_version": "3.0.20260510-3.0", + "next_installed_version": "3.0.20260517-3.0", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000933#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334843#step:13:1" } ], - "duration_seconds": 36, + "duration_seconds": 42, "failed": 0, "passed": 6, "skipped": 0 @@ -7171,7 +7171,7 @@ "dashboard_link": "/linux/opensource_packages/backstage", "job_url_resolution_status": "central_exact", "package_slug": "backstage", - "production_refreshed_at": "2026-05-14T19:37:17.283085+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.493795+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -7179,19 +7179,19 @@ }, "package": { "name": "Backstage", - "version": "0.34.6" + "version": "0.36.2" }, "run": { "attempt": "1", - "id": "25877375677", + "id": "26658685142", "job_name": "test-backstage / test-backstage", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:02Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044836" + "timestamp": "2026-05-29T19:48:11Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370317" }, "schema_version": "2.0", "tests": { @@ -7200,40 +7200,40 @@ "duration_seconds": 0, "name": "Test 1 - Check binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044836#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370317#step:7:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 2 - Check version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044836#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370317#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044836#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370317#step:9:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 4 - Check Info", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044836#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370317#step:10:1" }, { "duration_seconds": 0, "name": "Test 5 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044836#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370317#step:11:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044836#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370317#step:12:1" } ], - "duration_seconds": 0, + "duration_seconds": 1, "failed": 0, "passed": 6, "skipped": 0 @@ -7248,7 +7248,7 @@ "dashboard_link": "/linux/opensource_packages/bamtools", "job_url_resolution_status": "central_exact", "package_slug": "bamtools", - "production_refreshed_at": "2026-05-14T19:37:17.283302+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.493957+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -7260,15 +7260,15 @@ }, "run": { "attempt": "1", - "id": "25877375677", + "id": "26658685142", "job_name": "test-bamtools / test-bamtools", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:03Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044823" + "timestamp": "2026-05-29T19:48:11Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370906" }, "schema_version": "2.0", "tests": { @@ -7277,37 +7277,37 @@ "duration_seconds": 0, "name": "Test 1 - Check binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044823#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370906#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044823#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370906#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044823#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370906#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - List Tools", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044823#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370906#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Basic Header Check (Dry Run)", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044823#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370906#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044823#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370906#step:11:1" } ], "duration_seconds": 0, @@ -7325,7 +7325,7 @@ "dashboard_link": "/linux/opensource_packages/barbican", "job_url_resolution_status": "central_exact", "package_slug": "barbican", - "production_refreshed_at": "2026-05-14T19:37:17.283483+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.494115+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -7337,15 +7337,15 @@ }, "run": { "attempt": "1", - "id": "25877387746", + "id": "26658696365", "job_name": "test-barbican / test-barbican", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:15Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084608" + "timestamp": "2026-05-29T19:48:25Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407879" }, "schema_version": "2.0", "tests": { @@ -7354,40 +7354,40 @@ "duration_seconds": 0, "name": "Test 1 - Check binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084608#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407879#step:6:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 2 - Check version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084608#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407879#step:7:1" }, { - "duration_seconds": 2, + "duration_seconds": 1, "name": "Test 3 - Check help command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084608#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407879#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - List Secrets (Dry Run)", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084608#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407879#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084608#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407879#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084608#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407879#step:11:1" } ], - "duration_seconds": 3, + "duration_seconds": 1, "failed": 0, "passed": 6, "skipped": 0 @@ -7402,7 +7402,7 @@ "dashboard_link": "/linux/opensource_packages/bazel", "job_url_resolution_status": "central_exact", "package_slug": "bazel", - "production_refreshed_at": "2026-05-14T19:37:17.283680+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.494288+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -7416,15 +7416,15 @@ }, "run": { "attempt": "1", - "id": "25877423406", + "id": "26658727918", "job_name": "test-bazel / test-bazel", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:11Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210430" + "timestamp": "2026-05-29T19:49:06Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515938" }, "schema_version": "2.0", "tests": { @@ -7433,31 +7433,31 @@ "duration_seconds": 0, "name": "Test 1 - Check binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210430#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515938#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210430#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515938#step:7:1" }, { - "duration_seconds": 6, + "duration_seconds": 5, "name": "Test 3 - Check help command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210430#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515938#step:8:1" }, { - "duration_seconds": 17, + "duration_seconds": 8, "name": "Test 4 - Build Simple Project", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210430#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515938#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210430#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515938#step:10:1" }, { "comparison": "Current pinned Bazel version 7.5.0 passed smoke tests in this run. Regression validation installed candidate version 7.6.0 on Arm64, and the downloaded Bazel binary reported version 7.6.0.", @@ -7469,10 +7469,10 @@ "next_installed_version": "7.6.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210430#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515938#step:11:1" } ], - "duration_seconds": 24, + "duration_seconds": 14, "failed": 0, "passed": 6, "skipped": 0 @@ -7487,7 +7487,7 @@ "dashboard_link": "/linux/opensource_packages/bcache", "job_url_resolution_status": "central_exact", "package_slug": "bcache", - "production_refreshed_at": "2026-05-14T19:37:17.283897+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.494457+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -7499,15 +7499,15 @@ }, "run": { "attempt": "1", - "id": "25877399008", + "id": "26658707245", "job_name": "test-bcache / test-bcache", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:31Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126362" + "timestamp": "2026-05-29T19:48:39Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445348" }, "schema_version": "2.0", "tests": { @@ -7516,37 +7516,37 @@ "duration_seconds": 0, "name": "Test 1 - Check make-bcache binary", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126362#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445348#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check bcache-super-show binary", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126362#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445348#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126362#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445348#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126362#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445348#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126362#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445348#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126362#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445348#step:11:1" } ], "duration_seconds": 0, @@ -7564,7 +7564,7 @@ "dashboard_link": "/linux/opensource_packages/bcrypt", "job_url_resolution_status": "central_exact", "package_slug": "bcrypt", - "production_refreshed_at": "2026-05-14T19:37:17.284101+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.494618+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -7576,15 +7576,15 @@ }, "run": { "attempt": "1", - "id": "25877359516", + "id": "26658670904", "job_name": "test-bcrypt / test-bcrypt", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:44Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991622" + "timestamp": "2026-05-29T19:47:52Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321634" }, "schema_version": "2.0", "tests": { @@ -7593,37 +7593,37 @@ "duration_seconds": 0, "name": "Test 1 - Check Import", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991622#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321634#step:6:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 2 - Check Hashing", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991622#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321634#step:7:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 3 - Check Password Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991622#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321634#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991622#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321634#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991622#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321634#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991622#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321634#step:11:1" } ], "duration_seconds": 1, @@ -7641,7 +7641,7 @@ "dashboard_link": "/linux/opensource_packages/beanstalkd", "job_url_resolution_status": "central_exact", "package_slug": "beanstalkd", - "production_refreshed_at": "2026-05-14T19:37:17.284298+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.494777+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -7653,15 +7653,15 @@ }, "run": { "attempt": "1", - "id": "25877379982", + "id": "26658688675", "job_name": "test-beanstalkd / test-beanstalkd", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:05Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057245" + "timestamp": "2026-05-29T19:48:15Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380525" }, "schema_version": "2.0", "tests": { @@ -7670,37 +7670,37 @@ "duration_seconds": 0, "name": "Test 1 - Check binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057245#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380525#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057245#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380525#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057245#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380525#step:8:1" }, { "duration_seconds": 2, "name": "Test 4 - Start Service", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057245#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380525#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057245#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380525#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057245#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380525#step:11:1" } ], "duration_seconds": 0, @@ -7718,7 +7718,7 @@ "dashboard_link": "/linux/opensource_packages/beeGFS", "job_url_resolution_status": "central_exact", "package_slug": "beeGFS", - "production_refreshed_at": "2026-05-14T19:37:17.284520+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.494939+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -7730,15 +7730,15 @@ }, "run": { "attempt": "1", - "id": "25877406767", + "id": "26658714432", "job_name": "test-beeGFS / test-beegfs", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:47Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155723" + "timestamp": "2026-05-29T19:48:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469157" }, "schema_version": "2.0", "tests": { @@ -7747,37 +7747,37 @@ "duration_seconds": 0, "name": "Test 1 - Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155723#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469157#step:6:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155723#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469157#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Help Or Configuration Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155723#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469157#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155723#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469157#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155723#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469157#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155723#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469157#step:11:1" } ], "duration_seconds": 0, @@ -7795,7 +7795,7 @@ "dashboard_link": "/linux/opensource_packages/benchmark", "job_url_resolution_status": "central_exact", "package_slug": "benchmark", - "production_refreshed_at": "2026-05-14T19:37:17.284702+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.495100+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -7809,15 +7809,15 @@ }, "run": { "attempt": "1", - "id": "25877399008", + "id": "26658707245", "job_name": "test-benchmark / test-benchmark", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:33Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125769" + "timestamp": "2026-05-29T19:48:39Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445478" }, "schema_version": "2.0", "tests": { @@ -7826,46 +7826,46 @@ "duration_seconds": 0, "name": "Test 1 - Check Headers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125769#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445478#step:7:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 2 - Compile Simple Benchmark", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125769#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445478#step:8:1" }, { "duration_seconds": 1, "name": "Test 3 - Run Benchmark", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125769#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445478#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125769#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445478#step:10:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125769#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445478#step:11:1" }, { "comparison": "Google Benchmark 1.9.4 built and ran a real candidate benchmark on Arm64.", "current_version": "1.9.3", "decision": "next_install_validated", - "duration_seconds": 110, + "duration_seconds": 113, "latest_version": "1.9.4", "name": "Test 6 - Regression Validation", "next_installed_version": "1.9.4", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125769#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445478#step:12:1" } ], - "duration_seconds": 111, + "duration_seconds": 115, "failed": 0, "passed": 6, "skipped": 0 @@ -7880,7 +7880,7 @@ "dashboard_link": "/linux/opensource_packages/benchmarksql", "job_url_resolution_status": "central_exact", "package_slug": "benchmarksql", - "production_refreshed_at": "2026-05-14T19:37:17.284927+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.495301+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "no_newer_stable_available", @@ -7894,15 +7894,15 @@ }, "run": { "attempt": "1", - "id": "25877379982", + "id": "26658688675", "job_name": "test-benchmarksql / test-benchmarksql", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:05Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057364" + "timestamp": "2026-05-29T19:48:14Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380580" }, "schema_version": "2.0", "tests": { @@ -7911,31 +7911,31 @@ "duration_seconds": 0, "name": "Test 1 - Check runBenchmark.sh script", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057364#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380580#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Java Dependency", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057364#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380580#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Script Usage (Dry Run)", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057364#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380580#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057364#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380580#step:10:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057364#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380580#step:11:1" }, { "comparison": "Public BenchmarkSQL releases currently stop at REL6_0_RC2; no newer stable tag is available for a real Test 6 upgrade validation on Arm64.", @@ -7947,7 +7947,7 @@ "next_installed_version": "REL6_0_RC2", "regression_result": "No newer stable upstream release is available for Test 6", "status": "skipped", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057364#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380580#step:12:1" } ], "duration_seconds": 0, @@ -7965,7 +7965,7 @@ "dashboard_link": "/linux/opensource_packages/bentoml", "job_url_resolution_status": "central_exact", "package_slug": "bentoml", - "production_refreshed_at": "2026-05-14T19:37:17.285160+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.495495+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -7979,15 +7979,15 @@ }, "run": { "attempt": "1", - "id": "25877363365", + "id": "26658674448", "job_name": "test-bentoml / test-bentoml", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:48Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000948" + "timestamp": "2026-05-29T19:47:57Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575335006" }, "schema_version": "2.0", "tests": { @@ -7996,43 +7996,43 @@ "duration_seconds": 0, "name": "Test 1 - Package installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000948#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575335006#step:7:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 2 - Version metadata matches baseline", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000948#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575335006#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Installed files metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000948#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575335006#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000948#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575335006#step:10:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000948#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575335006#step:11:1" }, { "comparison": "Current pinned package version 0.0.1 passed smoke tests in this run, and the newer stable PyPI candidate 0.0.2 installed successfully on Arm64.", "current_version": "0.0.1", "decision": "next_install_validated", - "duration_seconds": 4, + "duration_seconds": 5, "latest_version": "0.0.2", "name": "Test 6 - Regression Validation", "next_installed_version": "0.0.2", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000948#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575335006#step:12:1" } ], "duration_seconds": 5, @@ -8050,7 +8050,7 @@ "dashboard_link": "/linux/opensource_packages/bioconda", "job_url_resolution_status": "central_exact", "package_slug": "bioconda", - "production_refreshed_at": "2026-05-14T19:37:17.285359+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.495662+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -8062,57 +8062,57 @@ }, "run": { "attempt": "1", - "id": "25877395502", + "id": "26658703674", "job_name": "test-bioconda / test-bioconda", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:25Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110110" + "timestamp": "2026-05-29T19:48:34Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432843" }, "schema_version": "2.0", "tests": { "details": [ { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 1 - Check Conda Binary", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110110#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432843#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Channels", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110110#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432843#step:7:1" }, { "duration_seconds": 20, "name": "Test 3 - Install Simple Bioconda Package", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110110#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432843#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110110#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432843#step:9:1" }, { "duration_seconds": 2, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110110#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432843#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110110#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432843#step:11:1" } ], - "duration_seconds": 23, + "duration_seconds": 22, "failed": 0, "passed": 6, "skipped": 0 @@ -8127,7 +8127,7 @@ "dashboard_link": "/linux/opensource_packages/bionemo-framework", "job_url_resolution_status": "central_exact", "package_slug": "bionemo-framework", - "production_refreshed_at": "2026-05-14T19:37:17.285531+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.495821+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -8141,15 +8141,15 @@ }, "run": { "attempt": "1", - "id": "25877363365", + "id": "26658674448", "job_name": "test-bionemo-framework / test-bionemo-framework", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:47Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000964" + "timestamp": "2026-05-29T19:47:56Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334944" }, "schema_version": "2.0", "tests": { @@ -8158,31 +8158,31 @@ "duration_seconds": 0, "name": "Test 1 - Check package-specific baseline markers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000964#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334944#step:8:1" }, { "duration_seconds": 0, "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000964#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334944#step:9:1" }, { "duration_seconds": 0, "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000964#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334944#step:10:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000964#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334944#step:11:1" }, { "duration_seconds": 1, "name": "Test 5 - Run scoped Arm preflight proof", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000964#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334944#step:12:1" }, { "comparison": "Test 6 limited_cpu_smoke_validated: reran the same bounded scoped Arm source/compile/import/help/manifest preflight against the next stable candidate. This is CPU-side preflight evidence only; no GPU/CUDA driver/runtime, accelerator execution, Kubernetes cluster, or full product runtime is claimed.", @@ -8194,10 +8194,10 @@ "next_installed_version": "2.7.1", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000964#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334944#step:13:1" } ], - "duration_seconds": 3, + "duration_seconds": 2, "failed": 0, "passed": 6, "skipped": 0 @@ -8212,7 +8212,7 @@ "dashboard_link": "/linux/opensource_packages/bishengjdk", "job_url_resolution_status": "central_exact", "package_slug": "bishengjdk", - "production_refreshed_at": "2026-05-14T19:37:17.286484+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.496612+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -8226,15 +8226,15 @@ }, "run": { "attempt": "1", - "id": "25877403044", + "id": "26658710721", "job_name": "test-bishengjdk / test-bishengjdk", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:37Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140888" + "timestamp": "2026-05-29T19:48:43Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456278" }, "schema_version": "2.0", "tests": { @@ -8243,46 +8243,46 @@ "duration_seconds": 0, "name": "Test 1 - Check Java Binary", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140888#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456278#step:6:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 2 - Verify BiSheng Vendor", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140888#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456278#step:7:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 3 - Compile and Run HelloWorld", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140888#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456278#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140888#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456278#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140888#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456278#step:10:1" }, { "comparison": "Current pinned BiSheng JDK version 21.0.6 passed smoke tests in this run. Regression validation installed candidate archive bisheng-jdk-21.0.7-b12-linux-aarch64.tar.gz on Arm64, and the candidate java runtime reported version 21.0.7 after a real compile-and-run check.", "current_version": "21.0.6", "decision": "next_install_validated", - "duration_seconds": 17, + "duration_seconds": 18, "latest_version": "21.0.7", "name": "Test 6 - Regression Validation", "next_installed_version": "21.0.7", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140888#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456278#step:11:1" } ], - "duration_seconds": 17, + "duration_seconds": 19, "failed": 0, "passed": 6, "skipped": 0 @@ -8297,7 +8297,7 @@ "dashboard_link": "/linux/opensource_packages/bison", "job_url_resolution_status": "central_exact", "package_slug": "bison", - "production_refreshed_at": "2026-05-14T19:37:17.286685+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.496802+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -8309,15 +8309,15 @@ }, "run": { "attempt": "1", - "id": "25877379982", + "id": "26658688675", "job_name": "test-bison / test-bison", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:10Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057176" + "timestamp": "2026-05-29T19:48:14Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380675" }, "schema_version": "2.0", "tests": { @@ -8326,37 +8326,37 @@ "duration_seconds": 0, "name": "Test 1 - Check binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057176#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380675#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057176#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380675#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057176#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380675#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Process Simple Grammar", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057176#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380675#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057176#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380675#step:10:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057176#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380675#step:11:1" } ], "duration_seconds": 0, @@ -8374,7 +8374,7 @@ "dashboard_link": "/linux/opensource_packages/bk_cmdb", "job_url_resolution_status": "central_exact", "package_slug": "bk_cmdb", - "production_refreshed_at": "2026-05-14T19:37:17.286909+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.496980+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -8388,15 +8388,15 @@ }, "run": { "attempt": "1", - "id": "25877392111", + "id": "26658699892", "job_name": "test-bk_cmdb / test-bk_cmdb", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:31Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096466" + "timestamp": "2026-05-29T19:48:37Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421058" }, "schema_version": "2.0", "tests": { @@ -8405,43 +8405,43 @@ "duration_seconds": 0, "name": "Test 1 - Check Build Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096466#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421058#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096466#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421058#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Basic Help Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096466#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421058#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096466#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421058#step:10:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096466#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421058#step:11:1" }, { "comparison": "Current pinned Bk-cmdb version v3.10.41 passed smoke tests in this run. Regression validation built and validated candidate version v3.10.42 from ref release-v3.10.42 on Arm64.", "current_version": "v3.10.41", "decision": "next_install_validated", - "duration_seconds": 7, + "duration_seconds": 6, "latest_version": "v3.10.42", "name": "Test 6 - Regression Validation", "next_installed_version": "v3.10.42", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096466#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421058#step:12:1" } ], "duration_seconds": 0, @@ -8459,7 +8459,7 @@ "dashboard_link": "/linux/opensource_packages/blobfuse2", "job_url_resolution_status": "central_exact", "package_slug": "blobfuse2", - "production_refreshed_at": "2026-05-14T19:37:17.287101+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.497152+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "no_newer_stable_available", @@ -8473,15 +8473,15 @@ }, "run": { "attempt": "1", - "id": "25877367704", + "id": "26658677990", "job_name": "test-blobfuse2 / test-blobfuse2", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:56Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027171" + "timestamp": "2026-05-29T19:48:02Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347514" }, "schema_version": "2.0", "tests": { @@ -8490,31 +8490,31 @@ "duration_seconds": 0, "name": "Test 1 - Check package-specific baseline markers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027171#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347514#step:8:1" }, { "duration_seconds": 0, "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027171#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347514#step:9:1" }, { "duration_seconds": 0, "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027171#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347514#step:10:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027171#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347514#step:11:1" }, { "duration_seconds": 20, "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027171#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347514#step:12:1" }, { "comparison": "The current version 2.1.0 is already the latest stable source tag we could resolve from Azure/azure-storage-fuse. Tests 1-5 remain the bounded Arm64 proof for this package; no newer candidate exists for Test 6. Test 6 reran the scoped Blobfuse2 Arm preflight against the next stable source tag: Go package discovery, linux/arm64 CLI build, AArch64 binary inspection, version/help, and mount command help. Real Azure Blob mounting still requires FUSE plus Azure Storage credentials.", @@ -8526,7 +8526,7 @@ "next_installed_version": "not_installed", "regression_result": "No newer stable public release is available", "status": "skipped", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027171#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347514#step:13:1" } ], "duration_seconds": 0, @@ -8544,7 +8544,7 @@ "dashboard_link": "/linux/opensource_packages/boost", "job_url_resolution_status": "central_exact", "package_slug": "boost", - "production_refreshed_at": "2026-05-14T19:37:17.287281+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.500592+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -8556,15 +8556,15 @@ }, "run": { "attempt": "1", - "id": "25877367704", + "id": "26658677990", "job_name": "test-boost / test-boost", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:56Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026904" + "timestamp": "2026-05-29T19:48:02Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347140" }, "schema_version": "2.0", "tests": { @@ -8573,40 +8573,40 @@ "duration_seconds": 0, "name": "Test 1 - Check Headers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026904#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347140#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026904#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347140#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check library availability", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026904#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347140#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify architecture", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026904#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347140#step:9:1" }, { - "duration_seconds": 4, + "duration_seconds": 3, "name": "Test 5 - Compile and run Boost examples", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026904#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347140#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026904#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347140#step:11:1" } ], - "duration_seconds": 4, + "duration_seconds": 3, "failed": 0, "passed": 6, "skipped": 0 @@ -8621,7 +8621,7 @@ "dashboard_link": "/linux/opensource_packages/boringssl", "job_url_resolution_status": "central_exact", "package_slug": "boringssl", - "production_refreshed_at": "2026-05-14T19:37:17.287454+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.500794+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "no_newer_stable_available", @@ -8635,15 +8635,15 @@ }, "run": { "attempt": "1", - "id": "25877371674", + "id": "26658681575", "job_name": "test-boringssl / test-boringssl", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:58Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031074" + "timestamp": "2026-05-29T19:48:06Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357273" }, "schema_version": "2.0", "tests": { @@ -8652,31 +8652,31 @@ "duration_seconds": 0, "name": "Test 1 - Check bssl binary", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031074#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357273#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Run bssl help", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031074#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357273#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Generate RSA Key", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031074#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357273#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031074#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357273#step:10:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031074#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357273#step:11:1" }, { "comparison": "Public stable BoringSSL tags for this dashboard path currently stop at fips-20220613; there is no newer stable FIPS tag for a real Test 6 upgrade validation", @@ -8688,7 +8688,7 @@ "next_installed_version": "not_installed", "regression_result": "No newer stable public release is available", "status": "skipped", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031074#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357273#step:12:1" } ], "duration_seconds": 0, @@ -8706,7 +8706,7 @@ "dashboard_link": "/linux/opensource_packages/bosh-cli", "job_url_resolution_status": "central_exact", "package_slug": "bosh-cli", - "production_refreshed_at": "2026-05-14T19:37:17.287629+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.500976+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -8720,15 +8720,15 @@ }, "run": { "attempt": "1", - "id": "25877411197", + "id": "26658717942", "job_name": "test-bosh-cli / test-bosh-cli", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:49Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175427" + "timestamp": "2026-05-29T19:48:53Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479729" }, "schema_version": "2.0", "tests": { @@ -8737,31 +8737,31 @@ "duration_seconds": 0, "name": "Test 1 - Check binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175427#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479729#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175427#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479729#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175427#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479729#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175427#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479729#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175427#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479729#step:10:1" }, { "comparison": "Current pinned BOSH CLI version 7.9.4 passed smoke tests in this run. Regression validation installed candidate version 7.9.5 on Arm64, and the installed binary reported version 7.9.5.", @@ -8773,7 +8773,7 @@ "next_installed_version": "7.9.5", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175427#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479729#step:11:1" } ], "duration_seconds": 1, @@ -8791,7 +8791,7 @@ "dashboard_link": "/linux/opensource_packages/brotli", "job_url_resolution_status": "central_exact", "package_slug": "brotli", - "production_refreshed_at": "2026-05-14T19:37:17.287870+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.501151+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -8803,15 +8803,15 @@ }, "run": { "attempt": "1", - "id": "25877423406", + "id": "26658727918", "job_name": "test-brotli / test-brotli", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:10Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210325" + "timestamp": "2026-05-29T19:49:06Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516079" }, "schema_version": "2.0", "tests": { @@ -8820,37 +8820,37 @@ "duration_seconds": 0, "name": "Test 1 - Check binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210325#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516079#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210325#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516079#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Compress and Decompress File", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210325#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516079#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210325#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516079#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210325#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516079#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210325#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516079#step:11:1" } ], "duration_seconds": 0, @@ -8868,7 +8868,7 @@ "dashboard_link": "/linux/opensource_packages/brpc", "job_url_resolution_status": "central_exact", "package_slug": "brpc", - "production_refreshed_at": "2026-05-14T19:37:17.288064+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.501340+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -8882,15 +8882,15 @@ }, "run": { "attempt": "1", - "id": "25877387746", + "id": "26658696365", "job_name": "test-brpc / test-brpc", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:18Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083715" + "timestamp": "2026-05-29T19:48:24Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575406534" }, "schema_version": "2.0", "tests": { @@ -8899,46 +8899,46 @@ "duration_seconds": 0, "name": "Test 1 - Check Headers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083715#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575406534#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Static Library", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083715#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575406534#step:8:1" }, { "duration_seconds": 2, "name": "Test 3 - Compile Simple Example", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083715#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575406534#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Run Simple Example", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083715#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575406534#step:10:1" }, { "duration_seconds": 0, "name": "Test 5 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083715#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575406534#step:11:1" }, { "comparison": "BRPC 1.13.0 built and linked a real candidate example on Arm64", "current_version": "1.12.1", "decision": "next_install_validated", - "duration_seconds": 193, + "duration_seconds": 190, "latest_version": "1.13.0", "name": "Test 6 - Regression Validation", "next_installed_version": "1.13.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083715#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575406534#step:12:1" } ], - "duration_seconds": 195, + "duration_seconds": 192, "failed": 0, "passed": 6, "skipped": 0 @@ -8953,7 +8953,7 @@ "dashboard_link": "/linux/opensource_packages/buildah", "job_url_resolution_status": "central_exact", "package_slug": "buildah", - "production_refreshed_at": "2026-05-14T19:37:17.288263+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.501514+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -8967,15 +8967,15 @@ }, "run": { "attempt": "1", - "id": "25877435852", + "id": "26658737633", "job_name": "test-buildah / test-buildah", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:17Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251946" + "timestamp": "2026-05-29T19:49:21Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549916" }, "schema_version": "2.0", "tests": { @@ -8984,31 +8984,31 @@ "duration_seconds": 0, "name": "Test 1 - Validate baseline image manifest and pull", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251946#step:5:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549916#step:5:1" }, { "duration_seconds": 0, "name": "Test 2 - Inspect pulled baseline image", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251946#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549916#step:6:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Buildah version", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251946#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549916#step:7:1" }, { "duration_seconds": 0, "name": "Test 4 - Check Buildah help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251946#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549916#step:8:1" }, { "duration_seconds": 0, "name": "Test 5 - Run bounded Buildah functional smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251946#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549916#step:9:1" }, { "comparison": "Buildah candidate image(s) expose linux/arm64 manifests and pull successfully.", @@ -9020,10 +9020,10 @@ "next_installed_version": "latest", "regression_result": "Next image validation passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251946#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549916#step:10:1" } ], - "duration_seconds": 43, + "duration_seconds": 45, "failed": 0, "passed": 6, "skipped": 0 @@ -9038,7 +9038,7 @@ "dashboard_link": "/linux/opensource_packages/buildkite-agent", "job_url_resolution_status": "central_exact", "package_slug": "buildkite-agent", - "production_refreshed_at": "2026-05-14T19:37:17.288452+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.501688+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -9050,15 +9050,15 @@ }, "run": { "attempt": "1", - "id": "25877371674", + "id": "26658681575", "job_name": "test-buildkite-agent / test-buildkite-agent", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:58Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031663" + "timestamp": "2026-05-29T19:48:08Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357986" }, "schema_version": "2.0", "tests": { @@ -9067,37 +9067,37 @@ "duration_seconds": 0, "name": "Test 1 - Check binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031663#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357986#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031663#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357986#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031663#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357986#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Check Configuration", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031663#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357986#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031663#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357986#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031663#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357986#step:11:1" } ], "duration_seconds": 0, @@ -9115,7 +9115,7 @@ "dashboard_link": "/linux/opensource_packages/buildkite-cli", "job_url_resolution_status": "central_exact", "package_slug": "buildkite-cli", - "production_refreshed_at": "2026-05-14T19:37:17.288661+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.501852+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -9129,15 +9129,15 @@ }, "run": { "attempt": "1", - "id": "25877392111", + "id": "26658699892", "job_name": "test-buildkite-cli / test-buildkite-cli", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:22Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096553" + "timestamp": "2026-05-29T19:48:29Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421102" }, "schema_version": "2.0", "tests": { @@ -9146,31 +9146,31 @@ "duration_seconds": 0, "name": "Test 1 - Check binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096553#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421102#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096553#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421102#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096553#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421102#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096553#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421102#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096553#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421102#step:10:1" }, { "comparison": "Current pinned Buildkite CLI version 3.7.1 passed smoke tests in this run. Regression validation installed candidate version 3.8.0 on Arm64, and the installed binary reported version 3.8.0.", @@ -9182,7 +9182,7 @@ "next_installed_version": "3.8.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096553#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421102#step:11:1" } ], "duration_seconds": 0, @@ -9200,7 +9200,7 @@ "dashboard_link": "/linux/opensource_packages/buildkite-elastic-ci-stack-for-aws", "job_url_resolution_status": "central_exact", "package_slug": "buildkite-elastic-ci-stack-for-aws", - "production_refreshed_at": "2026-05-14T19:37:17.288886+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.502016+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -9214,15 +9214,15 @@ }, "run": { "attempt": "1", - "id": "25877375677", + "id": "26658685142", "job_name": "test-buildkite-elastic-ci-stack-for-aws / test-buildkite-elastic-ci-stack-for-aws", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:03Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043648" + "timestamp": "2026-05-29T19:48:11Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369850" }, "schema_version": "2.0", "tests": { @@ -9231,31 +9231,31 @@ "duration_seconds": 0, "name": "Test 1 - Check repository exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043648#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369850#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check for packer templates", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043648#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369850#step:7:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 3 - Parse CloudFormation templates", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043648#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369850#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043648#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369850#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Validate Arm64 Stack Support", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043648#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369850#step:10:1" }, { "comparison": "Buildkite Elastic CI Stack baseline v6.30.0 passed local template parsing and explicit Arm64 stack validation, and candidate v6.31.0 preserves the Packer, CloudFormation, and Arm64/Graviton support references.", @@ -9267,10 +9267,10 @@ "next_installed_version": "v6.31.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043648#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369850#step:11:1" } ], - "duration_seconds": 1, + "duration_seconds": 0, "failed": 0, "passed": 6, "skipped": 0 @@ -9285,7 +9285,7 @@ "dashboard_link": "/linux/opensource_packages/buildpacks", "job_url_resolution_status": "central_exact", "package_slug": "buildpacks", - "production_refreshed_at": "2026-05-14T19:37:17.289103+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.502190+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -9299,15 +9299,15 @@ }, "run": { "attempt": "1", - "id": "25877379982", + "id": "26658688675", "job_name": "test-buildpacks / test-buildpacks", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:05Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057355" + "timestamp": "2026-05-29T19:48:15Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380674" }, "schema_version": "2.0", "tests": { @@ -9316,46 +9316,46 @@ "duration_seconds": 0, "name": "Test 1 - Check binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057355#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380674#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057355#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380674#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057355#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380674#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Run pack report", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057355#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380674#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057355#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380674#step:10:1" }, { "comparison": "Current pinned pack version 0.37.0 passed smoke tests in this run. Regression validation installed candidate version 0.38.0 on Arm64, and the installed binary reported version 0.38.0.", "current_version": "0.37.0", "decision": "next_install_validated", - "duration_seconds": 0, + "duration_seconds": 1, "latest_version": "0.38.0", "name": "Test 6 - Regression Validation", "next_installed_version": "0.38.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057355#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380674#step:11:1" } ], - "duration_seconds": 0, + "duration_seconds": 1, "failed": 0, "passed": 6, "skipped": 0 @@ -9370,7 +9370,7 @@ "dashboard_link": "/linux/opensource_packages/busybox", "job_url_resolution_status": "central_exact", "package_slug": "busybox", - "production_refreshed_at": "2026-05-14T19:37:17.289285+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.507332+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -9382,15 +9382,15 @@ }, "run": { "attempt": "1", - "id": "25877403044", + "id": "26658710721", "job_name": "test-busybox / test-busybox", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:37Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140866" + "timestamp": "2026-05-29T19:48:43Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456219" }, "schema_version": "2.0", "tests": { @@ -9399,37 +9399,37 @@ "duration_seconds": 0, "name": "Test 1 - Check binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140866#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456219#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140866#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456219#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140866#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456219#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify architecture", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140866#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456219#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Run BusyBox applets", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140866#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456219#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140866#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456219#step:11:1" } ], "duration_seconds": 0, @@ -9447,7 +9447,7 @@ "dashboard_link": "/linux/opensource_packages/bytebase", "job_url_resolution_status": "central_exact", "package_slug": "bytebase", - "production_refreshed_at": "2026-05-14T19:37:17.289480+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.507532+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -9461,15 +9461,15 @@ }, "run": { "attempt": "1", - "id": "25877423406", + "id": "26658727918", "job_name": "test-bytebase / test-bytebase", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:09Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209531" + "timestamp": "2026-05-29T19:49:06Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516081" }, "schema_version": "2.0", "tests": { @@ -9478,46 +9478,46 @@ "duration_seconds": 0, "name": "Test 1 - Check image exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209531#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516081#step:6:1" }, { - "duration_seconds": 14, + "duration_seconds": 16, "name": "Test 2 - Start Bytebase current container", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209531#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516081#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check current Bytebase HTTP response", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209531#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516081#step:8:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 4 - Check current version in logs", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209531#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516081#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209531#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516081#step:10:1" }, { "comparison": "Current pinned Bytebase version 3.6.0 passed smoke tests in this run. Regression validation installed candidate version 3.6.1 on Arm64, and the container startup logs reported version 3.6.1.", "current_version": "3.6.0", "decision": "next_install_validated", - "duration_seconds": 31, + "duration_seconds": 35, "latest_version": "3.6.1", "name": "Test 6 - Regression Validation", "next_installed_version": "3.6.1", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209531#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516081#step:12:1" } ], - "duration_seconds": 45, + "duration_seconds": 52, "failed": 0, "passed": 6, "skipped": 0 @@ -9532,7 +9532,7 @@ "dashboard_link": "/linux/opensource_packages/caddy", "job_url_resolution_status": "central_exact", "package_slug": "caddy", - "production_refreshed_at": "2026-05-14T19:37:17.289663+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.507720+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -9546,15 +9546,15 @@ }, "run": { "attempt": "1", - "id": "25877399008", + "id": "26658707245", "job_name": "test-caddy / test-caddy", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:31Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048124768" + "timestamp": "2026-05-29T19:48:38Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445515" }, "schema_version": "2.0", "tests": { @@ -9563,31 +9563,31 @@ "duration_seconds": 0, "name": "Test 1 - Check caddy binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048124768#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445515#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check caddy version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048124768#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445515#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check caddy help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048124768#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445515#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048124768#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445515#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation (Validate Config)", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048124768#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445515#step:10:1" }, { "comparison": "Current pinned Caddy version v2.9.0 passed smoke tests in this run. Regression validation installed candidate version v2.9.1 on Arm64, and the installed binary reported version v2.9.1.", @@ -9599,7 +9599,7 @@ "next_installed_version": "v2.9.1", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048124768#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445515#step:11:1" } ], "duration_seconds": 1, @@ -9617,7 +9617,7 @@ "dashboard_link": "/linux/opensource_packages/cadvisor", "job_url_resolution_status": "central_exact", "package_slug": "cadvisor", - "production_refreshed_at": "2026-05-14T19:37:17.289864+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.507892+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -9631,15 +9631,15 @@ }, "run": { "attempt": "1", - "id": "25877423406", + "id": "26658727918", "job_name": "test-cadvisor / test-cadvisor", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:14Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210365" + "timestamp": "2026-05-29T19:49:08Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515959" }, "schema_version": "2.0", "tests": { @@ -9648,46 +9648,46 @@ "duration_seconds": 0, "name": "Test 1 - Check cadvisor binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210365#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515959#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check cadvisor version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210365#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515959#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check cadvisor help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210365#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515959#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210365#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515959#step:9:1" }, { "duration_seconds": 5, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210365#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515959#step:10:1" }, { "comparison": "Current pinned cadvisor version v0.52.1 passed smoke tests in this run. Regression validation installed candidate version 0.53.0 on Arm64, and the installed binary reported version 0.53.0.", "current_version": "v0.52.1", "decision": "next_install_validated", - "duration_seconds": 0, + "duration_seconds": 2, "latest_version": "0.53.0", "name": "Test 6 - Regression Validation", "next_installed_version": "0.53.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210365#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515959#step:11:1" } ], - "duration_seconds": 5, + "duration_seconds": 6, "failed": 0, "passed": 6, "skipped": 0 @@ -9702,7 +9702,7 @@ "dashboard_link": "/linux/opensource_packages/caffe", "job_url_resolution_status": "central_exact", "package_slug": "caffe", - "production_refreshed_at": "2026-05-14T19:37:17.290076+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.508057+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "no_newer_stable_available", @@ -9716,15 +9716,15 @@ }, "run": { "attempt": "1", - "id": "25877399008", + "id": "26658707245", "job_name": "test-caffe / test-caffe", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:32Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126349" + "timestamp": "2026-05-29T19:48:39Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445313" }, "schema_version": "2.0", "tests": { @@ -9733,31 +9733,31 @@ "duration_seconds": 0, "name": "Test 1 - Check Source Directory", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126349#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445313#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Include Directory", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126349#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445313#step:7:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 3 - Check CMakeLists.txt", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126349#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445313#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126349#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445313#step:9:1" }, { - "duration_seconds": 5, + "duration_seconds": 3, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126349#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445313#step:10:1" }, { "comparison": "Public Caffe releases stop at 1.0.0, so there is no newer stable release for a real Arm64 Test 6 upgrade validation.", @@ -9769,10 +9769,10 @@ "next_installed_version": "not_installed", "regression_result": "No newer stable public release is available", "status": "skipped", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126349#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445313#step:11:1" } ], - "duration_seconds": 5, + "duration_seconds": 3, "failed": 0, "passed": 5, "skipped": 1 @@ -9787,7 +9787,7 @@ "dashboard_link": "/linux/opensource_packages/calico", "job_url_resolution_status": "central_exact", "package_slug": "calico", - "production_refreshed_at": "2026-05-14T19:37:17.290285+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.508222+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -9801,15 +9801,15 @@ }, "run": { "attempt": "1", - "id": "25877363365", + "id": "26658674448", "job_name": "test-calico / test-calico", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:47Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000840" + "timestamp": "2026-05-29T19:47:57Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334477" }, "schema_version": "2.0", "tests": { @@ -9818,46 +9818,46 @@ "duration_seconds": 0, "name": "Test 1 - Check calicoctl binary architecture", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000840#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334477#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check calicoctl help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000840#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334477#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Version", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000840#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334477#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000840#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334477#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000840#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334477#step:10:1" }, { "comparison": "Current pinned Calico version v3.29.2 passed smoke tests in this run. Regression validation installed candidate version v3.29.3 on Arm64, and the downloaded binary reported version v3.29.3.", "current_version": "v3.29.2", "decision": "next_install_validated", - "duration_seconds": 1, + "duration_seconds": 2, "latest_version": "v3.29.3", "name": "Test 6 - Regression Validation", "next_installed_version": "v3.29.3", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000840#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334477#step:11:1" } ], - "duration_seconds": 1, + "duration_seconds": 2, "failed": 0, "passed": 6, "skipped": 0 @@ -9872,7 +9872,7 @@ "dashboard_link": "/linux/opensource_packages/camelk", "job_url_resolution_status": "central_exact", "package_slug": "camelk", - "production_refreshed_at": "2026-05-14T19:37:17.290484+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.508422+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -9886,15 +9886,15 @@ }, "run": { "attempt": "1", - "id": "25877403044", + "id": "26658710721", "job_name": "test-camelk / test-camelk", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:37Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048141038" + "timestamp": "2026-05-29T19:48:43Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456387" }, "schema_version": "2.0", "tests": { @@ -9903,31 +9903,31 @@ "duration_seconds": 0, "name": "Test 1 - Check kamel binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048141038#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456387#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check kamel version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048141038#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456387#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check kamel help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048141038#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456387#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048141038#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456387#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048141038#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456387#step:10:1" }, { "comparison": "Current pinned Apache Camel K version v2.5.1 passed smoke tests in this run. Regression validation installed candidate version v2.6.0 on Arm64, and the downloaded client reported version v2.6.0.", @@ -9939,7 +9939,7 @@ "next_installed_version": "v2.6.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048141038#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456387#step:11:1" } ], "duration_seconds": 1, @@ -9957,7 +9957,7 @@ "dashboard_link": "/linux/opensource_packages/canonical-ceph", "job_url_resolution_status": "central_exact", "package_slug": "canonical-ceph", - "production_refreshed_at": "2026-05-14T19:37:17.290704+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.508596+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -9970,15 +9970,15 @@ }, "run": { "attempt": "1", - "id": "25877367704", + "id": "26658677990", "job_name": "test-canonical-ceph / test-canonical-ceph", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:55Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026680" + "timestamp": "2026-05-29T19:48:03Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347730" }, "schema_version": "2.0", "tests": { @@ -9987,37 +9987,37 @@ "duration_seconds": 0, "name": "Test 1 - Install Canonical Ceph client package", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026680#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347730#step:8:1" }, { "duration_seconds": 0, "name": "Test 2 - Validate dashboard metadata and supported baseline", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026680#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347730#step:9:1" }, { "duration_seconds": 0, "name": "Test 3 - Verify Ceph client commands and package files", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026680#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347730#step:10:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify Arm64 runner and package architecture", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026680#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347730#step:11:1" }, { "duration_seconds": 0, "name": "Test 5 - Run bounded Ceph client smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026680#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347730#step:12:1" }, { "duration_seconds": 1, "name": "Test 6 - Regression Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026680#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347730#step:13:1" } ], "duration_seconds": 1, @@ -10035,7 +10035,7 @@ "dashboard_link": "/linux/opensource_packages/canu", "job_url_resolution_status": "central_exact", "package_slug": "canu", - "production_refreshed_at": "2026-05-14T19:37:17.290942+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.508761+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -10047,15 +10047,15 @@ }, "run": { "attempt": "1", - "id": "25877375677", + "id": "26658685142", "job_name": "test-canu / test-canu", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:02Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044668" + "timestamp": "2026-05-29T19:48:10Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370917" }, "schema_version": "2.0", "tests": { @@ -10064,37 +10064,37 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044668#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370917#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044668#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370917#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044668#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370917#step:8:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044668#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370917#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044668#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370917#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044668#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370917#step:11:1" } ], "duration_seconds": 0, @@ -10112,7 +10112,7 @@ "dashboard_link": "/linux/opensource_packages/cashpack", "job_url_resolution_status": "central_exact", "package_slug": "cashpack", - "production_refreshed_at": "2026-05-14T19:37:17.291228+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.509024+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "no_newer_stable_available", @@ -10126,15 +10126,15 @@ }, "run": { "attempt": "1", - "id": "25877419588", + "id": "26658724696", "job_name": "test-cashpack / test-cashpack", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:58Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192231" + "timestamp": "2026-05-29T19:49:02Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503938" }, "schema_version": "2.0", "tests": { @@ -10143,31 +10143,31 @@ "duration_seconds": 0, "name": "Test 1 - Check built library artifacts", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192231#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503938#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check public headers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192231#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503938#step:7:1" }, { "duration_seconds": 3, "name": "Test 3 - Run upstream test suite", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192231#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503938#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Check test binaries", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192231#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503938#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192231#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503938#step:10:1" }, { "comparison": "The currently public Cashpack source snapshot builds and passes upstream checks on Arm64 in this run, but no newer tagged stable release is publicly available for an honest Test 6 upgrade validation.", @@ -10179,7 +10179,7 @@ "next_installed_version": "not_installed", "regression_result": "No newer stable public release is available for Cashpack", "status": "skipped", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192231#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503938#step:11:1" } ], "duration_seconds": 3, @@ -10197,7 +10197,7 @@ "dashboard_link": "/linux/opensource_packages/cassandra", "job_url_resolution_status": "central_exact", "package_slug": "cassandra", - "production_refreshed_at": "2026-05-14T19:37:17.291436+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.509203+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -10209,15 +10209,15 @@ }, "run": { "attempt": "1", - "id": "25877355625", + "id": "26658667828", "job_name": "test-cassandra / test-cassandra", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:37Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976732" + "timestamp": "2026-05-29T19:47:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308782" }, "schema_version": "2.0", "tests": { @@ -10226,40 +10226,40 @@ "duration_seconds": 0, "name": "Test 1 - Check binaries exist", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976732#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308782#step:7:1" }, { "duration_seconds": 1, "name": "Test 2 - Check version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976732#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308782#step:8:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 3 - Check nodetool help", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976732#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308782#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976732#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308782#step:10:1" }, { "duration_seconds": 39, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976732#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308782#step:11:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976732#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308782#step:12:1" } ], - "duration_seconds": 41, + "duration_seconds": 40, "failed": 0, "passed": 6, "skipped": 0 @@ -10274,7 +10274,7 @@ "dashboard_link": "/linux/opensource_packages/catboost", "job_url_resolution_status": "central_exact", "package_slug": "catboost", - "production_refreshed_at": "2026-05-14T19:37:17.291634+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.509425+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -10288,15 +10288,15 @@ }, "run": { "attempt": "1", - "id": "25877367704", + "id": "26658677990", "job_name": "test-catboost / test-catboost", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:04Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026793" + "timestamp": "2026-05-29T19:48:14Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347565" }, "schema_version": "2.0", "tests": { @@ -10305,46 +10305,46 @@ "duration_seconds": 0, "name": "Test 1 - Check package-specific baseline markers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026793#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347565#step:9:1" }, { "duration_seconds": 0, "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026793#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347565#step:10:1" }, { "duration_seconds": 0, "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026793#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347565#step:11:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026793#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347565#step:12:1" }, { "duration_seconds": 7, "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026793#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347565#step:13:1" }, { "comparison": "Installed the next CatBoost candidate on the Arm64 runner, trained a tiny CPU classifier, and produced predictions.", "current_version": "1.1.1", "decision": "limited_cpu_smoke_validated", - "duration_seconds": 62, + "duration_seconds": 56, "latest_version": "1.2.10", "name": "Test 6 - Regression Validation", "next_installed_version": "1.2.10", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026793#step:14:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347565#step:14:1" } ], - "duration_seconds": 62, + "duration_seconds": 56, "failed": 0, "passed": 6, "skipped": 0 @@ -10359,7 +10359,7 @@ "dashboard_link": "/linux/opensource_packages/catj", "job_url_resolution_status": "central_exact", "package_slug": "catj", - "production_refreshed_at": "2026-05-14T19:37:17.291835+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.509614+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -10371,15 +10371,15 @@ }, "run": { "attempt": "1", - "id": "25877387746", + "id": "26658696365", "job_name": "test-catj / test-catj", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:15Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083665" + "timestamp": "2026-05-29T19:48:25Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575406578" }, "schema_version": "2.0", "tests": { @@ -10388,37 +10388,37 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083665#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575406578#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Run Help", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083665#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575406578#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Process JSON File", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083665#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575406578#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Check Nested JSON", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083665#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575406578#step:10:1" }, { "duration_seconds": 0, "name": "Test 5 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083665#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575406578#step:11:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083665#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575406578#step:12:1" } ], "duration_seconds": 0, @@ -10436,7 +10436,7 @@ "dashboard_link": "/linux/opensource_packages/cccl", "job_url_resolution_status": "central_exact", "package_slug": "cccl", - "production_refreshed_at": "2026-05-14T19:37:17.292052+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.509787+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -10450,15 +10450,15 @@ }, "run": { "attempt": "1", - "id": "25877371674", + "id": "26658681575", "job_name": "test-cccl / test-cccl", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:00Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031859" + "timestamp": "2026-05-29T19:48:07Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357983" }, "schema_version": "2.0", "tests": { @@ -10467,46 +10467,46 @@ "duration_seconds": 0, "name": "Test 1 - Check package-specific baseline markers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031859#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357983#step:8:1" }, { "duration_seconds": 0, "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031859#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357983#step:9:1" }, { "duration_seconds": 0, "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031859#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357983#step:10:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031859#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357983#step:11:1" }, { - "duration_seconds": 5, + "duration_seconds": 2, "name": "Test 5 - Run scoped Arm preflight proof", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031859#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357983#step:12:1" }, { "comparison": "Test 6 limited_cpu_smoke_validated: reran the same bounded scoped Arm source/compile/import/help/manifest preflight against the next stable candidate. This is CPU-side preflight evidence only; no GPU/CUDA driver/runtime, accelerator execution, Kubernetes cluster, or full product runtime is claimed.", "current_version": "0.3.0", "decision": "limited_cpu_smoke_validated", - "duration_seconds": 4, + "duration_seconds": 3, "latest_version": "3.3.3", "name": "Test 6 - Regression Validation", "next_installed_version": "3.3.3", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031859#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357983#step:13:1" } ], - "duration_seconds": 9, + "duration_seconds": 5, "failed": 0, "passed": 6, "skipped": 0 @@ -10521,7 +10521,7 @@ "dashboard_link": "/linux/opensource_packages/celery", "job_url_resolution_status": "central_exact", "package_slug": "celery", - "production_refreshed_at": "2026-05-14T19:37:17.292234+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.509971+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -10533,15 +10533,15 @@ }, "run": { "attempt": "1", - "id": "25877406767", + "id": "26658714432", "job_name": "test-celery / test-celery", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:42Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155476" + "timestamp": "2026-05-29T19:48:48Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469251" }, "schema_version": "2.0", "tests": { @@ -10550,37 +10550,37 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155476#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469251#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Run Help", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155476#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469251#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Create Simple Task", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155476#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469251#step:9:1" }, { "duration_seconds": 2, "name": "Test 4 - Inspect Worker", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155476#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469251#step:10:1" }, { "duration_seconds": 0, "name": "Test 5 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155476#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469251#step:11:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155476#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469251#step:12:1" } ], "duration_seconds": 2, @@ -10598,7 +10598,7 @@ "dashboard_link": "/linux/opensource_packages/centos", "job_url_resolution_status": "central_exact", "package_slug": "centos", - "production_refreshed_at": "2026-05-14T19:37:17.292441+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.510151+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -10612,15 +10612,15 @@ }, "run": { "attempt": "1", - "id": "25877359516", + "id": "26658670904", "job_name": "test-centos / test-centos", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:47Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991352" + "timestamp": "2026-05-29T19:47:53Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321851" }, "schema_version": "2.0", "tests": { @@ -10629,46 +10629,46 @@ "duration_seconds": 0, "name": "Test 1 - Check Image Availability", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991352#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321851#step:6:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991352#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321851#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991352#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321851#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991352#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321851#step:9:1" }, { - "duration_seconds": 13, + "duration_seconds": 11, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991352#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321851#step:10:1" }, { "comparison": "Current baseline tag stream9 resolved to CentOS Stream 9 and passed smoke tests. Regression validation pulled stream10, which resolved to CentOS Stream 10 and passed the same package-manager smoke on Arm64.", "current_version": "9", "decision": "next_install_validated", - "duration_seconds": 18, + "duration_seconds": 16, "latest_version": "10", "name": "Test 6 - Regression Validation", "next_installed_version": "10", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991352#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321851#step:11:1" } ], - "duration_seconds": 31, + "duration_seconds": 28, "failed": 0, "passed": 6, "skipped": 0 @@ -10683,7 +10683,7 @@ "dashboard_link": "/linux/opensource_packages/ceph", "job_url_resolution_status": "central_exact", "package_slug": "ceph", - "production_refreshed_at": "2026-05-14T19:37:17.292636+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.510349+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -10695,54 +10695,54 @@ }, "run": { "attempt": "1", - "id": "25877355625", + "id": "26658667828", "job_name": "test-ceph / test-ceph", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:38Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976615" + "timestamp": "2026-05-29T19:47:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308816" }, "schema_version": "2.0", "tests": { "details": [ { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 1 - Check ceph client binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976615#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308816#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check cephadm binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976615#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308816#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Ceph version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976615#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308816#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Check rados binary (RADOS object store)", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976615#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308816#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Check rbd binary (RADOS Block Device)", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976615#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308816#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976615#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308816#step:11:1" } ], "duration_seconds": 0, @@ -10760,7 +10760,7 @@ "dashboard_link": "/linux/opensource_packages/cert-manager", "job_url_resolution_status": "central_exact", "package_slug": "cert-manager", - "production_refreshed_at": "2026-05-14T19:37:17.292867+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.510521+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -10774,15 +10774,15 @@ }, "run": { "attempt": "1", - "id": "25877367704", + "id": "26658677990", "job_name": "test-cert-manager / test-cert-manager", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:56Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027152" + "timestamp": "2026-05-29T19:48:04Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347667" }, "schema_version": "2.0", "tests": { @@ -10791,31 +10791,31 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027152#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347667#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Run Help", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027152#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347667#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Client Version", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027152#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347667#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Check Completion", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027152#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347667#step:10:1" }, { "duration_seconds": 0, "name": "Test 5 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027152#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347667#step:11:1" }, { "comparison": "Current pinned cert-manager cmctl version 2.1.0 passed smoke tests in this run. Regression validation installed candidate version 2.1.1 on Arm64 and verified the downloaded cmctl binary can execute the client/help path.", @@ -10827,7 +10827,7 @@ "next_installed_version": "2.1.1", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027152#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347667#step:12:1" } ], "duration_seconds": 1, @@ -10845,7 +10845,7 @@ "dashboard_link": "/linux/opensource_packages/cf-cli", "job_url_resolution_status": "central_exact", "package_slug": "cf-cli", - "production_refreshed_at": "2026-05-14T19:37:17.293053+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.510692+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -10859,15 +10859,15 @@ }, "run": { "attempt": "1", - "id": "25877375677", + "id": "26658685142", "job_name": "test-cf-cli / test-cf-cli", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:04Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044636" + "timestamp": "2026-05-29T19:48:11Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370615" }, "schema_version": "2.0", "tests": { @@ -10876,46 +10876,46 @@ "duration_seconds": 0, "name": "Test 1 - Check cf binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044636#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370615#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check cf-cli version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044636#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370615#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check cf-cli help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044636#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370615#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044636#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370615#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044636#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370615#step:10:1" }, { "comparison": "Current pinned Cloud Foundry CLI version 8.10.0 passed smoke tests in this run. Regression validation installed candidate version 8.11.0 on Arm64, and the installed binary reported version 8.11.0.", "current_version": "8.10.0", "decision": "next_install_validated", - "duration_seconds": 0, + "duration_seconds": 1, "latest_version": "8.11.0", "name": "Test 6 - Regression Validation", "next_installed_version": "8.11.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044636#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370615#step:11:1" } ], - "duration_seconds": 0, + "duration_seconds": 1, "failed": 0, "passed": 6, "skipped": 0 @@ -10930,7 +10930,7 @@ "dashboard_link": "/linux/opensource_packages/cgal", "job_url_resolution_status": "central_exact", "package_slug": "cgal", - "production_refreshed_at": "2026-05-14T19:37:17.293277+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.511494+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -10942,15 +10942,15 @@ }, "run": { "attempt": "1", - "id": "25877387746", + "id": "26658696365", "job_name": "test-cgal / test-cgal", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:15Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048085214" + "timestamp": "2026-05-29T19:48:24Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407673" }, "schema_version": "2.0", "tests": { @@ -10959,37 +10959,37 @@ "duration_seconds": 0, "name": "Test 1 - Check libcgal-dev handles", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048085214#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407673#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version header existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048085214#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407673#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check basic header existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048085214#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407673#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048085214#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407673#step:9:1" }, { "duration_seconds": 7, "name": "Test 5 - Basic Library Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048085214#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407673#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048085214#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407673#step:11:1" } ], "duration_seconds": 7, @@ -11007,7 +11007,7 @@ "dashboard_link": "/linux/opensource_packages/chaos-mesh", "job_url_resolution_status": "central_exact", "package_slug": "chaos-mesh", - "production_refreshed_at": "2026-05-14T19:37:17.293488+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.511683+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -11021,15 +11021,15 @@ }, "run": { "attempt": "1", - "id": "25877419588", + "id": "26658724696", "job_name": "test-chaos-mesh / test-chaos-mesh", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:58Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192665" + "timestamp": "2026-05-29T19:49:02Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504104" }, "schema_version": "2.0", "tests": { @@ -11038,31 +11038,31 @@ "duration_seconds": 0, "name": "Test 1 - Check binary", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192665#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504104#step:8:1" }, { "duration_seconds": 0, "name": "Test 2 - Run help", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192665#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504104#step:9:1" }, { "duration_seconds": 0, "name": "Test 3 - Check completion generation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192665#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504104#step:10:1" }, { "duration_seconds": 0, "name": "Test 4 - Check debug subcommand availability", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192665#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504104#step:11:1" }, { "duration_seconds": 0, "name": "Test 5 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192665#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504104#step:12:1" }, { "comparison": "Current pinned Chaos Mesh source tag 2.7.1 passed smoke tests in this run. Regression validation built the next published source tag 2.7.2 on Arm64 and verified the resulting chaosctl binary with real help and completion probes. chaosctl does not expose a clean self-reported semver banner, so the validated version is anchored to the official source tag that was built.", @@ -11074,7 +11074,7 @@ "next_installed_version": "2.7.2", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192665#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504104#step:13:1" } ], "duration_seconds": 4, @@ -11092,7 +11092,7 @@ "dashboard_link": "/linux/opensource_packages/chaossearch", "job_url_resolution_status": "central_exact", "package_slug": "chaossearch", - "production_refreshed_at": "2026-05-14T19:37:17.293702+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.511859+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -11106,15 +11106,15 @@ }, "run": { "attempt": "1", - "id": "25877379982", + "id": "26658688675", "job_name": "test-chaossearch / test-chaossearch", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:05Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057425" + "timestamp": "2026-05-29T19:48:15Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380806" }, "schema_version": "2.0", "tests": { @@ -11123,31 +11123,31 @@ "duration_seconds": 0, "name": "Test 1 - Check chaossearch binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057425#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380806#step:6:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 2 - Validate with Terraform init", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057425#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380806#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check provider binary info", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057425#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380806#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057425#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380806#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Provider startup message", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057425#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380806#step:10:1" }, { "comparison": "Current pinned Terraform-provider-chaossearch release 1.0.20 passed smoke tests in this run. Regression validation downloaded the official Arm64 release asset for 1.0.21, verified the candidate binary is an ARM64 executable, and completed a bounded terraform init on Arm64.", @@ -11159,10 +11159,10 @@ "next_installed_version": "1.0.21", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057425#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380806#step:11:1" } ], - "duration_seconds": 1, + "duration_seconds": 0, "failed": 0, "passed": 6, "skipped": 0 @@ -11177,7 +11177,7 @@ "dashboard_link": "/linux/opensource_packages/checkov", "job_url_resolution_status": "central_exact", "package_slug": "checkov", - "production_refreshed_at": "2026-05-14T19:37:17.293937+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.512027+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -11185,19 +11185,19 @@ }, "package": { "name": "Checkov", - "version": "3.2.529" + "version": "3.2.530" }, "run": { "attempt": "1", - "id": "25877392111", + "id": "26658699892", "job_name": "test-checkov / test-checkov", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:23Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096520" + "timestamp": "2026-05-29T19:48:30Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421020" }, "schema_version": "2.0", "tests": { @@ -11206,40 +11206,40 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096520#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421020#step:7:1" }, { - "duration_seconds": 1, + "duration_seconds": 2, "name": "Test 2 - Run Help", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096520#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421020#step:8:1" }, { - "duration_seconds": 16, + "duration_seconds": 5, "name": "Test 3 - Scan Terraform File", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096520#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421020#step:9:1" }, { - "duration_seconds": 4, + "duration_seconds": 3, "name": "Test 4 - List Checks", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096520#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421020#step:10:1" }, { "duration_seconds": 0, "name": "Test 5 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096520#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421020#step:11:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096520#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421020#step:12:1" } ], - "duration_seconds": 21, + "duration_seconds": 10, "failed": 0, "passed": 6, "skipped": 0 @@ -11254,7 +11254,7 @@ "dashboard_link": "/linux/opensource_packages/chef-infra", "job_url_resolution_status": "central_exact", "package_slug": "chef-infra", - "production_refreshed_at": "2026-05-14T19:37:17.294129+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.512193+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -11268,15 +11268,15 @@ }, "run": { "attempt": "1", - "id": "25877427741", + "id": "26658731236", "job_name": "test-chef-infra / test-chef-infra", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:05Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217841" + "timestamp": "2026-05-29T19:49:11Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575528463" }, "schema_version": "2.0", "tests": { @@ -11285,46 +11285,46 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217841#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575528463#step:7:1" }, { "duration_seconds": 1, "name": "Test 2 - Run Help", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217841#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575528463#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Ohai", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217841#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575528463#step:9:1" }, { - "duration_seconds": 10, + "duration_seconds": 8, "name": "Test 4 - Local Mode Run", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217841#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575528463#step:10:1" }, { "duration_seconds": 0, "name": "Test 5 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217841#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575528463#step:11:1" }, { "comparison": "Current pinned version 18.8.54 passed Tests 1-5 in this run. The next candidate 18.10.17 downloaded and installed successfully on Arm64, and chef-client reported 18.10.17.", "current_version": "18.8.54", "decision": "next_install_validated", - "duration_seconds": 6, + "duration_seconds": 7, "latest_version": "18.10.17", "name": "Test 6 - Regression Validation", "next_installed_version": "18.10.17", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217841#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575528463#step:12:1" } ], - "duration_seconds": 11, + "duration_seconds": 9, "failed": 0, "passed": 6, "skipped": 0 @@ -11339,7 +11339,7 @@ "dashboard_link": "/linux/opensource_packages/chiaki-ng", "job_url_resolution_status": "central_exact", "package_slug": "chiaki-ng", - "production_refreshed_at": "2026-05-14T19:37:17.294334+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.512399+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -11353,15 +11353,15 @@ }, "run": { "attempt": "1", - "id": "25877371674", + "id": "26658681575", "job_name": "test-chiaki-ng / test-chiaki-ng", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:59Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031974" + "timestamp": "2026-05-29T19:48:08Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358028" }, "schema_version": "2.0", "tests": { @@ -11370,46 +11370,46 @@ "duration_seconds": 0, "name": "Test 1 - Check package-specific baseline markers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031974#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358028#step:8:1" }, { "duration_seconds": 0, "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031974#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358028#step:9:1" }, { "duration_seconds": 0, "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031974#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358028#step:10:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031974#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358028#step:11:1" }, { - "duration_seconds": 3, + "duration_seconds": 6, "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031974#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358028#step:12:1" }, { "comparison": "Test 6 repeated the Chiaki-ng scoped Arm preflight against the next stable release candidate: Arm64 AppImage download, AArch64 executable extraction, and Qt/SDL/FFmpeg/source dependency markers. This does not prove PS4/PS5 registration, controller input, or real stream decode.", "current_version": "1.9.3", "decision": "limited_cpu_smoke_validated", - "duration_seconds": 5, + "duration_seconds": 9, "latest_version": "1.10.0", "name": "Test 6 - Regression Validation", "next_installed_version": "1.10.0", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031974#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358028#step:13:1" } ], - "duration_seconds": 8, + "duration_seconds": 14, "failed": 0, "passed": 6, "skipped": 0 @@ -11424,7 +11424,7 @@ "dashboard_link": "/linux/opensource_packages/chisel-operator", "job_url_resolution_status": "central_exact", "package_slug": "chisel-operator", - "production_refreshed_at": "2026-05-14T19:37:17.294535+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.512575+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -11438,15 +11438,15 @@ }, "run": { "attempt": "1", - "id": "25877367704", + "id": "26658677990", "job_name": "test-chisel-operator / test-chisel-operator", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:56Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027186" + "timestamp": "2026-05-29T19:48:02Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347684" }, "schema_version": "2.0", "tests": { @@ -11455,46 +11455,46 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027186#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347684#step:8:1" }, { "duration_seconds": 0, "name": "Test 2 - Run Help/Version", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027186#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347684#step:9:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Dockerfile", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027186#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347684#step:10:1" }, { "duration_seconds": 0, "name": "Test 4 - Check Manifests", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027186#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347684#step:11:1" }, { "duration_seconds": 0, "name": "Test 5 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027186#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347684#step:12:1" }, { "comparison": "Current pinned Chisel-Operator source tag 0.5.0 passed smoke tests in this run. Regression validation built the candidate source tag 0.5.1 on Arm64 and validated the resulting operator binary with a real help/version probe.", "current_version": "0.5.0", "decision": "next_install_validated", - "duration_seconds": 333, + "duration_seconds": 336, "latest_version": "0.5.1", "name": "Test 6 - Regression Validation", "next_installed_version": "0.5.1", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027186#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347684#step:13:1" } ], - "duration_seconds": 333, + "duration_seconds": 336, "failed": 0, "passed": 6, "skipped": 0 @@ -11509,7 +11509,7 @@ "dashboard_link": "/linux/opensource_packages/chroma", "job_url_resolution_status": "central_exact", "package_slug": "chroma", - "production_refreshed_at": "2026-05-14T19:37:17.294733+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.512748+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -11521,15 +11521,15 @@ }, "run": { "attempt": "1", - "id": "25877379982", + "id": "26658688675", "job_name": "test-chroma / test-chroma", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:06Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056487" + "timestamp": "2026-05-29T19:48:15Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575379781" }, "schema_version": "2.0", "tests": { @@ -11538,37 +11538,37 @@ "duration_seconds": 1, "name": "Test 1 - Check package metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056487#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575379781#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056487#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575379781#step:7:1" }, { "duration_seconds": 1, "name": "Test 3 - Check module import", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056487#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575379781#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify architecture", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056487#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575379781#step:9:1" }, { "duration_seconds": 1, "name": "Test 5 - Functional add and query", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056487#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575379781#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056487#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575379781#step:11:1" } ], "duration_seconds": 3, @@ -11586,7 +11586,7 @@ "dashboard_link": "/linux/opensource_packages/chromium", "job_url_resolution_status": "central_exact", "package_slug": "chromium", - "production_refreshed_at": "2026-05-14T19:37:17.294952+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.512924+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -11598,15 +11598,15 @@ }, "run": { "attempt": "1", - "id": "25877371674", + "id": "26658681575", "job_name": "test-chromium / test-chromium", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:58Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031675" + "timestamp": "2026-05-29T19:48:08Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358194" }, "schema_version": "2.0", "tests": { @@ -11615,37 +11615,37 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031675#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358194#step:6:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031675#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358194#step:7:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 3 - Check Headless Mode", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031675#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358194#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031675#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358194#step:9:1" }, { "duration_seconds": 3, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031675#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358194#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031675#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358194#step:11:1" } ], "duration_seconds": 4, @@ -11663,7 +11663,7 @@ "dashboard_link": "/linux/opensource_packages/cilium", "job_url_resolution_status": "central_exact", "package_slug": "cilium", - "production_refreshed_at": "2026-05-14T19:37:17.295151+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.515234+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -11677,15 +11677,15 @@ }, "run": { "attempt": "1", - "id": "25877415436", + "id": "26658721315", "job_name": "test-cilium / test-cilium", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:51Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180853" + "timestamp": "2026-05-29T19:48:57Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491632" }, "schema_version": "2.0", "tests": { @@ -11694,46 +11694,46 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180853#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491632#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Run Help", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180853#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491632#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Client Version", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180853#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491632#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Check Completion", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180853#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491632#step:10:1" }, { "duration_seconds": 0, "name": "Test 5 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180853#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491632#step:11:1" }, { "comparison": "Current pinned Cilium CLI version 0.18.0 passed smoke tests in this run. Regression validation installed candidate version 0.18.1 on Arm64, and the candidate binary reported version 0.18.1.", "current_version": "0.18.0", "decision": "next_install_validated", - "duration_seconds": 3, + "duration_seconds": 2, "latest_version": "0.18.1", "name": "Test 6 - Regression Validation", "next_installed_version": "0.18.1", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180853#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491632#step:12:1" } ], - "duration_seconds": 3, + "duration_seconds": 2, "failed": 0, "passed": 6, "skipped": 0 @@ -11748,7 +11748,7 @@ "dashboard_link": "/linux/opensource_packages/cinder", "job_url_resolution_status": "central_exact", "package_slug": "cinder", - "production_refreshed_at": "2026-05-14T19:37:17.295366+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.515531+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -11760,15 +11760,15 @@ }, "run": { "attempt": "1", - "id": "25877371674", + "id": "26658681575", "job_name": "test-cinder / test-cinder", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:00Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031017" + "timestamp": "2026-05-29T19:48:07Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357335" }, "schema_version": "2.0", "tests": { @@ -11777,40 +11777,40 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031017#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357335#step:6:1" }, { "duration_seconds": 1, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031017#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357335#step:7:1" }, { - "duration_seconds": 2, + "duration_seconds": 1, "name": "Test 3 - Check Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031017#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357335#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031017#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357335#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031017#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357335#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031017#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357335#step:11:1" } ], - "duration_seconds": 3, + "duration_seconds": 2, "failed": 0, "passed": 6, "skipped": 0 @@ -11825,7 +11825,7 @@ "dashboard_link": "/linux/opensource_packages/circleci_cli", "job_url_resolution_status": "central_exact", "package_slug": "circleci_cli", - "production_refreshed_at": "2026-05-14T19:37:17.295564+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.515788+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -11839,15 +11839,15 @@ }, "run": { "attempt": "1", - "id": "25877363365", + "id": "26658674448", "job_name": "test-circleci_cli / test-circleci_cli", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:48Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001041" + "timestamp": "2026-05-29T19:47:55Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333759" }, "schema_version": "2.0", "tests": { @@ -11856,46 +11856,46 @@ "duration_seconds": 0, "name": "Test 1 - Check circleci_cli binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001041#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333759#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check circleci_cli version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001041#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333759#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check circleci_cli help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001041#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333759#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001041#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333759#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001041#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333759#step:10:1" }, { "comparison": "Current pinned CircleCI CLI version 0.1.31425 passed smoke tests in this run. Regression validation installed candidate version 0.1.31543 on Arm64, and the installed binary reported version 0.1.31543.", "current_version": "0.1.31425", "decision": "next_install_validated", - "duration_seconds": 1, + "duration_seconds": 0, "latest_version": "0.1.31543", "name": "Test 6 - Regression Validation", "next_installed_version": "0.1.31543", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001041#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333759#step:11:1" } ], - "duration_seconds": 1, + "duration_seconds": 0, "failed": 0, "passed": 6, "skipped": 0 @@ -11910,7 +11910,7 @@ "dashboard_link": "/linux/opensource_packages/cjson", "job_url_resolution_status": "central_exact", "package_slug": "cjson", - "production_refreshed_at": "2026-05-14T19:37:17.295756+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.515979+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -11924,15 +11924,15 @@ }, "run": { "attempt": "1", - "id": "25877415436", + "id": "26658721315", "job_name": "test-cjson / test-cjson", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:50Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180600" + "timestamp": "2026-05-29T19:48:56Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491575" }, "schema_version": "2.0", "tests": { @@ -11941,31 +11941,31 @@ "duration_seconds": 0, "name": "Test 1 - Check Header File", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180600#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491575#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180600#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491575#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Check pkg-config flags", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180600#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491575#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify architecture", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180600#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491575#step:10:1" }, { "duration_seconds": 0, "name": "Test 5 - Compile and run test program", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180600#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491575#step:11:1" }, { "comparison": "Current pinned cJSON version 1.7.18 passed smoke tests in this run. Regression validation built, installed, and compiled against candidate version 1.7.19 from source tag v1.7.19 on Arm64.", @@ -11977,7 +11977,7 @@ "next_installed_version": "1.7.19", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180600#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491575#step:12:1" } ], "duration_seconds": 5, @@ -11995,7 +11995,7 @@ "dashboard_link": "/linux/opensource_packages/clang", "job_url_resolution_status": "central_exact", "package_slug": "clang", - "production_refreshed_at": "2026-05-14T19:37:17.296062+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.516265+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -12007,15 +12007,15 @@ }, "run": { "attempt": "1", - "id": "25877419588", + "id": "26658724696", "job_name": "test-clang / test-clang", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:58Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192281" + "timestamp": "2026-05-29T19:49:02Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503984" }, "schema_version": "2.0", "tests": { @@ -12024,37 +12024,37 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192281#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503984#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192281#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503984#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192281#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503984#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify architecture", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192281#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503984#step:9:1" }, { "duration_seconds": 2, "name": "Test 5 - Compile and run C and C++ programs", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192281#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503984#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192281#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503984#step:11:1" } ], "duration_seconds": 2, @@ -12072,7 +12072,7 @@ "dashboard_link": "/linux/opensource_packages/clara-viz", "job_url_resolution_status": "central_exact", "package_slug": "clara-viz", - "production_refreshed_at": "2026-05-14T19:37:17.296306+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.516464+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -12086,15 +12086,15 @@ }, "run": { "attempt": "1", - "id": "25877371674", + "id": "26658681575", "job_name": "test-clara-viz / test-clara-viz", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:59Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031626" + "timestamp": "2026-05-29T19:48:07Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358107" }, "schema_version": "2.0", "tests": { @@ -12103,46 +12103,46 @@ "duration_seconds": 0, "name": "Test 1 - Check package-specific baseline markers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031626#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358107#step:8:1" }, { "duration_seconds": 0, "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031626#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358107#step:9:1" }, { "duration_seconds": 0, "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031626#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358107#step:10:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031626#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358107#step:11:1" }, { "duration_seconds": 0, "name": "Test 5 - Run scoped Arm preflight proof", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031626#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358107#step:12:1" }, { "comparison": "Test 6 limited_cpu_smoke_validated: reran the same bounded scoped Arm source/compile/import/help/manifest preflight against the next stable candidate. This is CPU-side preflight evidence only; no GPU/CUDA driver/runtime, accelerator execution, Kubernetes cluster, or full product runtime is claimed.", "current_version": "0.3.0", "decision": "limited_cpu_smoke_validated", - "duration_seconds": 25, + "duration_seconds": 26, "latest_version": "0.4.2", "name": "Test 6 - Regression Validation", "next_installed_version": "0.4.2", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031626#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358107#step:13:1" } ], - "duration_seconds": 25, + "duration_seconds": 26, "failed": 0, "passed": 6, "skipped": 0 @@ -12157,7 +12157,7 @@ "dashboard_link": "/linux/opensource_packages/clearml-open-source", "job_url_resolution_status": "central_exact", "package_slug": "clearml-open-source", - "production_refreshed_at": "2026-05-14T19:37:17.296519+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.516654+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -12169,15 +12169,15 @@ }, "run": { "attempt": "1", - "id": "25877392111", + "id": "26658699892", "job_name": "test-clearml-open-source / test-clearml-open-source", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:23Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096590" + "timestamp": "2026-05-29T19:48:30Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420661" }, "schema_version": "2.0", "tests": { @@ -12186,40 +12186,40 @@ "duration_seconds": 1, "name": "Test 1 - Check ClearML Import", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096590#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420661#step:6:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 2 - Check pip package info", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096590#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420661#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check clearml-task binary (optional)", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096590#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420661#step:8:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096590#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420661#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096590#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420661#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096590#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420661#step:11:1" } ], - "duration_seconds": 1, + "duration_seconds": 2, "failed": 0, "passed": 6, "skipped": 0 @@ -12234,7 +12234,7 @@ "dashboard_link": "/linux/opensource_packages/clickhouse", "job_url_resolution_status": "central_exact", "package_slug": "clickhouse", - "production_refreshed_at": "2026-05-14T19:37:17.296709+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.517528+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -12248,15 +12248,15 @@ }, "run": { "attempt": "1", - "id": "25877359516", + "id": "26658670904", "job_name": "test-clickhouse / test-clickhouse", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:43Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991371" + "timestamp": "2026-05-29T19:47:53Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321885" }, "schema_version": "2.0", "tests": { @@ -12265,31 +12265,31 @@ "duration_seconds": 0, "name": "Test 1 - Check binary", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991371#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321885#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Run help", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991371#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321885#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Run local query", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991371#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321885#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Simple calculation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991371#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321885#step:10:1" }, { "duration_seconds": 0, "name": "Test 5 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991371#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321885#step:11:1" }, { "comparison": "Current pinned Clickhouse release 25.1.7.20 passed smoke tests in this run. Regression validation downloaded the next stable Arm64 release 25.1.8.25, verified the release checksum, and confirmed both the client banner and clickhouse-local version query report 25.1.8.25 on Arm64.", @@ -12301,7 +12301,7 @@ "next_installed_version": "25.1.8.25", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991371#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321885#step:12:1" } ], "duration_seconds": 4, @@ -12319,7 +12319,7 @@ "dashboard_link": "/linux/opensource_packages/cloud-custodian", "job_url_resolution_status": "central_exact", "package_slug": "cloud-custodian", - "production_refreshed_at": "2026-05-14T19:37:17.296947+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.517733+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -12327,19 +12327,19 @@ }, "package": { "name": "Cloud Custodian", - "version": "0.9.50" + "version": "0.9.51" }, "run": { "attempt": "1", - "id": "25877363365", + "id": "26658674448", "job_name": "test-cloud-custodian / test-cloud-custodian", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:47Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001093" + "timestamp": "2026-05-29T19:47:57Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334735" }, "schema_version": "2.0", "tests": { @@ -12348,37 +12348,37 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001093#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334735#step:7:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 2 - Run Help", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001093#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334735#step:8:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 3 - Check Schema", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001093#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334735#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Validate Policy", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001093#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334735#step:10:1" }, { "duration_seconds": 0, "name": "Test 5 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001093#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334735#step:11:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001093#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334735#step:12:1" } ], "duration_seconds": 1, @@ -12396,7 +12396,7 @@ "dashboard_link": "/linux/opensource_packages/cloud-hypervisor", "job_url_resolution_status": "central_exact", "package_slug": "cloud-hypervisor", - "production_refreshed_at": "2026-05-14T19:37:17.297143+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.517909+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -12410,15 +12410,15 @@ }, "run": { "attempt": "1", - "id": "25877359516", + "id": "26658670904", "job_name": "test-cloud-hypervisor / test-cloud-hypervisor", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:43Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991013" + "timestamp": "2026-05-29T19:47:52Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321677" }, "schema_version": "2.0", "tests": { @@ -12427,46 +12427,46 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991013#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321677#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Run Help", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991013#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321677#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Run Version Probe", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991013#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321677#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Check Seccomp Option", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991013#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321677#step:10:1" }, { "duration_seconds": 0, "name": "Test 5 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991013#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321677#step:11:1" }, { "comparison": "Current pinned Cloud Hypervisor release 47.0.0 passed smoke tests in this run. Regression validation downloaded the next stable Arm64 binary 48.0, and the candidate binary reported version 48.0.0 while exposing the expected seccomp help option on Arm64.", "current_version": "47.0.0", "decision": "next_install_validated", - "duration_seconds": 0, + "duration_seconds": 1, "latest_version": "48.0", "name": "Test 6 - Regression Validation", "next_installed_version": "48.0.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991013#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321677#step:12:1" } ], - "duration_seconds": 0, + "duration_seconds": 1, "failed": 0, "passed": 6, "skipped": 0 @@ -12481,7 +12481,7 @@ "dashboard_link": "/linux/opensource_packages/cloud-native-stack", "job_url_resolution_status": "central_exact", "package_slug": "cloud-native-stack", - "production_refreshed_at": "2026-05-14T19:37:17.297341+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.518087+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -12495,15 +12495,15 @@ }, "run": { "attempt": "1", - "id": "25877375677", + "id": "26658685142", "job_name": "test-cloud-native-stack / test-cloud-native-stack", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:03Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045190" + "timestamp": "2026-05-29T19:48:11Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370484" }, "schema_version": "2.0", "tests": { @@ -12512,31 +12512,31 @@ "duration_seconds": 0, "name": "Test 1 - Check package-specific baseline markers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045190#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370484#step:8:1" }, { "duration_seconds": 0, "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045190#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370484#step:9:1" }, { "duration_seconds": 0, "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045190#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370484#step:10:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045190#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370484#step:11:1" }, { "duration_seconds": 0, "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045190#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370484#step:12:1" }, { "comparison": "Test 6 reran the scoped Cloud Native Stack Arm preflight against the next stable source tag: Helm dependency/build best effort, chart render, Kubernetes resource validation, and image inventory extraction. No cluster deployment or GPU reconciliation is claimed.", @@ -12548,7 +12548,7 @@ "next_installed_version": "25.12.0", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045190#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370484#step:13:1" } ], "duration_seconds": 1, @@ -12566,7 +12566,7 @@ "dashboard_link": "/linux/opensource_packages/cloudevents-go", "job_url_resolution_status": "central_exact", "package_slug": "cloudevents-go", - "production_refreshed_at": "2026-05-14T19:37:17.297526+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.518297+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -12578,15 +12578,15 @@ }, "run": { "attempt": "1", - "id": "25877399008", + "id": "26658707245", "job_name": "test-cloudevents-go / test-cloudevents-go", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:31Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126195" + "timestamp": "2026-05-29T19:48:38Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445316" }, "schema_version": "2.0", "tests": { @@ -12595,37 +12595,37 @@ "duration_seconds": 0, "name": "Test 1 - Check module dependency", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126195#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445316#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Check installed version", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126195#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445316#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Render package docs", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126195#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445316#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify architecture", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126195#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445316#step:10:1" }, { "duration_seconds": 9, "name": "Test 5 - Create, validate, build, and run an event", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126195#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445316#step:11:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126195#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445316#step:12:1" } ], "duration_seconds": 9, @@ -12643,7 +12643,7 @@ "dashboard_link": "/linux/opensource_packages/cloudevents-java", "job_url_resolution_status": "central_exact", "package_slug": "cloudevents-java", - "production_refreshed_at": "2026-05-14T19:37:17.297732+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.518483+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -12655,15 +12655,15 @@ }, "run": { "attempt": "1", - "id": "25877383844", + "id": "26658692522", "job_name": "test-cloudevents-java / test-cloudevents-java", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:13Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071824" + "timestamp": "2026-05-29T19:48:21Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394697" }, "schema_version": "2.0", "tests": { @@ -12672,40 +12672,40 @@ "duration_seconds": 0, "name": "Test 1 - Check Maven and Java binaries", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071824#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394697#step:8:1" }, { "duration_seconds": 0, "name": "Test 2 - Check dependency version in pom", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071824#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394697#step:9:1" }, { - "duration_seconds": 19, + "duration_seconds": 18, "name": "Test 3 - Check dependency tree", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071824#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394697#step:10:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify architecture", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071824#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394697#step:11:1" }, { - "duration_seconds": 6, + "duration_seconds": 5, "name": "Test 5 - Build and run CloudEvent example", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071824#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394697#step:12:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071824#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394697#step:13:1" } ], - "duration_seconds": 25, + "duration_seconds": 23, "failed": 0, "passed": 6, "skipped": 0 @@ -12720,7 +12720,7 @@ "dashboard_link": "/linux/opensource_packages/cloudevents-python", "job_url_resolution_status": "central_exact", "package_slug": "cloudevents-python", - "production_refreshed_at": "2026-05-14T19:37:17.297972+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.518655+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -12728,19 +12728,19 @@ }, "package": { "name": "Cloudevents-Python", - "version": "2.0.0" + "version": "2.1.0" }, "run": { "attempt": "1", - "id": "25877363365", + "id": "26658674448", "job_name": "test-cloudevents-python / test-cloudevents-python", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:47Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000061" + "timestamp": "2026-05-29T19:47:55Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333838" }, "schema_version": "2.0", "tests": { @@ -12749,40 +12749,40 @@ "duration_seconds": 0, "name": "Test 1 - Import Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000061#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333838#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Build CloudEvent object", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000061#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333838#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Binary HTTP serialization", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000061#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333838#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Structured HTTP serialization", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000061#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333838#step:10:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 5 - Create, serialize, and deserialize an event", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000061#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333838#step:11:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000061#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333838#step:12:1" } ], - "duration_seconds": 1, + "duration_seconds": 0, "failed": 0, "passed": 6, "skipped": 0 @@ -12797,7 +12797,7 @@ "dashboard_link": "/linux/opensource_packages/cloudflare", "job_url_resolution_status": "central_exact", "package_slug": "cloudflare", - "production_refreshed_at": "2026-05-14T19:37:17.298171+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.518823+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -12809,15 +12809,15 @@ }, "run": { "attempt": "1", - "id": "25877392111", + "id": "26658699892", "job_name": "test-cloudflare / test-cloudflare", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:23Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096450" + "timestamp": "2026-05-29T19:48:30Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421019" }, "schema_version": "2.0", "tests": { @@ -12826,40 +12826,40 @@ "duration_seconds": 0, "name": "Test 1 - Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096450#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421019#step:6:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096450#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421019#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Help Output Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096450#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421019#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096450#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421019#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096450#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421019#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096450#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421019#step:11:1" } ], - "duration_seconds": 0, + "duration_seconds": 1, "failed": 0, "passed": 6, "skipped": 0 @@ -12874,7 +12874,7 @@ "dashboard_link": "/linux/opensource_packages/cloudypad", "job_url_resolution_status": "central_exact", "package_slug": "cloudypad", - "production_refreshed_at": "2026-05-14T19:37:17.298353+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.518990+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -12888,15 +12888,15 @@ }, "run": { "attempt": "1", - "id": "25877375677", + "id": "26658685142", "job_name": "test-cloudypad / test-cloudypad", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:02Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044678" + "timestamp": "2026-05-29T19:48:11Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370605" }, "schema_version": "2.0", "tests": { @@ -12905,46 +12905,46 @@ "duration_seconds": 0, "name": "Test 1 - Check package-specific baseline markers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044678#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370605#step:8:1" }, { "duration_seconds": 0, "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044678#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370605#step:9:1" }, { "duration_seconds": 0, "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044678#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370605#step:10:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044678#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370605#step:11:1" }, { - "duration_seconds": 81, + "duration_seconds": 85, "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044678#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370605#step:12:1" }, { "comparison": "Test 6 reran the scoped Cloudy Pad Arm preflight against the next stable source tag: dependency install, CLI build, help/version execution, and local config-file proof when the CLI creates one. Cloud VM provisioning, GPU/display host setup, Sunshine/Wolf installation, and streaming runtime remain out of scope.", "current_version": "0.9.0", "decision": "limited_cpu_smoke_validated", - "duration_seconds": 57, + "duration_seconds": 54, "latest_version": "0.45.2", "name": "Test 6 - Regression Validation", "next_installed_version": "0.45.2", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044678#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370605#step:13:1" } ], - "duration_seconds": 57, + "duration_seconds": 54, "failed": 0, "passed": 6, "skipped": 0 @@ -12959,7 +12959,7 @@ "dashboard_link": "/linux/opensource_packages/cmake", "job_url_resolution_status": "central_exact", "package_slug": "cmake", - "production_refreshed_at": "2026-05-14T19:37:17.298574+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.519164+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -12971,15 +12971,15 @@ }, "run": { "attempt": "1", - "id": "25877411197", + "id": "26658717942", "job_name": "test-cmake / test-cmake", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:49Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175182" + "timestamp": "2026-05-29T19:48:51Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479417" }, "schema_version": "2.0", "tests": { @@ -12988,40 +12988,40 @@ "duration_seconds": 0, "name": "Test 1 - Check binary", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175182#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479417#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175182#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479417#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175182#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479417#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify architecture", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175182#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479417#step:9:1" }, { - "duration_seconds": 3, + "duration_seconds": 9, "name": "Test 5 - Configure, build, and run a project", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175182#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479417#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175182#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479417#step:11:1" } ], - "duration_seconds": 3, + "duration_seconds": 9, "failed": 0, "passed": 6, "skipped": 0 @@ -13036,7 +13036,7 @@ "dashboard_link": "/linux/opensource_packages/cni", "job_url_resolution_status": "central_exact", "package_slug": "cni", - "production_refreshed_at": "2026-05-14T19:37:17.298784+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.519348+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -13050,15 +13050,15 @@ }, "run": { "attempt": "1", - "id": "25877375677", + "id": "26658685142", "job_name": "test-cni / test-cni", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:05Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043655" + "timestamp": "2026-05-29T19:48:12Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369846" }, "schema_version": "2.0", "tests": { @@ -13067,31 +13067,31 @@ "duration_seconds": 0, "name": "Test 1 - Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043655#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369846#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043655#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369846#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Help Or Configuration Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043655#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369846#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043655#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369846#step:10:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043655#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369846#step:11:1" }, { "comparison": "Current pinned CNI baseline plugins v1.6.2 + cnitool v1.2.3 passed smoke tests in this run. Regression validation installed plugins v1.7.1 + cnitool v1.3.0 on Arm64, and the plugin plus cnitool probes both matched the requested upgrade target.", @@ -13103,10 +13103,10 @@ "next_installed_version": "plugins v1.7.1 + cnitool v1.3.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043655#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369846#step:12:1" } ], - "duration_seconds": 4, + "duration_seconds": 3, "failed": 0, "passed": 6, "skipped": 0 @@ -13121,7 +13121,7 @@ "dashboard_link": "/linux/opensource_packages/cobbler", "job_url_resolution_status": "central_exact", "package_slug": "cobbler", - "production_refreshed_at": "2026-05-14T19:37:17.298990+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.519516+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -13135,15 +13135,15 @@ }, "run": { "attempt": "1", - "id": "25877363365", + "id": "26658674448", "job_name": "test-cobbler / test-cobbler", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:47Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000990" + "timestamp": "2026-05-29T19:47:57Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334624" }, "schema_version": "2.0", "tests": { @@ -13152,43 +13152,43 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000990#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334624#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Check package version metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000990#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334624#step:8:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 3 - Check Configuration (Dry Run)", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000990#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334624#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Check Signature Help (Optional)", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000990#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334624#step:10:1" }, { "duration_seconds": 0, "name": "Test 5 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000990#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334624#step:11:1" }, { "comparison": "Current baseline Cobbler 3.3.6 passed Tests 1-5. Regression validation installed next stable tag v3.3.7 in an isolated environment and verified Python package import plus version metadata on Arm64.", "current_version": "3.3.6", "decision": "next_install_validated", - "duration_seconds": 9, + "duration_seconds": 10, "latest_version": "3.3.7", "name": "Test 6 - Regression Validation", "next_installed_version": "3.3.7", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000990#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334624#step:12:1" } ], "duration_seconds": 10, @@ -13206,7 +13206,7 @@ "dashboard_link": "/linux/opensource_packages/cockroachdb", "job_url_resolution_status": "central_exact", "package_slug": "cockroachdb", - "production_refreshed_at": "2026-05-14T19:37:17.299170+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.519686+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -13220,15 +13220,15 @@ }, "run": { "attempt": "1", - "id": "25877419588", + "id": "26658724696", "job_name": "test-cockroachdb / test-cockroachdb", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:58Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192441" + "timestamp": "2026-05-29T19:49:02Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503344" }, "schema_version": "2.0", "tests": { @@ -13237,46 +13237,46 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192441#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503344#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Run Help", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192441#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503344#step:8:1" }, { - "duration_seconds": 7, + "duration_seconds": 8, "name": "Test 3 - Start Single Node", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192441#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503344#step:9:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 4 - Run SQL Query", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192441#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503344#step:10:1" }, { "duration_seconds": 0, "name": "Test 5 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192441#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503344#step:11:1" }, { "comparison": "Current pinned CockroachDB version v25.1.1 passed smoke tests in this run. Regression validation downloaded the next stable Arm64 release v25.1.2, and the installed binary reported version v25.1.2.", "current_version": "v25.1.1", "decision": "next_install_validated", - "duration_seconds": 3, + "duration_seconds": 7, "latest_version": "v25.1.2", "name": "Test 6 - Regression Validation", "next_installed_version": "v25.1.2", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192441#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503344#step:12:1" } ], - "duration_seconds": 5, + "duration_seconds": 10, "failed": 0, "passed": 6, "skipped": 0 @@ -13291,7 +13291,7 @@ "dashboard_link": "/linux/opensource_packages/cocotb", "job_url_resolution_status": "central_exact", "package_slug": "cocotb", - "production_refreshed_at": "2026-05-14T19:37:17.299383+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.521291+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -13305,15 +13305,15 @@ }, "run": { "attempt": "1", - "id": "25877375677", + "id": "26658685142", "job_name": "test-cocotb / test-cocotb", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:03Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044759" + "timestamp": "2026-05-29T19:48:12Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370567" }, "schema_version": "2.0", "tests": { @@ -13322,31 +13322,31 @@ "duration_seconds": 0, "name": "Test 1 - Package installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044759#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370567#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Version metadata matches baseline", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044759#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370567#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Installed files metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044759#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370567#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044759#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370567#step:10:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044759#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370567#step:11:1" }, { "comparison": "Current pinned package version 1.2.0 passed smoke tests in this run, and the newer stable PyPI candidate 1.3.0 installed successfully on Arm64.", @@ -13358,7 +13358,7 @@ "next_installed_version": "1.3.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044759#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370567#step:12:1" } ], "duration_seconds": 7, @@ -13376,7 +13376,7 @@ "dashboard_link": "/linux/opensource_packages/conda", "job_url_resolution_status": "central_exact", "package_slug": "conda", - "production_refreshed_at": "2026-05-14T19:37:17.299575+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.521492+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -13388,15 +13388,15 @@ }, "run": { "attempt": "1", - "id": "25877399008", + "id": "26658707245", "job_name": "test-conda / test-conda", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:31Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125878" + "timestamp": "2026-05-29T19:48:39Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445537" }, "schema_version": "2.0", "tests": { @@ -13405,40 +13405,40 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125878#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445537#step:6:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125878#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445537#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125878#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445537#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125878#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445537#step:9:1" }, { - "duration_seconds": 16, + "duration_seconds": 17, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125878#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445537#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125878#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445537#step:11:1" } ], - "duration_seconds": 16, + "duration_seconds": 18, "failed": 0, "passed": 6, "skipped": 0 @@ -13453,7 +13453,7 @@ "dashboard_link": "/linux/opensource_packages/containerd", "job_url_resolution_status": "central_exact", "package_slug": "containerd", - "production_refreshed_at": "2026-05-14T19:37:17.299780+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.521674+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -13465,15 +13465,15 @@ }, "run": { "attempt": "1", - "id": "25877395502", + "id": "26658703674", "job_name": "test-containerd / test-containerd", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:27Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109986" + "timestamp": "2026-05-29T19:48:33Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433192" }, "schema_version": "2.0", "tests": { @@ -13482,37 +13482,37 @@ "duration_seconds": 0, "name": "Test 1 - Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109986#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433192#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109986#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433192#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Help Or Configuration Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109986#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433192#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109986#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433192#step:9:1" }, { "duration_seconds": 2, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109986#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433192#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109986#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433192#step:11:1" } ], "duration_seconds": 2, @@ -13530,7 +13530,7 @@ "dashboard_link": "/linux/opensource_packages/contour", "job_url_resolution_status": "central_exact", "package_slug": "contour", - "production_refreshed_at": "2026-05-14T19:37:17.300004+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.521847+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -13538,19 +13538,19 @@ }, "package": { "name": "Contour", - "version": "1.33.4" + "version": "1.33.5" }, "run": { "attempt": "1", - "id": "25877367704", + "id": "26658677990", "job_name": "test-contour / test-contour", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:56Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026914" + "timestamp": "2026-05-29T19:48:03Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347156" }, "schema_version": "2.0", "tests": { @@ -13559,37 +13559,37 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026914#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347156#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Run Help", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026914#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347156#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Envoy Config Generation (Dry Run)", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026914#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347156#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Check Version Detail", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026914#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347156#step:10:1" }, { "duration_seconds": 0, "name": "Test 5 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026914#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347156#step:11:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026914#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347156#step:12:1" } ], "duration_seconds": 0, @@ -13607,7 +13607,7 @@ "dashboard_link": "/linux/opensource_packages/coredns", "job_url_resolution_status": "central_exact", "package_slug": "coredns", - "production_refreshed_at": "2026-05-14T19:37:17.300202+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.522019+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -13621,15 +13621,15 @@ }, "run": { "attempt": "1", - "id": "25877403044", + "id": "26658710721", "job_name": "test-coredns / test-coredns", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:38Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048139873" + "timestamp": "2026-05-29T19:48:43Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456273" }, "schema_version": "2.0", "tests": { @@ -13638,31 +13638,31 @@ "duration_seconds": 0, "name": "Test 1 - Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048139873#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456273#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048139873#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456273#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Help Or Configuration Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048139873#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456273#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048139873#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456273#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048139873#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456273#step:10:1" }, { "comparison": "Current pinned CoreDNS version 1.12.1 passed smoke tests in this run. Regression validation downloaded the official Arm64 archive from https://github.com/coredns/coredns/releases/download/v1.12.2/coredns_1.12.2_linux_arm64.tgz, and the extracted coredns binary reported version 1.12.2 on Arm64.", @@ -13674,7 +13674,7 @@ "next_installed_version": "1.12.2", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048139873#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456273#step:11:1" } ], "duration_seconds": 1, @@ -13692,7 +13692,7 @@ "dashboard_link": "/linux/opensource_packages/corosync", "job_url_resolution_status": "central_exact", "package_slug": "corosync", - "production_refreshed_at": "2026-05-14T19:37:17.300423+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.522193+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -13704,54 +13704,54 @@ }, "run": { "attempt": "1", - "id": "25877403044", + "id": "26658710721", "job_name": "test-corosync / test-corosync", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:38Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140548" + "timestamp": "2026-05-29T19:48:45Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456198" }, "schema_version": "2.0", "tests": { "details": [ { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 1 - Check corosync binary exists and architecture", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140548#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456198#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check corosync-cfgtool", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140548#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456198#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Run corosync-keygen", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140548#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456198#step:8:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 4 - Check Config Validity (Dry Run)", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140548#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456198#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Check Keygen Binary", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140548#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456198#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140548#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456198#step:11:1" } ], "duration_seconds": 1, @@ -13769,7 +13769,7 @@ "dashboard_link": "/linux/opensource_packages/cortex", "job_url_resolution_status": "central_exact", "package_slug": "cortex", - "production_refreshed_at": "2026-05-14T19:37:17.300628+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.522407+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -13783,15 +13783,15 @@ }, "run": { "attempt": "1", - "id": "25877406767", + "id": "26658714432", "job_name": "test-cortex / test-cortex", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:45Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155599" + "timestamp": "2026-05-29T19:48:48Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469342" }, "schema_version": "2.0", "tests": { @@ -13800,46 +13800,46 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155599#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469342#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Run Help", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155599#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469342#step:8:1" }, { "duration_seconds": 45, "name": "Test 3 - Check Config Validation (Dry Run)", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155599#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469342#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Check Completion Generation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155599#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469342#step:10:1" }, { "duration_seconds": 0, "name": "Test 5 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155599#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469342#step:11:1" }, { "comparison": "Current pinned version 1.19.0 passed smoke tests in this run. Regression validation then verified the newer stable Arm64 candidate 1.19.1 successfully.", "current_version": "1.19.0", "decision": "next_install_validated", - "duration_seconds": 0, + "duration_seconds": 1, "latest_version": "1.19.1", "name": "Test 6 - Regression Validation", "next_installed_version": "1.19.1", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155599#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469342#step:12:1" } ], - "duration_seconds": 45, + "duration_seconds": 46, "failed": 0, "passed": 6, "skipped": 0 @@ -13854,7 +13854,7 @@ "dashboard_link": "/linux/opensource_packages/couchbase", "job_url_resolution_status": "central_exact", "package_slug": "couchbase", - "production_refreshed_at": "2026-05-14T19:37:17.300954+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.522669+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -13866,15 +13866,15 @@ }, "run": { "attempt": "1", - "id": "25877419588", + "id": "26658724696", "job_name": "test-couchbase / test-couchbase", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:58Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192386" + "timestamp": "2026-05-29T19:49:02Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504211" }, "schema_version": "2.0", "tests": { @@ -13883,40 +13883,40 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192386#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504211#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192386#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504211#step:7:1" }, { - "duration_seconds": 1, + "duration_seconds": 2, "name": "Test 3 - Check Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192386#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504211#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192386#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504211#step:9:1" }, { "duration_seconds": 20, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192386#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504211#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192386#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504211#step:11:1" } ], - "duration_seconds": 21, + "duration_seconds": 22, "failed": 0, "passed": 6, "skipped": 0 @@ -13931,7 +13931,7 @@ "dashboard_link": "/linux/opensource_packages/couchdb", "job_url_resolution_status": "central_exact", "package_slug": "couchdb", - "production_refreshed_at": "2026-05-14T19:37:17.301176+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.522847+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -13945,15 +13945,15 @@ }, "run": { "attempt": "1", - "id": "25877355625", + "id": "26658667828", "job_name": "test-couchdb / test-couchdb", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:37Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976458" + "timestamp": "2026-05-29T19:47:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309022" }, "schema_version": "2.0", "tests": { @@ -13962,46 +13962,46 @@ "duration_seconds": 0, "name": "Test 1 - Check container running", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976458#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309022#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Root Endpoint", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976458#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309022#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Create Database", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976458#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309022#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Create Document", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976458#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309022#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Read Document", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976458#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309022#step:10:1" }, { "comparison": "Current pinned Apache CouchDB version 3.3.3 passed smoke tests in this run. Regression validation pulled apache/couchdb:3.4.1 on Arm64, and the candidate root endpoint reported version 3.4.1.", "current_version": "3.3.3", "decision": "next_install_validated", - "duration_seconds": 10, + "duration_seconds": 9, "latest_version": "3.4.1", "name": "Test 6 - Regression Validation", "next_installed_version": "3.4.1", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976458#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309022#step:11:1" } ], - "duration_seconds": 10, + "duration_seconds": 8, "failed": 0, "passed": 6, "skipped": 0 @@ -14016,7 +14016,7 @@ "dashboard_link": "/linux/opensource_packages/cri-o", "job_url_resolution_status": "central_exact", "package_slug": "cri-o", - "production_refreshed_at": "2026-05-14T19:37:17.301398+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.523952+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -14030,15 +14030,15 @@ }, "run": { "attempt": "1", - "id": "25877403044", + "id": "26658710721", "job_name": "test-cri-o / test-cri-o", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:37Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140762" + "timestamp": "2026-05-29T19:48:43Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455570" }, "schema_version": "2.0", "tests": { @@ -14047,31 +14047,31 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140762#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455570#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Run Help", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140762#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455570#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Config Dump", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140762#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455570#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Check Installed Package Metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140762#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455570#step:10:1" }, { "duration_seconds": 0, "name": "Test 5 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140762#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455570#step:11:1" }, { "comparison": "Current pinned CRI-O version 1.30.10 passed smoke tests in this run. Regression validation downloaded the next stable Arm64 package from repo line v1.31, and the extracted binary reported version 1.31.5.", @@ -14083,7 +14083,7 @@ "next_installed_version": "1.31.5", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140762#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455570#step:12:1" } ], "duration_seconds": 1, @@ -14101,7 +14101,7 @@ "dashboard_link": "/linux/opensource_packages/crossplane", "job_url_resolution_status": "central_exact", "package_slug": "crossplane", - "production_refreshed_at": "2026-05-14T19:37:17.301604+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.524157+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -14115,15 +14115,15 @@ }, "run": { "attempt": "1", - "id": "25877399008", + "id": "26658707245", "job_name": "test-crossplane / test-crossplane", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:31Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125118" + "timestamp": "2026-05-29T19:48:39Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445834" }, "schema_version": "2.0", "tests": { @@ -14132,31 +14132,31 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125118#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445834#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125118#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445834#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125118#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445834#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Check Core Start Help", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125118#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445834#step:10:1" }, { "duration_seconds": 0, "name": "Test 5 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125118#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445834#step:11:1" }, { "comparison": "Current pinned version 2.1.4 passed Tests 1-5 in this run. The next candidate 2.2.0 downloaded and executed successfully on Arm64, and the binary reported 2.2.0.", @@ -14168,7 +14168,7 @@ "next_installed_version": "2.2.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125118#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445834#step:12:1" } ], "duration_seconds": 0, @@ -14186,7 +14186,7 @@ "dashboard_link": "/linux/opensource_packages/cubefs", "job_url_resolution_status": "central_exact", "package_slug": "cubefs", - "production_refreshed_at": "2026-05-14T19:37:17.301801+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.524378+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -14200,15 +14200,15 @@ }, "run": { "attempt": "1", - "id": "25877399008", + "id": "26658707245", "job_name": "test-cubefs / test-cubefs", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:31Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126158" + "timestamp": "2026-05-29T19:48:38Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445460" }, "schema_version": "2.0", "tests": { @@ -14217,31 +14217,31 @@ "duration_seconds": 0, "name": "Test 1 - Check repository exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126158#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445460#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check for Makefile", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126158#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445460#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check for Go.mod", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126158#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445460#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126158#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445460#step:9:1" }, { - "duration_seconds": 3, + "duration_seconds": 2, "name": "Test 5 - Functional validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126158#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445460#step:10:1" }, { "comparison": "CubeFS baseline v3.4.0 passed repository plus build-graph validation, and candidate v3.5.0 also passed go module enumeration and master target dry-run validation on Arm64.", @@ -14253,10 +14253,10 @@ "next_installed_version": "v3.5.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126158#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445460#step:11:1" } ], - "duration_seconds": 6, + "duration_seconds": 5, "failed": 0, "passed": 6, "skipped": 0 @@ -14271,7 +14271,7 @@ "dashboard_link": "/linux/opensource_packages/cucim", "job_url_resolution_status": "central_exact", "package_slug": "cucim", - "production_refreshed_at": "2026-05-14T19:37:17.302006+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.524566+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -14285,15 +14285,15 @@ }, "run": { "attempt": "1", - "id": "25877379982", + "id": "26658688675", "job_name": "test-cucim / test-cucim", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:07Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057331" + "timestamp": "2026-05-29T19:48:14Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380777" }, "schema_version": "2.0", "tests": { @@ -14302,43 +14302,43 @@ "duration_seconds": 0, "name": "Test 1 - Check package-specific baseline markers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057331#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380777#step:8:1" }, { "duration_seconds": 0, "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057331#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380777#step:9:1" }, { "duration_seconds": 0, "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057331#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380777#step:10:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057331#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380777#step:11:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 5 - Run scoped Arm preflight proof", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057331#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380777#step:12:1" }, { "comparison": "Test 6 limited_cpu_smoke_validated: reran the same bounded scoped Arm source/compile/import/help/manifest preflight against the next stable candidate. This is CPU-side preflight evidence only; no GPU/CUDA driver/runtime, accelerator execution, Kubernetes cluster, or full product runtime is claimed.", "current_version": "23.12.00", "decision": "limited_cpu_smoke_validated", - "duration_seconds": 3, + "duration_seconds": 2, "latest_version": "26.04.00", "name": "Test 6 - Regression Validation", "next_installed_version": "26.04.00", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057331#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380777#step:13:1" } ], "duration_seconds": 3, @@ -14356,7 +14356,7 @@ "dashboard_link": "/linux/opensource_packages/cuda-gdb", "job_url_resolution_status": "central_exact", "package_slug": "cuda-gdb", - "production_refreshed_at": "2026-05-14T19:37:17.302204+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.524743+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -14370,15 +14370,15 @@ }, "run": { "attempt": "1", - "id": "25877379982", + "id": "26658688675", "job_name": "test-cuda-gdb / test-cuda-gdb", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:06Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057470" + "timestamp": "2026-05-29T19:48:15Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380783" }, "schema_version": "2.0", "tests": { @@ -14387,46 +14387,46 @@ "duration_seconds": 0, "name": "Test 1 - Check package-specific baseline markers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057470#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380783#step:8:1" }, { "duration_seconds": 0, "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057470#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380783#step:9:1" }, { "duration_seconds": 0, "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057470#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380783#step:10:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057470#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380783#step:11:1" }, { "duration_seconds": 0, "name": "Test 5 - Run scoped Arm preflight proof", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057470#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380783#step:12:1" }, { "comparison": "Test 6 limited_cpu_smoke_validated: reran the same bounded scoped Arm source/compile/import/help/manifest preflight against the next stable candidate. This is CPU-side preflight evidence only; no GPU/CUDA driver/runtime, accelerator execution, Kubernetes cluster, or full product runtime is claimed.", "current_version": "11.4", "decision": "limited_cpu_smoke_validated", - "duration_seconds": 15, + "duration_seconds": 14, "latest_version": "2018-05-23", "name": "Test 6 - Regression Validation", "next_installed_version": "2018-05-23", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057470#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380783#step:13:1" } ], - "duration_seconds": 15, + "duration_seconds": 14, "failed": 0, "passed": 6, "skipped": 0 @@ -14441,7 +14441,7 @@ "dashboard_link": "/linux/opensource_packages/cuda-python", "job_url_resolution_status": "central_exact", "package_slug": "cuda-python", - "production_refreshed_at": "2026-05-14T19:37:17.302403+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.524927+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -14455,15 +14455,15 @@ }, "run": { "attempt": "1", - "id": "25877383844", + "id": "26658692522", "job_name": "test-cuda-python / test-cuda-python", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:12Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071829" + "timestamp": "2026-05-29T19:48:19Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394538" }, "schema_version": "2.0", "tests": { @@ -14472,46 +14472,46 @@ "duration_seconds": 0, "name": "Test 1 - Check package-specific baseline markers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071829#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394538#step:8:1" }, { "duration_seconds": 0, "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071829#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394538#step:9:1" }, { "duration_seconds": 0, "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071829#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394538#step:10:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071829#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394538#step:11:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 5 - Run scoped Arm preflight proof", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071829#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394538#step:12:1" }, { "comparison": "Test 6 limited_cpu_smoke_validated: reran the same bounded scoped Arm source/compile/import/help/manifest preflight against the next stable candidate. This is CPU-side preflight evidence only; no GPU/CUDA driver/runtime, accelerator execution, Kubernetes cluster, or full product runtime is claimed.", "current_version": "11.5.0", "decision": "limited_cpu_smoke_validated", - "duration_seconds": 2, - "latest_version": "13.2.0", + "duration_seconds": 1, + "latest_version": "13.3.0", "name": "Test 6 - Regression Validation", - "next_installed_version": "13.2.0", + "next_installed_version": "13.3.0", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071829#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394538#step:13:1" } ], - "duration_seconds": 2, + "duration_seconds": 1, "failed": 0, "passed": 6, "skipped": 0 @@ -14526,7 +14526,7 @@ "dashboard_link": "/linux/opensource_packages/cuda-q", "job_url_resolution_status": "central_exact", "package_slug": "cuda-q", - "production_refreshed_at": "2026-05-14T19:37:17.302603+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.525100+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -14540,15 +14540,15 @@ }, "run": { "attempt": "1", - "id": "25877387746", + "id": "26658696365", "job_name": "test-cuda-q / test-cuda-q", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:15Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084475" + "timestamp": "2026-05-29T19:48:24Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408100" }, "schema_version": "2.0", "tests": { @@ -14557,46 +14557,46 @@ "duration_seconds": 0, "name": "Test 1 - Check package-specific baseline markers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084475#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408100#step:9:1" }, { "duration_seconds": 0, "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084475#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408100#step:10:1" }, { "duration_seconds": 0, "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084475#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408100#step:11:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084475#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408100#step:12:1" }, { - "duration_seconds": 13, + "duration_seconds": 12, "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084475#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408100#step:13:1" }, { "comparison": "Baseline 0.4.1 and next stable 0.8.0 were both validated through cuda-quantum Linux aarch64 wheel installation and CPU sampling on the Ubuntu Arm64 runner.", "current_version": "0.4.1", "decision": "next_install_validated", - "duration_seconds": 14, + "duration_seconds": 16, "latest_version": "0.8.0", "name": "Test 6 - Regression Validation", "next_installed_version": "0.8.0", "regression_result": "CUDA-Q next stable Python package installed and executed a CPU quantum sampling smoke successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084475#step:14:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408100#step:14:1" } ], - "duration_seconds": 27, + "duration_seconds": 28, "failed": 0, "passed": 6, "skipped": 0 @@ -14611,7 +14611,7 @@ "dashboard_link": "/linux/opensource_packages/cuda-qx", "job_url_resolution_status": "central_exact", "package_slug": "cuda-qx", - "production_refreshed_at": "2026-05-14T19:37:17.302817+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.525296+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -14625,15 +14625,15 @@ }, "run": { "attempt": "1", - "id": "25877387746", + "id": "26658696365", "job_name": "test-cuda-qx / test-cuda-qx", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:16Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084921" + "timestamp": "2026-05-29T19:48:28Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408069" }, "schema_version": "2.0", "tests": { @@ -14642,31 +14642,31 @@ "duration_seconds": 0, "name": "Test 1 - Baseline package evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084921#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408069#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Baseline version and release alignment", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084921#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408069#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Package-specific source or docs evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084921#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408069#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084921#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408069#step:10:1" }, { "duration_seconds": 4, "name": "Test 5 - Bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084921#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408069#step:11:1" }, { "comparison": "Test 6 limited_cpu_smoke_validated: reran the CUDA-QX bounded Arm preflight against the next stable source candidate, compiling the core C++ header surface and qec/solvers Python package sources on Arm64. This is CPU-side package preflight evidence only; no CUDA-Q, GPU, or QPU runtime execution is claimed.", @@ -14678,10 +14678,10 @@ "next_installed_version": "0.6.0", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084921#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408069#step:12:1" } ], - "duration_seconds": 7, + "duration_seconds": 8, "failed": 0, "passed": 6, "skipped": 0 @@ -14696,7 +14696,7 @@ "dashboard_link": "/linux/opensource_packages/cudf", "job_url_resolution_status": "central_exact", "package_slug": "cudf", - "production_refreshed_at": "2026-05-14T19:37:17.303028+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.525479+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -14710,15 +14710,15 @@ }, "run": { "attempt": "1", - "id": "25877387746", + "id": "26658696365", "job_name": "test-cudf / test-cudf", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:16Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084771" + "timestamp": "2026-05-29T19:48:23Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408120" }, "schema_version": "2.0", "tests": { @@ -14727,31 +14727,31 @@ "duration_seconds": 0, "name": "Test 1 - Baseline package evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084771#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408120#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Baseline version and release alignment", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084771#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408120#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Package-specific source or docs evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084771#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408120#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084771#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408120#step:10:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 5 - Run scoped Arm preflight proof", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084771#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408120#step:11:1" }, { "comparison": "Test 6 limited_cpu_smoke_validated: reran the same bounded scoped Arm source/compile/import/help/manifest preflight against the next stable candidate. This is CPU-side preflight evidence only; no GPU/CUDA driver/runtime, accelerator execution, Kubernetes cluster, or full product runtime is claimed.", @@ -14763,10 +14763,10 @@ "next_installed_version": "26.04.00", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084771#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408120#step:12:1" } ], - "duration_seconds": 5, + "duration_seconds": 4, "failed": 0, "passed": 6, "skipped": 0 @@ -14781,7 +14781,7 @@ "dashboard_link": "/linux/opensource_packages/cudnn-fe", "job_url_resolution_status": "central_exact", "package_slug": "cudnn-fe", - "production_refreshed_at": "2026-05-14T19:37:17.303259+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.525663+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -14795,15 +14795,15 @@ }, "run": { "attempt": "1", - "id": "25877387746", + "id": "26658696365", "job_name": "test-cudnn-fe / test-cudnn-fe", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:16Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084667" + "timestamp": "2026-05-29T19:48:24Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408079" }, "schema_version": "2.0", "tests": { @@ -14812,43 +14812,43 @@ "duration_seconds": 0, "name": "Test 1 - Baseline package evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084667#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408079#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Baseline version and release alignment", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084667#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408079#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Package-specific source or docs evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084667#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408079#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084667#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408079#step:10:1" }, { "duration_seconds": 1, "name": "Test 5 - Bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084667#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408079#step:11:1" }, { "comparison": "Test 6 limited_cpu_smoke_validated: reran the cuDNN Frontend bounded Arm preflight against the next stable source candidate, compiling the package version header and python/cudnn sources while verifying the aggregate header's cuDNN runtime boundary. This is CPU-side package preflight evidence only; no cuDNN library load or GPU execution is claimed.", "current_version": "1.13.0", "decision": "limited_cpu_smoke_validated", "duration_seconds": 2, - "latest_version": "1.23.0", + "latest_version": "1.24.0", "name": "Test 6 - Regression Validation", - "next_installed_version": "1.23.0", + "next_installed_version": "1.24.0", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084667#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408079#step:12:1" } ], "duration_seconds": 3, @@ -14866,7 +14866,7 @@ "dashboard_link": "/linux/opensource_packages/cugraph", "job_url_resolution_status": "central_exact", "package_slug": "cugraph", - "production_refreshed_at": "2026-05-14T19:37:17.303453+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.525838+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -14880,15 +14880,15 @@ }, "run": { "attempt": "1", - "id": "25877387746", + "id": "26658696365", "job_name": "test-cugraph / test-cugraph", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:16Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084558" + "timestamp": "2026-05-29T19:48:23Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408089" }, "schema_version": "2.0", "tests": { @@ -14897,46 +14897,46 @@ "duration_seconds": 0, "name": "Test 1 - Baseline package evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084558#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408089#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Baseline version and release alignment", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084558#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408089#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Package-specific source or docs evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084558#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408089#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084558#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408089#step:10:1" }, { "duration_seconds": 0, "name": "Test 5 - Run scoped Arm preflight proof", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084558#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408089#step:11:1" }, { "comparison": "Test 6 limited_cpu_smoke_validated: reran the same bounded scoped Arm source/compile/import/help/manifest preflight against the next stable candidate. This is CPU-side preflight evidence only; no GPU/CUDA driver/runtime, accelerator execution, Kubernetes cluster, or full product runtime is claimed.", "current_version": "0.16.0", "decision": "limited_cpu_smoke_validated", - "duration_seconds": 3, + "duration_seconds": 2, "latest_version": "26.04.00", "name": "Test 6 - Regression Validation", "next_installed_version": "26.04.00", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084558#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408089#step:12:1" } ], - "duration_seconds": 3, + "duration_seconds": 2, "failed": 0, "passed": 6, "skipped": 0 @@ -14951,7 +14951,7 @@ "dashboard_link": "/linux/opensource_packages/cuml", "job_url_resolution_status": "central_exact", "package_slug": "cuml", - "production_refreshed_at": "2026-05-14T19:37:17.303654+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.526023+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -14965,15 +14965,15 @@ }, "run": { "attempt": "1", - "id": "25877387746", + "id": "26658696365", "job_name": "test-cuml / test-cuml", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:16Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084588" + "timestamp": "2026-05-29T19:48:23Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408140" }, "schema_version": "2.0", "tests": { @@ -14982,46 +14982,46 @@ "duration_seconds": 0, "name": "Test 1 - Baseline package evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084588#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408140#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Baseline version and release alignment", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084588#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408140#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Package-specific source or docs evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084588#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408140#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084588#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408140#step:10:1" }, { "duration_seconds": 1, "name": "Test 5 - Run scoped Arm preflight proof", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084588#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408140#step:11:1" }, { "comparison": "Test 6 limited_cpu_smoke_validated: reran the same bounded scoped Arm source/compile/import/help/manifest preflight against the next stable candidate. This is CPU-side preflight evidence only; no GPU/CUDA driver/runtime, accelerator execution, Kubernetes cluster, or full product runtime is claimed.", "current_version": "21.10.0", "decision": "limited_cpu_smoke_validated", - "duration_seconds": 5, + "duration_seconds": 2, "latest_version": "26.04.00", "name": "Test 6 - Regression Validation", "next_installed_version": "26.04.00", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084588#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408140#step:12:1" } ], - "duration_seconds": 6, + "duration_seconds": 3, "failed": 0, "passed": 6, "skipped": 0 @@ -15036,7 +15036,7 @@ "dashboard_link": "/linux/opensource_packages/cuopt", "job_url_resolution_status": "central_exact", "package_slug": "cuopt", - "production_refreshed_at": "2026-05-14T19:37:17.303871+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.526196+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -15050,60 +15050,60 @@ }, "run": { "attempt": "1", - "id": "25877387746", + "id": "26658696365", "job_name": "test-cuopt / test-cuopt", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:16Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084718" + "timestamp": "2026-05-29T19:48:25Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407948" }, "schema_version": "2.0", "tests": { "details": [ { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 1 - Baseline package evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084718#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407948#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Baseline version and release alignment", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084718#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407948#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Package-specific source or docs evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084718#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407948#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Arm64 support gate", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084718#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407948#step:10:1" }, { "duration_seconds": 0, "name": "Test 5 - Run scoped Arm preflight proof", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084718#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407948#step:11:1" }, { "comparison": "Test 6 limited_cpu_smoke_validated: reran the same bounded scoped Arm source/compile/import/help/manifest preflight against the next stable candidate. This is CPU-side preflight evidence only; no GPU/CUDA driver/runtime, accelerator execution, Kubernetes cluster, or full product runtime is claimed.", "current_version": "25.08.00", "decision": "limited_cpu_smoke_validated", - "duration_seconds": 2, + "duration_seconds": 3, "latest_version": "26.04.00", "name": "Test 6 - Regression Validation", "next_installed_version": "26.04.00", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084718#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407948#step:12:1" } ], "duration_seconds": 2, @@ -15121,7 +15121,7 @@ "dashboard_link": "/linux/opensource_packages/cupy", "job_url_resolution_status": "central_exact", "package_slug": "cupy", - "production_refreshed_at": "2026-05-14T19:37:17.304062+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.526411+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -15135,15 +15135,15 @@ }, "run": { "attempt": "1", - "id": "25877387746", + "id": "26658696365", "job_name": "test-cupy / test-cupy", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:16Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048085257" + "timestamp": "2026-05-29T19:48:24Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408113" }, "schema_version": "2.0", "tests": { @@ -15152,43 +15152,43 @@ "duration_seconds": 0, "name": "Test 1 - Baseline package evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048085257#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408113#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Baseline version and release alignment", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048085257#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408113#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Package-specific source or docs evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048085257#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408113#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Arm64 support gate", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048085257#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408113#step:10:1" }, { "duration_seconds": 0, "name": "Test 5 - Bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048085257#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408113#step:11:1" }, { "comparison": "Test 6 limited_cpu_smoke_validated: reran the CuPy bounded Arm source preflight against the next stable candidate, compiling cupy/cupy_backends/cupyx sources, loading source version and CUDA environment config, and checking the guarded import boundary. This is CPU-side package preflight evidence only; no CUDA driver, CUDA runtime, or GPU array execution is claimed.", "current_version": "9.6.0", "decision": "limited_cpu_smoke_validated", "duration_seconds": 2, - "latest_version": "14.0.1", + "latest_version": "14.1.0", "name": "Test 6 - Regression Validation", - "next_installed_version": "14.0.1", + "next_installed_version": "14.1.0", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048085257#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408113#step:12:1" } ], "duration_seconds": 2, @@ -15206,7 +15206,7 @@ "dashboard_link": "/linux/opensource_packages/curl", "job_url_resolution_status": "central_exact", "package_slug": "curl", - "production_refreshed_at": "2026-05-14T19:37:17.304238+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.526588+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -15220,15 +15220,15 @@ }, "run": { "attempt": "1", - "id": "25877403044", + "id": "26658710721", "job_name": "test-curl / test-curl", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:37Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140545" + "timestamp": "2026-05-29T19:48:44Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456194" }, "schema_version": "2.0", "tests": { @@ -15237,46 +15237,46 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140545#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456194#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140545#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456194#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140545#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456194#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140545#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456194#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140545#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456194#step:10:1" }, { "comparison": "Current pinned curl version 8.17.0 passed smoke tests in this run. Regression validation downloaded the next stable upstream source release 8.18.0, built it in an isolated Arm64 prefix, and the candidate curl binary reported version 8.18.0.", "current_version": "8.17.0", "decision": "next_install_validated", - "duration_seconds": 50, + "duration_seconds": 49, "latest_version": "8.18.0", "name": "Test 6 - Regression Validation", "next_installed_version": "8.18.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140545#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456194#step:11:1" } ], - "duration_seconds": 50, + "duration_seconds": 49, "failed": 0, "passed": 6, "skipped": 0 @@ -15291,7 +15291,7 @@ "dashboard_link": "/linux/opensource_packages/cutile-python", "job_url_resolution_status": "central_exact", "package_slug": "cutile-python", - "production_refreshed_at": "2026-05-14T19:37:17.304437+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.526758+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -15305,15 +15305,15 @@ }, "run": { "attempt": "1", - "id": "25877387746", + "id": "26658696365", "job_name": "test-cutile-python / test-cutile-python", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:15Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084619" + "timestamp": "2026-05-29T19:48:23Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408125" }, "schema_version": "2.0", "tests": { @@ -15322,43 +15322,43 @@ "duration_seconds": 0, "name": "Test 1 - Baseline package evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084619#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408125#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Baseline version and release alignment", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084619#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408125#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Package-specific source or docs evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084619#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408125#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Arm64 support gate", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084619#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408125#step:10:1" }, { "duration_seconds": 1, "name": "Test 5 - Run scoped Arm preflight proof", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084619#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408125#step:11:1" }, { - "comparison": "Test 6 limited_cpu_smoke_validated: reran the bounded scoped Arm PyPI wheel/manifest proof for cuda-tile 1.3.0 on the Arm64 runner. This validates published Arm64 package payload evidence only; no CUDA Tile kernel execution, CUDA driver, GPU runtime, or full accelerator environment is claimed.", + "comparison": "Test 6 limited_cpu_smoke_validated: reran the bounded scoped Arm PyPI wheel/manifest proof for cuda-tile 1.4.0 on the Arm64 runner. This validates published Arm64 package payload evidence only; no CUDA Tile kernel execution, CUDA driver, GPU runtime, or full accelerator environment is claimed.", "current_version": "1.0.0", "decision": "limited_cpu_smoke_validated", "duration_seconds": 0, - "latest_version": "1.3.0", + "latest_version": "1.4.0", "name": "Test 6 - Regression Validation", - "next_installed_version": "1.3.0", + "next_installed_version": "1.4.0", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084619#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408125#step:12:1" } ], "duration_seconds": 1, @@ -15376,7 +15376,7 @@ "dashboard_link": "/linux/opensource_packages/cutlass", "job_url_resolution_status": "central_exact", "package_slug": "cutlass", - "production_refreshed_at": "2026-05-14T19:37:17.304655+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.526924+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -15390,15 +15390,15 @@ }, "run": { "attempt": "1", - "id": "25877392111", + "id": "26658699892", "job_name": "test-cutlass / test-cutlass", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:24Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096758" + "timestamp": "2026-05-29T19:48:30Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420974" }, "schema_version": "2.0", "tests": { @@ -15407,46 +15407,46 @@ "duration_seconds": 0, "name": "Test 1 - Baseline package evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096758#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420974#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Baseline version and release alignment", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096758#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420974#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Package-specific source or docs evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096758#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420974#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Arm64 support gate", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096758#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420974#step:10:1" }, { - "duration_seconds": 5, + "duration_seconds": 1, "name": "Test 5 - Run scoped Arm preflight proof", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096758#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420974#step:11:1" }, { "comparison": "Test 6 limited_cpu_smoke_validated: reran the same bounded scoped Arm source/compile/import/help/manifest preflight against the next stable candidate. This is CPU-side preflight evidence only; no GPU/CUDA driver/runtime, accelerator execution, Kubernetes cluster, or full product runtime is claimed.", "current_version": "4.1.0", "decision": "limited_cpu_smoke_validated", - "duration_seconds": 3, - "latest_version": "4.5.0", + "duration_seconds": 4, + "latest_version": "4.5.1", "name": "Test 6 - Regression Validation", - "next_installed_version": "4.5.0", + "next_installed_version": "4.5.1", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096758#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420974#step:12:1" } ], - "duration_seconds": 8, + "duration_seconds": 5, "failed": 0, "passed": 6, "skipped": 0 @@ -15461,7 +15461,7 @@ "dashboard_link": "/linux/opensource_packages/cuttlefish", "job_url_resolution_status": "central_exact", "package_slug": "cuttlefish", - "production_refreshed_at": "2026-05-14T19:37:17.304859+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.527101+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -15473,15 +15473,15 @@ }, "run": { "attempt": "1", - "id": "25877355625", + "id": "26658667828", "job_name": "test-cuttlefish / test-cuttlefish", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:37Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976739" + "timestamp": "2026-05-29T19:47:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308783" }, "schema_version": "2.0", "tests": { @@ -15490,37 +15490,37 @@ "duration_seconds": 0, "name": "Test 1 - Check cvd binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976739#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308783#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Installed Package Version", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976739#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308783#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Check cvd help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976739#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308783#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Check Host Resource Files", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976739#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308783#step:10:1" }, { "duration_seconds": 0, "name": "Test 5 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976739#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308783#step:11:1" }, { "duration_seconds": 0, "name": "Test 6 - Regression applicability", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976739#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308783#step:12:1" } ], "duration_seconds": 0, @@ -15538,7 +15538,7 @@ "dashboard_link": "/linux/opensource_packages/cuvs", "job_url_resolution_status": "central_exact", "package_slug": "cuvs", - "production_refreshed_at": "2026-05-14T19:37:17.305055+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.527327+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -15552,15 +15552,15 @@ }, "run": { "attempt": "1", - "id": "25877392111", + "id": "26658699892", "job_name": "test-cuvs / test-cuvs", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:22Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096627" + "timestamp": "2026-05-29T19:48:31Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420878" }, "schema_version": "2.0", "tests": { @@ -15569,46 +15569,46 @@ "duration_seconds": 0, "name": "Test 1 - Baseline package evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096627#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420878#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Baseline version and release alignment", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096627#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420878#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Package-specific source or docs evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096627#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420878#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Arm64 support gate", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096627#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420878#step:10:1" }, { "duration_seconds": 0, "name": "Test 5 - Run scoped Arm preflight proof", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096627#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420878#step:11:1" }, { "comparison": "Test 6 limited_cpu_smoke_validated: reran the same bounded scoped Arm source/compile/import/help/manifest preflight against the next stable candidate. This is CPU-side preflight evidence only; no GPU/CUDA driver/runtime, accelerator execution, Kubernetes cluster, or full product runtime is claimed.", "current_version": "24.04.00", "decision": "limited_cpu_smoke_validated", - "duration_seconds": 1, + "duration_seconds": 2, "latest_version": "26.04.00", "name": "Test 6 - Regression Validation", "next_installed_version": "26.04.00", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096627#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420878#step:12:1" } ], - "duration_seconds": 1, + "duration_seconds": 2, "failed": 0, "passed": 6, "skipped": 0 @@ -15623,7 +15623,7 @@ "dashboard_link": "/linux/opensource_packages/cv-cuda", "job_url_resolution_status": "central_exact", "package_slug": "cv-cuda", - "production_refreshed_at": "2026-05-14T19:37:17.305268+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.527519+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -15637,15 +15637,15 @@ }, "run": { "attempt": "1", - "id": "25877392111", + "id": "26658699892", "job_name": "test-cv-cuda / test-cv-cuda", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:23Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096360" + "timestamp": "2026-05-29T19:48:31Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420764" }, "schema_version": "2.0", "tests": { @@ -15654,46 +15654,46 @@ "duration_seconds": 0, "name": "Test 1 - Baseline package evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096360#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420764#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Baseline version and release alignment", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096360#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420764#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Package-specific source or docs evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096360#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420764#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Arm64 support gate", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096360#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420764#step:10:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 5 - Run scoped Arm preflight proof", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096360#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420764#step:11:1" }, { "comparison": "Test 6 limited_cpu_smoke_validated: reran the same bounded scoped Arm source/compile/import/help/manifest preflight against the next stable candidate. This is CPU-side preflight evidence only; no GPU/CUDA driver/runtime, accelerator execution, Kubernetes cluster, or full product runtime is claimed.", "current_version": "0.4.0", "decision": "limited_cpu_smoke_validated", - "duration_seconds": 4, + "duration_seconds": 3, "latest_version": "0.16.0", "name": "Test 6 - Regression Validation", "next_installed_version": "0.16.0", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096360#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420764#step:12:1" } ], - "duration_seconds": 4, + "duration_seconds": 2, "failed": 0, "passed": 6, "skipped": 0 @@ -15708,7 +15708,7 @@ "dashboard_link": "/linux/opensource_packages/dali", "job_url_resolution_status": "central_exact", "package_slug": "dali", - "production_refreshed_at": "2026-05-14T19:37:17.305486+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.527695+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -15722,15 +15722,15 @@ }, "run": { "attempt": "1", - "id": "25877392111", + "id": "26658699892", "job_name": "test-dali / test-dali", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:26Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096314" + "timestamp": "2026-05-29T19:48:30Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420526" }, "schema_version": "2.0", "tests": { @@ -15739,46 +15739,46 @@ "duration_seconds": 0, "name": "Test 1 - Baseline package evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096314#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420526#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Baseline version and release alignment", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096314#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420526#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Package-specific source or docs evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096314#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420526#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Arm64 support gate", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096314#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420526#step:10:1" }, { "duration_seconds": 0, "name": "Test 5 - Run scoped Arm preflight proof", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096314#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420526#step:11:1" }, { "comparison": "Test 6 limited_cpu_smoke_validated: reran the same bounded scoped Arm source/compile/import/help/manifest preflight against the next stable candidate. This is CPU-side preflight evidence only; no GPU/CUDA driver/runtime, accelerator execution, Kubernetes cluster, or full product runtime is claimed.", "current_version": "0.11.0", "decision": "limited_cpu_smoke_validated", - "duration_seconds": 17, + "duration_seconds": 18, "latest_version": "2.1.0", "name": "Test 6 - Regression Validation", "next_installed_version": "2.1.0", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096314#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420526#step:12:1" } ], - "duration_seconds": 17, + "duration_seconds": 18, "failed": 0, "passed": 6, "skipped": 0 @@ -15793,7 +15793,7 @@ "dashboard_link": "/linux/opensource_packages/dapr", "job_url_resolution_status": "central_exact", "package_slug": "dapr", - "production_refreshed_at": "2026-05-14T19:37:17.305785+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.527958+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -15807,15 +15807,15 @@ }, "run": { "attempt": "1", - "id": "25877415436", + "id": "26658721315", "job_name": "test-dapr / test-dapr", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:54Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180907" + "timestamp": "2026-05-29T19:48:57Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491935" }, "schema_version": "2.0", "tests": { @@ -15824,46 +15824,46 @@ "duration_seconds": 0, "name": "Test 1 - Check dapr binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180907#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491935#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check dapr version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180907#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491935#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check dapr help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180907#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491935#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180907#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491935#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180907#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491935#step:10:1" }, { "comparison": "Current pinned Dapr CLI 1.16.2 passed smoke tests in this run. Regression validation downloaded the next stable Arm64 CLI 1.16.3, and the candidate binary reported version 1.16.3 with a working init help path.", "current_version": "1.16.2", "decision": "next_install_validated", - "duration_seconds": 1, + "duration_seconds": 2, "latest_version": "1.16.3", "name": "Test 6 - Regression Validation", "next_installed_version": "1.16.3", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180907#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491935#step:11:1" } ], - "duration_seconds": 1, + "duration_seconds": 2, "failed": 0, "passed": 6, "skipped": 0 @@ -15878,7 +15878,7 @@ "dashboard_link": "/linux/opensource_packages/dapr_serverless", "job_url_resolution_status": "central_exact", "package_slug": "dapr_serverless", - "production_refreshed_at": "2026-05-14T19:37:17.306005+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.528138+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -15890,15 +15890,15 @@ }, "run": { "attempt": "1", - "id": "25877427741", + "id": "26658731236", "job_name": "test-dapr_serverless / test-dapr_serverless", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:11Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218484" + "timestamp": "2026-05-29T19:49:11Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529587" }, "schema_version": "2.0", "tests": { @@ -15907,40 +15907,40 @@ "duration_seconds": 0, "name": "Test 1 - Check Node sample image availability", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218484#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529587#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Python sample image availability", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218484#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529587#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Check pulled image architecture", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218484#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529587#step:9:1" }, { "duration_seconds": 2, "name": "Test 4 - Check Node sample runtime", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218484#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529587#step:10:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 5 - Check Python sample execution", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218484#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529587#step:11:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218484#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529587#step:12:1" } ], - "duration_seconds": 1, + "duration_seconds": 3, "failed": 0, "passed": 6, "skipped": 0 @@ -15955,7 +15955,7 @@ "dashboard_link": "/linux/opensource_packages/dask-cuda", "job_url_resolution_status": "central_exact", "package_slug": "dask-cuda", - "production_refreshed_at": "2026-05-14T19:37:17.306216+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.528341+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -15969,15 +15969,15 @@ }, "run": { "attempt": "1", - "id": "25877395502", + "id": "26658703674", "job_name": "test-dask-cuda / test-dask-cuda", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:26Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110022" + "timestamp": "2026-05-29T19:48:34Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433041" }, "schema_version": "2.0", "tests": { @@ -15986,31 +15986,31 @@ "duration_seconds": 0, "name": "Test 1 - Baseline package evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110022#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433041#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Baseline version and release alignment", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110022#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433041#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Package-specific source or docs evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110022#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433041#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Arm64 support gate", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110022#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433041#step:10:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 5 - Run scoped Arm preflight proof", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110022#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433041#step:11:1" }, { "comparison": "Test 6 limited_cpu_smoke_validated: reran the same bounded scoped Arm source/compile/import/help/manifest preflight against the next stable candidate. This is CPU-side preflight evidence only; no GPU/CUDA driver/runtime, accelerator execution, Kubernetes cluster, or full product runtime is claimed.", @@ -16022,10 +16022,10 @@ "next_installed_version": "26.04.00", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110022#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433041#step:12:1" } ], - "duration_seconds": 1, + "duration_seconds": 2, "failed": 0, "passed": 6, "skipped": 0 @@ -16040,7 +16040,7 @@ "dashboard_link": "/linux/opensource_packages/databend", "job_url_resolution_status": "central_exact", "package_slug": "databend", - "production_refreshed_at": "2026-05-14T19:37:17.306408+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.528529+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -16054,15 +16054,15 @@ }, "run": { "attempt": "1", - "id": "25877379982", + "id": "26658688675", "job_name": "test-databend / test-databend", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:05Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057302" + "timestamp": "2026-05-29T19:48:14Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380570" }, "schema_version": "2.0", "tests": { @@ -16071,46 +16071,46 @@ "duration_seconds": 1, "name": "Test 1 - Check databend-query binary", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057302#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380570#step:7:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 2 - Check version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057302#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380570#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057302#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380570#step:9:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 4 - Check version metadata output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057302#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380570#step:10:1" }, { "duration_seconds": 1, "name": "Test 5 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057302#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380570#step:11:1" }, { "comparison": "Current pinned Databend release 1.2.861-nightly passed smoke tests in this run. Regression validation downloaded the newer published Arm64 candidate 1.2.862-nightly, and the candidate binary reported version 1.2.862-nightly while exposing the expected help output on Arm64.", "current_version": "1.2.861-nightly", "decision": "next_install_validated", - "duration_seconds": 17, + "duration_seconds": 18, "latest_version": "1.2.862-nightly", "name": "Test 6 - Regression Validation", "next_installed_version": "1.2.862-nightly", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057302#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380570#step:12:1" } ], - "duration_seconds": 19, + "duration_seconds": 20, "failed": 0, "passed": 6, "skipped": 0 @@ -16125,7 +16125,7 @@ "dashboard_link": "/linux/opensource_packages/dav1d", "job_url_resolution_status": "central_exact", "package_slug": "dav1d", - "production_refreshed_at": "2026-05-14T19:37:17.306636+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.528704+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -16139,15 +16139,15 @@ }, "run": { "attempt": "1", - "id": "25877399008", + "id": "26658707245", "job_name": "test-dav1d / test-dav1d", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:32Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048124706" + "timestamp": "2026-05-29T19:48:39Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575444535" }, "schema_version": "2.0", "tests": { @@ -16156,31 +16156,31 @@ "duration_seconds": 0, "name": "Test 1 - Check dav1d binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048124706#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575444535#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Check dav1d version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048124706#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575444535#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Check dav1d help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048124706#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575444535#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Check help exposes decoder options", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048124706#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575444535#step:10:1" }, { "duration_seconds": 0, "name": "Test 5 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048124706#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575444535#step:11:1" }, { "comparison": "Current pinned Dav1d release 1.5.1 passed smoke tests in this run. Regression validation built the next stable source tag 1.5.3 on Arm64, and the candidate decoder reported version 1.5.3 while exposing real help output.", @@ -16192,7 +16192,7 @@ "next_installed_version": "1.5.3", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048124706#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575444535#step:12:1" } ], "duration_seconds": 8, @@ -16210,7 +16210,7 @@ "dashboard_link": "/linux/opensource_packages/daytona", "job_url_resolution_status": "central_exact", "package_slug": "daytona", - "production_refreshed_at": "2026-05-14T19:37:17.306859+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.528871+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -16224,15 +16224,15 @@ }, "run": { "attempt": "1", - "id": "25877359516", + "id": "26658670904", "job_name": "test-daytona / test-daytona", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:45Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991476" + "timestamp": "2026-05-29T19:47:53Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321569" }, "schema_version": "2.0", "tests": { @@ -16241,31 +16241,31 @@ "duration_seconds": 0, "name": "Test 1 - Check daytona binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991476#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321569#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Check daytona version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991476#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321569#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Check daytona help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991476#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321569#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991476#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321569#step:10:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991476#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321569#step:11:1" }, { "comparison": "Current pinned Daytona release 0.151.0 passed smoke tests in this run. Regression validation downloaded the next stable Arm64 candidate 0.152.0, and the candidate binary reported version 0.152.0 while exposing the expected create-help and autocomplete behavior on Arm64.", @@ -16277,7 +16277,7 @@ "next_installed_version": "0.152.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991476#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321569#step:12:1" } ], "duration_seconds": 1, @@ -16295,7 +16295,7 @@ "dashboard_link": "/linux/opensource_packages/dcgm", "job_url_resolution_status": "central_exact", "package_slug": "dcgm", - "production_refreshed_at": "2026-05-14T19:37:17.307249+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.529201+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -16309,63 +16309,63 @@ }, "run": { "attempt": "1", - "id": "25877395502", + "id": "26658703674", "job_name": "test-dcgm / test-dcgm", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:26Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109982" + "timestamp": "2026-05-29T19:48:34Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433132" }, "schema_version": "2.0", "tests": { "details": [ { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 1 - Baseline package evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109982#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433132#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Baseline version and release alignment", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109982#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433132#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Package-specific source or docs evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109982#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433132#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Arm64 support gate", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109982#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433132#step:10:1" }, { "duration_seconds": 0, "name": "Test 5 - Run scoped Arm preflight proof", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109982#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433132#step:11:1" }, { "comparison": "Test 6 limited_cpu_smoke_validated: reran the same bounded scoped Arm source/compile/import/help/manifest preflight against the next stable candidate. This is CPU-side preflight evidence only; no GPU/CUDA driver/runtime, accelerator execution, Kubernetes cluster, or full product runtime is claimed.", "current_version": "2.0.13", "decision": "limited_cpu_smoke_validated", - "duration_seconds": 68, + "duration_seconds": 66, "latest_version": "4.4.2", "name": "Test 6 - Regression Validation", "next_installed_version": "4.4.2", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109982#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433132#step:12:1" } ], - "duration_seconds": 68, + "duration_seconds": 66, "failed": 0, "passed": 6, "skipped": 0 @@ -16380,7 +16380,7 @@ "dashboard_link": "/linux/opensource_packages/dcgm-exporter", "job_url_resolution_status": "central_exact", "package_slug": "dcgm-exporter", - "production_refreshed_at": "2026-05-14T19:37:17.307046+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.529038+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -16394,15 +16394,15 @@ }, "run": { "attempt": "1", - "id": "25877395502", + "id": "26658703674", "job_name": "test-dcgm-exporter / test-dcgm-exporter", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:26Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109975" + "timestamp": "2026-05-29T19:48:34Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433037" }, "schema_version": "2.0", "tests": { @@ -16411,46 +16411,46 @@ "duration_seconds": 0, "name": "Test 1 - Baseline package evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109975#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433037#step:7:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 2 - Baseline version and release alignment", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109975#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433037#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Package-specific source or docs evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109975#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433037#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Arm64 support gate", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109975#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433037#step:10:1" }, { - "duration_seconds": 8, + "duration_seconds": 9, "name": "Test 5 - Run scoped Arm preflight proof", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109975#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433037#step:11:1" }, { "comparison": "Test 6 limited_cpu_smoke_validated: reran the same bounded scoped Arm source/compile/import/help/manifest preflight against the next stable candidate. This is CPU-side preflight evidence only; no GPU/CUDA driver/runtime, accelerator execution, Kubernetes cluster, or full product runtime is claimed.", "current_version": "2.3.2-2.6.3", "decision": "limited_cpu_smoke_validated", - "duration_seconds": 11, + "duration_seconds": 12, "latest_version": "4.5.2-4.8.1", "name": "Test 6 - Regression Validation", "next_installed_version": "4.5.2-4.8.1", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109975#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433037#step:12:1" } ], - "duration_seconds": 19, + "duration_seconds": 21, "failed": 0, "passed": 6, "skipped": 0 @@ -16465,7 +16465,7 @@ "dashboard_link": "/linux/opensource_packages/debian", "job_url_resolution_status": "central_exact", "package_slug": "debian", - "production_refreshed_at": "2026-05-14T19:37:17.307455+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.529411+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -16477,15 +16477,15 @@ }, "run": { "attempt": "1", - "id": "25877379982", + "id": "26658688675", "job_name": "test-debian / test-debian", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:06Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057361" + "timestamp": "2026-05-29T19:48:15Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380564" }, "schema_version": "2.0", "tests": { @@ -16494,40 +16494,40 @@ "duration_seconds": 0, "name": "Test 1 - Check /etc/debian_version", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057361#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380564#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check apt-get exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057361#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380564#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check dpkg exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057361#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380564#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057361#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380564#step:9:1" }, { - "duration_seconds": 53, + "duration_seconds": 18, "name": "Test 5 - Functional Validation (apt install)", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057361#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380564#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057361#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380564#step:11:1" } ], - "duration_seconds": 53, + "duration_seconds": 18, "failed": 0, "passed": 6, "skipped": 0 @@ -16542,7 +16542,7 @@ "dashboard_link": "/linux/opensource_packages/debian_elts", "job_url_resolution_status": "central_exact", "package_slug": "debian_elts", - "production_refreshed_at": "2026-05-14T19:37:17.307670+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.529589+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -16556,15 +16556,15 @@ }, "run": { "attempt": "1", - "id": "25877371674", + "id": "26658681575", "job_name": "test-debian_elts / test-debian_elts", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:58Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031792" + "timestamp": "2026-05-29T19:48:07Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357976" }, "schema_version": "2.0", "tests": { @@ -16573,46 +16573,46 @@ "duration_seconds": 0, "name": "Test 1 - Check image architecture", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031792#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357976#step:6:1" }, { "duration_seconds": 1, "name": "Test 2 - Check OS release file", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031792#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357976#step:7:1" }, { "duration_seconds": 4, "name": "Test 3 - Install package with apt", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031792#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357976#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Check architecture inside container", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031792#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357976#step:9:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 5 - Simple command execution", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031792#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357976#step:10:1" }, { "comparison": "Baseline Debian 11 passed the Arm64 container smoke in this run, and candidate image tag 12.13 also pulled successfully, reported VERSION_ID 12, completed in-container apt smoke, and passed architecture plus command validation on Arm64.", "current_version": "11", "decision": "next_install_validated", - "duration_seconds": 9, + "duration_seconds": 10, "latest_version": "12.13", "name": "Test 6 - Regression Validation", "next_installed_version": "12", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031792#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357976#step:11:1" } ], - "duration_seconds": 14, + "duration_seconds": 16, "failed": 0, "passed": 6, "skipped": 0 @@ -16627,7 +16627,7 @@ "dashboard_link": "/linux/opensource_packages/deepspeed", "job_url_resolution_status": "central_exact", "package_slug": "deepspeed", - "production_refreshed_at": "2026-05-14T19:37:17.307890+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.529761+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -16641,15 +16641,15 @@ }, "run": { "attempt": "1", - "id": "25877395502", + "id": "26658703674", "job_name": "test-deepspeed / test-deepspeed", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:25Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110001" + "timestamp": "2026-05-29T19:48:34Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433239" }, "schema_version": "2.0", "tests": { @@ -16658,43 +16658,43 @@ "duration_seconds": 0, "name": "Test 1 - Baseline package evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110001#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433239#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Baseline version and release alignment", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110001#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433239#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Package-specific source or docs evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110001#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433239#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Arm64 support gate", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110001#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433239#step:10:1" }, { "duration_seconds": 0, "name": "Test 5 - Bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110001#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433239#step:11:1" }, { "comparison": "Test 6 limited_cpu_smoke_validated: cloned the next DeepSpeed source candidate on Arm64 and compiled/inspected its runtime config plus op-builder Python surfaces. This is CPU-side preflight evidence only; no GPU training or accelerator kernel execution is claimed.", "current_version": "0.4.1", "decision": "limited_cpu_smoke_validated", "duration_seconds": 6, - "latest_version": "0.19.0", + "latest_version": "0.19.1", "name": "Test 6 - Regression Validation", - "next_installed_version": "0.19.0", + "next_installed_version": "0.19.1", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110001#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433239#step:12:1" } ], "duration_seconds": 6, @@ -16712,7 +16712,7 @@ "dashboard_link": "/linux/opensource_packages/deepstreamHub", "job_url_resolution_status": "central_exact", "package_slug": "deepstreamHub", - "production_refreshed_at": "2026-05-14T19:37:17.308077+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.529933+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -16726,15 +16726,15 @@ }, "run": { "attempt": "1", - "id": "25877423406", + "id": "26658727918", "job_name": "test-deepstreamhub / test-deepstreamhub", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:01Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209942" + "timestamp": "2026-05-29T19:49:09Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515958" }, "schema_version": "2.0", "tests": { @@ -16743,31 +16743,31 @@ "duration_seconds": 0, "name": "Test 1 - Check deepstream binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209942#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515958#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209942#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515958#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check CLI output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209942#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515958#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209942#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515958#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209942#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515958#step:10:1" }, { "comparison": "Current pinned deepstream version 8.0.0 passed smoke tests in this run. Regression validation installed candidate version 9.0.0 on Arm64, and the installed binary reported version 9.0.0.", @@ -16779,7 +16779,7 @@ "next_installed_version": "9.0.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209942#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515958#step:11:1" } ], "duration_seconds": 2, @@ -16797,7 +16797,7 @@ "dashboard_link": "/linux/opensource_packages/deeptools", "job_url_resolution_status": "central_exact", "package_slug": "deeptools", - "production_refreshed_at": "2026-05-14T19:37:17.308289+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.530100+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -16809,15 +16809,15 @@ }, "run": { "attempt": "1", - "id": "25877423406", + "id": "26658727918", "job_name": "test-deeptools / test-deeptools", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:02Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210275" + "timestamp": "2026-05-29T19:49:08Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516232" }, "schema_version": "2.0", "tests": { @@ -16826,37 +16826,37 @@ "duration_seconds": 0, "name": "Test 1 - Check deeptools binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210275#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516232#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210275#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516232#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210275#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516232#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210275#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516232#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210275#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516232#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210275#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516232#step:11:1" } ], "duration_seconds": 0, @@ -16874,7 +16874,7 @@ "dashboard_link": "/linux/opensource_packages/dentos", "job_url_resolution_status": "central_exact", "package_slug": "dentos", - "production_refreshed_at": "2026-05-14T19:37:17.308492+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.530286+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -16888,63 +16888,63 @@ }, "run": { "attempt": "1", - "id": "25877383844", + "id": "26658692522", "job_name": "test-dentos / test-dentos", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:11Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071776" + "timestamp": "2026-05-29T19:48:20Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394859" }, "schema_version": "2.0", "tests": { "details": [ { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 1 - Check build scripts", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071776#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394859#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check documentation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071776#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394859#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check build environment setup", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071776#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394859#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071776#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394859#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Validate Arm64 Image Tooling", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071776#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394859#step:10:1" }, { "comparison": "DentOS baseline v3.1 passed scoped Arm64 build metadata and image-tooling validation on the Arm runner, and candidate v3.2 preserved the same Arm64 build files/tooling references. Full image build remains out of scope for the generic runner.", "current_version": "v3.1", "decision": "next_install_validated", - "duration_seconds": 2, + "duration_seconds": 3, "latest_version": "v3.2", "name": "Test 6 - Regression Validation", "next_installed_version": "v3.2", "regression_result": "Next version Arm64 source preflight passed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071776#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394859#step:11:1" } ], - "duration_seconds": 2, + "duration_seconds": 3, "failed": 0, "passed": 6, "skipped": 0 @@ -16959,7 +16959,7 @@ "dashboard_link": "/linux/opensource_packages/devtron", "job_url_resolution_status": "central_exact", "package_slug": "devtron", - "production_refreshed_at": "2026-05-14T19:37:17.308693+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.530468+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -16973,15 +16973,15 @@ }, "run": { "attempt": "1", - "id": "25877399008", + "id": "26658707245", "job_name": "test-devtron / test-devtron", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:32Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126017" + "timestamp": "2026-05-29T19:48:39Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445416" }, "schema_version": "2.0", "tests": { @@ -16990,46 +16990,46 @@ "duration_seconds": 0, "name": "Test 1 - Check Devtron chart exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126017#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445416#step:6:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 2 - Check chart metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126017#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445416#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Resolve Helm dependencies", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126017#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445416#step:8:1" }, { - "duration_seconds": 19, + "duration_seconds": 11, "name": "Test 4 - Verify Arm64 image manifests", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126017#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445416#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Render Devtron chart", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126017#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445416#step:10:1" }, { "comparison": "Current pinned Devtron chart appVersion 1.1.0 with chart version 0.22.79 passed dependency build, Arm64 image-manifest checks, and Helm rendering in this run. Regression validation checked out release v1.2.0, built chart dependencies, verified Arm64 manifests for the core images, and rendered candidate chart version 0.22.80 with appVersion 1.2.0 successfully.", "current_version": "1.1.0", "decision": "next_install_validated", - "duration_seconds": 13, + "duration_seconds": 15, "latest_version": "1.2.0", "name": "Test 6 - Regression Validation", "next_installed_version": "1.2.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126017#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445416#step:11:1" } ], - "duration_seconds": 32, + "duration_seconds": 26, "failed": 0, "passed": 6, "skipped": 0 @@ -17044,7 +17044,7 @@ "dashboard_link": "/linux/opensource_packages/dhcp", "job_url_resolution_status": "central_exact", "package_slug": "dhcp", - "production_refreshed_at": "2026-05-14T19:37:17.308926+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.530636+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -17056,54 +17056,54 @@ }, "run": { "attempt": "1", - "id": "25877359516", + "id": "26658670904", "job_name": "test-dhcp / test-dhcp", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:45Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991602" + "timestamp": "2026-05-29T19:47:53Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321539" }, "schema_version": "2.0", "tests": { "details": [ { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 1 - Check dhcpd binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991602#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321539#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991602#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321539#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Check config syntax check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991602#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321539#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991602#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321539#step:10:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991602#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321539#step:11:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991602#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321539#step:12:1" } ], "duration_seconds": 0, @@ -17121,7 +17121,7 @@ "dashboard_link": "/linux/opensource_packages/dify", "job_url_resolution_status": "central_exact", "package_slug": "dify", - "production_refreshed_at": "2026-05-14T19:37:17.309109+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.530803+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -17135,15 +17135,15 @@ }, "run": { "attempt": "1", - "id": "25877395502", + "id": "26658703674", "job_name": "test-dify / test-dify", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:25Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110089" + "timestamp": "2026-05-29T19:48:33Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432889" }, "schema_version": "2.0", "tests": { @@ -17152,43 +17152,43 @@ "duration_seconds": 0, "name": "Test 1 - Baseline package evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110089#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432889#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Baseline version and release alignment", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110089#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432889#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Package-specific source or docs evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110089#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432889#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Arm64 support gate", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110089#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432889#step:10:1" }, { "duration_seconds": 3, "name": "Test 5 - Bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110089#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432889#step:11:1" }, { "comparison": "Compiled the next Dify backend Python source candidate on the Arm64 runner and validated its Docker Compose configuration. Full multi-service runtime remains scoped because external services and LLM configuration are required.", "current_version": "0.3.13", "decision": "limited_cpu_smoke_validated", "duration_seconds": 9, - "latest_version": "1.14.1", + "latest_version": "1.14.2", "name": "Test 6 - Regression Validation", - "next_installed_version": "1.14.1", + "next_installed_version": "1.14.2", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110089#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432889#step:12:1" } ], "duration_seconds": 12, @@ -17206,7 +17206,7 @@ "dashboard_link": "/linux/opensource_packages/disconf", "job_url_resolution_status": "central_exact", "package_slug": "disconf", - "production_refreshed_at": "2026-05-14T19:37:17.309315+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.530971+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -17220,15 +17220,15 @@ }, "run": { "attempt": "1", - "id": "25877387746", + "id": "26658696365", "job_name": "test-disconf / test-disconf", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:17Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083851" + "timestamp": "2026-05-29T19:48:23Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407600" }, "schema_version": "2.0", "tests": { @@ -17237,46 +17237,46 @@ "duration_seconds": 0, "name": "Test 1 - Check source tree exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083851#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407600#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Maven modules exist", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083851#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407600#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Check SQL assets exist", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083851#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407600#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083851#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407600#step:10:1" }, { - "duration_seconds": 23, + "duration_seconds": 22, "name": "Test 5 - Build baseline disconf-core in Temurin 8 container", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083851#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407600#step:11:1" }, { "comparison": "Current pinned Disconf release tag 2.6.27 passed the Dockerized Temurin 8 build on Arm64. Regression validation downloaded release tag 2.6.28, installed it into an isolated Maven repository inside the container, and produced disconf-core/target/disconf-core.jar successfully. The GitHub release tag is treated as the authoritative package version because older upstream Maven version fields are inconsistent.", "current_version": "2.6.27", "decision": "next_install_validated", - "duration_seconds": 13, + "duration_seconds": 11, "latest_version": "2.6.28", "name": "Test 6 - Regression Validation", "next_installed_version": "2.6.28", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083851#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407600#step:12:1" } ], - "duration_seconds": 36, + "duration_seconds": 33, "failed": 0, "passed": 6, "skipped": 0 @@ -17291,7 +17291,7 @@ "dashboard_link": "/linux/opensource_packages/distribution-registry", "job_url_resolution_status": "central_exact", "package_slug": "distribution-registry", - "production_refreshed_at": "2026-05-14T19:37:17.309530+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.531138+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -17305,15 +17305,15 @@ }, "run": { "attempt": "1", - "id": "25877406767", + "id": "26658714432", "job_name": "test-distribution-registry / test-distribution-registry", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:44Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155559" + "timestamp": "2026-05-29T19:48:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469234" }, "schema_version": "2.0", "tests": { @@ -17322,46 +17322,46 @@ "duration_seconds": 0, "name": "Test 1 - Check registry binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155559#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469234#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version banner", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155559#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469234#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155559#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469234#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155559#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469234#step:10:1" }, { "duration_seconds": 10, "name": "Test 5 - Start baseline registry", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155559#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469234#step:11:1" }, { "comparison": "Current pinned Distribution Registry release 2.8.3 passed smoke tests in this run. Regression validation downloaded the official Arm64 release asset v3.0.0, and the candidate binary reported version 3.0.0 while completing a bounded real startup on Arm64.", "current_version": "2.8.3", "decision": "next_install_validated", - "duration_seconds": 11, + "duration_seconds": 10, "latest_version": "3.0.0", "name": "Test 6 - Regression Validation", "next_installed_version": "3.0.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155559#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469234#step:12:1" } ], - "duration_seconds": 21, + "duration_seconds": 20, "failed": 0, "passed": 6, "skipped": 0 @@ -17376,7 +17376,7 @@ "dashboard_link": "/linux/opensource_packages/django", "job_url_resolution_status": "central_exact", "package_slug": "django", - "production_refreshed_at": "2026-05-14T19:37:17.309726+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.531323+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -17388,15 +17388,15 @@ }, "run": { "attempt": "1", - "id": "25877392111", + "id": "26658699892", "job_name": "test-django / test-django", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:23Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096420" + "timestamp": "2026-05-29T19:48:29Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420635" }, "schema_version": "2.0", "tests": { @@ -17405,37 +17405,37 @@ "duration_seconds": 0, "name": "Test 1 - Check django-admin binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096420#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420635#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096420#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420635#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Create Project", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096420#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420635#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096420#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420635#step:9:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096420#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420635#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096420#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420635#step:11:1" } ], "duration_seconds": 0, @@ -17453,7 +17453,7 @@ "dashboard_link": "/linux/opensource_packages/dm", "job_url_resolution_status": "central_exact", "package_slug": "dm", - "production_refreshed_at": "2026-05-14T19:37:17.309931+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.531497+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -17465,15 +17465,15 @@ }, "run": { "attempt": "1", - "id": "25877379982", + "id": "26658688675", "job_name": "test-dm / test-dm", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:05Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057134" + "timestamp": "2026-05-29T19:48:16Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380586" }, "schema_version": "2.0", "tests": { @@ -17482,40 +17482,40 @@ "duration_seconds": 0, "name": "Test 1 - Package existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057134#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380586#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Exact version check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057134#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380586#step:7:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 3 - Help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057134#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380586#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057134#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380586#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057134#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380586#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057134#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380586#step:11:1" } ], - "duration_seconds": 1, + "duration_seconds": 0, "failed": 0, "passed": 6, "skipped": 0 @@ -17530,7 +17530,7 @@ "dashboard_link": "/linux/opensource_packages/dnsmasq", "job_url_resolution_status": "central_exact", "package_slug": "dnsmasq", - "production_refreshed_at": "2026-05-14T19:37:17.310131+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.531665+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -17542,15 +17542,15 @@ }, "run": { "attempt": "1", - "id": "25877383844", + "id": "26658692522", "job_name": "test-dnsmasq / test-dnsmasq", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:12Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071187" + "timestamp": "2026-05-29T19:48:19Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394841" }, "schema_version": "2.0", "tests": { @@ -17559,37 +17559,37 @@ "duration_seconds": 0, "name": "Test 1 - Check dnsmasq binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071187#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394841#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071187#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394841#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071187#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394841#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071187#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394841#step:9:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071187#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394841#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071187#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394841#step:11:1" } ], "duration_seconds": 0, @@ -17607,7 +17607,7 @@ "dashboard_link": "/linux/opensource_packages/docker", "job_url_resolution_status": "central_exact", "package_slug": "docker", - "production_refreshed_at": "2026-05-14T19:37:17.310594+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.532080+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -17619,15 +17619,15 @@ }, "run": { "attempt": "1", - "id": "25877415436", + "id": "26658721315", "job_name": "test-docker / test-docker", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:50Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180791" + "timestamp": "2026-05-29T19:48:58Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491602" }, "schema_version": "2.0", "tests": { @@ -17636,40 +17636,40 @@ "duration_seconds": 0, "name": "Test 1 - Check docker binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180791#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491602#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180791#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491602#step:7:1" }, { "duration_seconds": 3, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180791#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491602#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180791#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491602#step:9:1" }, { - "duration_seconds": 1, + "duration_seconds": 4, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180791#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491602#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180791#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491602#step:11:1" } ], - "duration_seconds": 4, + "duration_seconds": 6, "failed": 0, "passed": 6, "skipped": 0 @@ -17684,7 +17684,7 @@ "dashboard_link": "/linux/opensource_packages/docker-ce", "job_url_resolution_status": "central_exact", "package_slug": "docker-ce", - "production_refreshed_at": "2026-05-14T19:37:17.310318+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.531827+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -17698,15 +17698,15 @@ }, "run": { "attempt": "1", - "id": "25877403044", + "id": "26658710721", "job_name": "test-docker-ce / test-docker-ce", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:37Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140556" + "timestamp": "2026-05-29T19:48:44Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456224" }, "schema_version": "2.0", "tests": { @@ -17715,43 +17715,43 @@ "duration_seconds": 0, "name": "Test 1 - Check docker and dockerd binaries exist", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140556#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456224#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check docker client version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140556#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456224#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check dockerd version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140556#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456224#step:8:1" }, { - "duration_seconds": 2, + "duration_seconds": 3, "name": "Test 4 - Check docker help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140556#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456224#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Verify Arm64 binaries", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140556#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456224#step:10:1" }, { - "comparison": "Current pinned Docker CE version 24.0.3 passed smoke tests in this run. Regression validation downloaded the next official Arm64 static release 29.4.3, and both the docker client and dockerd binaries reported version 29.4.3 on Arm64.", + "comparison": "Current pinned Docker CE version 24.0.3 passed smoke tests in this run. Regression validation downloaded the next official Arm64 static release 29.5.2, and both the docker client and dockerd binaries reported version 29.5.2 on Arm64.", "current_version": "24.0.3", "decision": "next_install_validated", - "duration_seconds": 2, - "latest_version": "29.4.3", + "duration_seconds": 1, + "latest_version": "29.5.2", "name": "Test 6 - Regression Validation", - "next_installed_version": "29.4.3", + "next_installed_version": "29.5.2", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140556#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456224#step:11:1" } ], "duration_seconds": 4, @@ -17769,7 +17769,7 @@ "dashboard_link": "/linux/opensource_packages/docker_compose", "job_url_resolution_status": "central_exact", "package_slug": "docker_compose", - "production_refreshed_at": "2026-05-14T19:37:17.310807+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.532266+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -17783,15 +17783,15 @@ }, "run": { "attempt": "1", - "id": "25877427741", + "id": "26658731236", "job_name": "test-docker_compose / test-docker_compose", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:09Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218449" + "timestamp": "2026-05-29T19:49:11Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529661" }, "schema_version": "2.0", "tests": { @@ -17800,31 +17800,31 @@ "duration_seconds": 0, "name": "Test 1 - Check docker-compose binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218449#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529661#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check docker-compose version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218449#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529661#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check docker-compose help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218449#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529661#step:8:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 4 - Functional Validation (config help)", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218449#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529661#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Verify Arm64 binary", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218449#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529661#step:10:1" }, { "comparison": "Current pinned Docker-Compose version 2.35.1 passed smoke tests in this run. Regression validation installed candidate version 2.36.0 on Arm64, and the staged binary reported version 2.36.0.", @@ -17836,10 +17836,10 @@ "next_installed_version": "2.36.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218449#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529661#step:11:1" } ], - "duration_seconds": 0, + "duration_seconds": 1, "failed": 0, "passed": 6, "skipped": 0 @@ -17854,7 +17854,7 @@ "dashboard_link": "/linux/opensource_packages/dolphinscheduler", "job_url_resolution_status": "central_exact", "package_slug": "dolphinscheduler", - "production_refreshed_at": "2026-05-14T19:37:17.310994+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.532455+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -17868,15 +17868,15 @@ }, "run": { "attempt": "1", - "id": "25877399008", + "id": "26658707245", "job_name": "test-dolphinscheduler / test-dolphinscheduler", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:43Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125960" + "timestamp": "2026-05-29T19:48:46Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445238" }, "schema_version": "2.0", "tests": { @@ -17885,46 +17885,46 @@ "duration_seconds": 0, "name": "Test 1 - Check distribution scripts exist", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125960#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445238#step:10:1" }, { "duration_seconds": 0, "name": "Test 2 - Check alert-server directory exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125960#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445238#step:11:1" }, { "duration_seconds": 0, "name": "Test 3 - Check alert-server config exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125960#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445238#step:12:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125960#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445238#step:13:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional validation (distribution layout)", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125960#step:14:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445238#step:14:1" }, { "comparison": "Current pinned DolphinScheduler version 3.2.1 passed smoke tests in this run. Regression validation downloaded and extracted candidate version 3.4.1 on Arm64, and the staged distribution exposed the expected daemon scripts plus either the legacy alert-server layout or the current monolithic libs/master-server layout.", "current_version": "3.2.1", "decision": "next_install_validated", - "duration_seconds": 15, + "duration_seconds": 16, "latest_version": "3.4.1", "name": "Test 6 - Regression Validation", "next_installed_version": "3.4.1", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125960#step:15:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445238#step:15:1" } ], - "duration_seconds": 15, + "duration_seconds": 16, "failed": 0, "passed": 6, "skipped": 0 @@ -17939,7 +17939,7 @@ "dashboard_link": "/linux/opensource_packages/domo-java-sdk", "job_url_resolution_status": "central_exact", "package_slug": "domo-java-sdk", - "production_refreshed_at": "2026-05-14T19:37:17.311205+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.532638+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -17951,15 +17951,15 @@ }, "run": { "attempt": "1", - "id": "25877367704", + "id": "26658677990", "job_name": "test-domo-java-sdk / test-domo-java-sdk", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:55Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027094" + "timestamp": "2026-05-29T19:48:03Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347159" }, "schema_version": "2.0", "tests": { @@ -17968,40 +17968,40 @@ "duration_seconds": 0, "name": "Test 1 - Check smoke project files", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027094#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347159#step:6:1" }, { - "duration_seconds": 20, + "duration_seconds": 25, "name": "Test 2 - Check dependency resolution", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027094#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347159#step:7:1" }, { - "duration_seconds": 5, + "duration_seconds": 6, "name": "Test 3 - Check Maven project configuration", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027094#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347159#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027094#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347159#step:9:1" }, { - "duration_seconds": 8, + "duration_seconds": 9, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027094#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347159#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027094#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347159#step:11:1" } ], - "duration_seconds": 33, + "duration_seconds": 40, "failed": 0, "passed": 6, "skipped": 0 @@ -18016,7 +18016,7 @@ "dashboard_link": "/linux/opensource_packages/domo-node-sdk", "job_url_resolution_status": "central_exact", "package_slug": "domo-node-sdk", - "production_refreshed_at": "2026-05-14T19:37:17.311383+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.532809+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -18028,57 +18028,57 @@ }, "run": { "attempt": "1", - "id": "25877415436", + "id": "26658721315", "job_name": "test-domo-node-sdk / test-domo-node-sdk", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:53Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180677" + "timestamp": "2026-05-29T19:48:57Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491796" }, "schema_version": "2.0", "tests": { "details": [ { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 1 - Check npm package exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180677#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491796#step:6:1" }, { "duration_seconds": 1, "name": "Test 2 - Verify Node.js import", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180677#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491796#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check for npm", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180677#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491796#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180677#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491796#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Basic Functional Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180677#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491796#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180677#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491796#step:11:1" } ], - "duration_seconds": 2, + "duration_seconds": 1, "failed": 0, "passed": 6, "skipped": 0 @@ -18093,7 +18093,7 @@ "dashboard_link": "/linux/opensource_packages/domo-python-sdk", "job_url_resolution_status": "central_exact", "package_slug": "domo-python-sdk", - "production_refreshed_at": "2026-05-14T19:37:17.311574+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.532977+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -18105,57 +18105,57 @@ }, "run": { "attempt": "1", - "id": "25877387746", + "id": "26658696365", "job_name": "test-domo-python-sdk / test-domo-python-sdk", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:15Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048085240" + "timestamp": "2026-05-29T19:48:25Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407618" }, "schema_version": "2.0", "tests": { "details": [ { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 1 - Check package installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048085240#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407618#step:6:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 2 - Check import", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048085240#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407618#step:7:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 3 - Check Domo class", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048085240#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407618#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048085240#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407618#step:9:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048085240#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407618#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048085240#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407618#step:11:1" } ], - "duration_seconds": 1, + "duration_seconds": 2, "failed": 0, "passed": 6, "skipped": 0 @@ -18170,7 +18170,7 @@ "dashboard_link": "/linux/opensource_packages/dot-net", "job_url_resolution_status": "central_exact", "package_slug": "dot-net", - "production_refreshed_at": "2026-05-14T19:37:17.311787+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.533141+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -18178,19 +18178,19 @@ }, "package": { "name": ".NET", - "version": "8.0.126" + "version": "8.0.127" }, "run": { "attempt": "1", - "id": "25877423406", + "id": "26658727918", "job_name": "test-dot-net / test-dot-net", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:10Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209429" + "timestamp": "2026-05-29T19:49:08Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516246" }, "schema_version": "2.0", "tests": { @@ -18199,40 +18199,40 @@ "duration_seconds": 0, "name": "Test 1 - Check dotnet binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209429#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516246#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check dotnet version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209429#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516246#step:7:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 3 - Check dotnet help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209429#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516246#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209429#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516246#step:9:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209429#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516246#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209429#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516246#step:11:1" } ], - "duration_seconds": 1, + "duration_seconds": 0, "failed": 0, "passed": 6, "skipped": 0 @@ -18247,7 +18247,7 @@ "dashboard_link": "/linux/opensource_packages/double-conversion", "job_url_resolution_status": "central_exact", "package_slug": "double-conversion", - "production_refreshed_at": "2026-05-14T19:37:17.311994+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.533329+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -18261,15 +18261,15 @@ }, "run": { "attempt": "1", - "id": "25877403044", + "id": "26658710721", "job_name": "test-double-conversion / test-double-conversion", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:37Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140918" + "timestamp": "2026-05-29T19:48:43Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456126" }, "schema_version": "2.0", "tests": { @@ -18278,31 +18278,31 @@ "duration_seconds": 0, "name": "Test 1 - Check CMakeLists.txt exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140918#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456126#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check built library", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140918#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456126#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check header files", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140918#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456126#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140918#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456126#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140918#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456126#step:10:1" }, { "comparison": "Current pinned double-conversion version 3.3.1 passed smoke tests in this run. Regression validation built and compiled against candidate version 3.4.0 from source tag v3.4.0 on Arm64.", @@ -18314,7 +18314,7 @@ "next_installed_version": "3.4.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140918#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456126#step:11:1" } ], "duration_seconds": 4, @@ -18332,7 +18332,7 @@ "dashboard_link": "/linux/opensource_packages/dqlite", "job_url_resolution_status": "central_exact", "package_slug": "dqlite", - "production_refreshed_at": "2026-05-14T19:37:17.312176+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.533504+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -18344,15 +18344,15 @@ }, "run": { "attempt": "1", - "id": "25877403044", + "id": "26658710721", "job_name": "test-dqlite / test-dqlite", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:39Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048139929" + "timestamp": "2026-05-29T19:48:43Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455506" }, "schema_version": "2.0", "tests": { @@ -18361,40 +18361,40 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048139929#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455506#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Run Help", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048139929#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455506#step:8:1" }, { - "duration_seconds": 43, + "duration_seconds": 14, "name": "Test 3 - Check Library File", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048139929#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455506#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Check Pkg-Config", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048139929#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455506#step:10:1" }, { "duration_seconds": 0, "name": "Test 5 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048139929#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455506#step:11:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048139929#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455506#step:12:1" } ], - "duration_seconds": 43, + "duration_seconds": 14, "failed": 0, "passed": 6, "skipped": 0 @@ -18409,7 +18409,7 @@ "dashboard_link": "/linux/opensource_packages/dragonfly", "job_url_resolution_status": "central_exact", "package_slug": "dragonfly", - "production_refreshed_at": "2026-05-14T19:37:17.312378+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.533672+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -18423,15 +18423,15 @@ }, "run": { "attempt": "1", - "id": "25877363365", + "id": "26658674448", "job_name": "test-dragonfly / test-dragonfly", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:48Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001014" + "timestamp": "2026-05-29T19:47:59Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334527" }, "schema_version": "2.0", "tests": { @@ -18440,46 +18440,46 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001014#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334527#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001014#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334527#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001014#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334527#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001014#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334527#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001014#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334527#step:10:1" }, { "comparison": "Current pinned Dragonfly release v2.2.1 passed smoke tests in this run. Regression validation downloaded candidate Arm64 bundle v2.2.2; the current bundle layout ships manager and scheduler binaries, and both reported v2.2.2 on Arm64.", "current_version": "v2.2.1", "decision": "next_install_validated", - "duration_seconds": 3, + "duration_seconds": 6, "latest_version": "v2.2.2", "name": "Test 6 - Regression Validation", "next_installed_version": "v2.2.2", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001014#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334527#step:11:1" } ], - "duration_seconds": 3, + "duration_seconds": 6, "failed": 0, "passed": 6, "skipped": 0 @@ -18494,7 +18494,7 @@ "dashboard_link": "/linux/opensource_packages/dragonflydb", "job_url_resolution_status": "central_exact", "package_slug": "dragonflydb", - "production_refreshed_at": "2026-05-14T19:37:17.312606+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.533843+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -18508,15 +18508,15 @@ }, "run": { "attempt": "1", - "id": "25877392111", + "id": "26658699892", "job_name": "test-dragonflydb / test-dragonflydb", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:23Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095789" + "timestamp": "2026-05-29T19:48:30Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420693" }, "schema_version": "2.0", "tests": { @@ -18525,31 +18525,31 @@ "duration_seconds": 0, "name": "Test 1 - Check dragonfly binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095789#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420693#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095789#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420693#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095789#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420693#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095789#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420693#step:9:1" }, { "duration_seconds": 5, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095789#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420693#step:10:1" }, { "comparison": "Current pinned DragonflyDB release v1.27.3 passed smoke tests in this run. Regression validation downloaded the latest official Arm64 candidate v1.27.4, and the candidate binary reported version v1.27.4 on Arm64.", @@ -18561,7 +18561,7 @@ "next_installed_version": "v1.27.4", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095789#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420693#step:11:1" } ], "duration_seconds": 6, @@ -18579,7 +18579,7 @@ "dashboard_link": "/linux/opensource_packages/drbd", "job_url_resolution_status": "central_exact", "package_slug": "drbd", - "production_refreshed_at": "2026-05-14T19:37:17.312827+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.534007+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -18591,15 +18591,15 @@ }, "run": { "attempt": "1", - "id": "25877387746", + "id": "26658696365", "job_name": "test-drbd / test-drbd", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:16Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084712" + "timestamp": "2026-05-29T19:48:25Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408060" }, "schema_version": "2.0", "tests": { @@ -18608,37 +18608,37 @@ "duration_seconds": 0, "name": "Test 1 - Check drbdadm binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084712#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408060#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084712#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408060#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084712#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408060#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084712#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408060#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084712#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408060#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084712#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408060#step:11:1" } ], "duration_seconds": 0, @@ -18656,7 +18656,7 @@ "dashboard_link": "/linux/opensource_packages/drone", "job_url_resolution_status": "central_exact", "package_slug": "drone", - "production_refreshed_at": "2026-05-14T19:37:17.313036+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.534184+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -18670,15 +18670,15 @@ }, "run": { "attempt": "1", - "id": "25877427741", + "id": "26658731236", "job_name": "test-drone / test-drone", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:14Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218809" + "timestamp": "2026-05-29T19:49:11Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529678" }, "schema_version": "2.0", "tests": { @@ -18687,31 +18687,31 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218809#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529678#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218809#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529678#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218809#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529678#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218809#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529678#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218809#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529678#step:10:1" }, { "comparison": "Current pinned Drone version 1.8.0 passed smoke tests in this run. Regression validation downloaded candidate version 1.9.0 for Arm64, and the extracted binary reported version 1.9.0 while successfully completing help and lint checks on Arm64.", @@ -18723,7 +18723,7 @@ "next_installed_version": "1.9.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218809#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529678#step:11:1" } ], "duration_seconds": 0, @@ -18741,7 +18741,7 @@ "dashboard_link": "/linux/opensource_packages/druid", "job_url_resolution_status": "central_exact", "package_slug": "druid", - "production_refreshed_at": "2026-05-14T19:37:17.313247+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.534399+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -18755,15 +18755,15 @@ }, "run": { "attempt": "1", - "id": "25877419588", + "id": "26658724696", "job_name": "test-druid / test-druid", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:04Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192457" + "timestamp": "2026-05-29T19:49:07Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503946" }, "schema_version": "2.0", "tests": { @@ -18772,46 +18772,46 @@ "duration_seconds": 0, "name": "Test 1 - Check quickstart script exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192457#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503946#step:11:1" }, { "duration_seconds": 1, "name": "Test 2 - Check configuration directory exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192457#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503946#step:12:1" }, { "duration_seconds": 0, "name": "Test 3 - Check library directory contains jars", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192457#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503946#step:13:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192457#step:14:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503946#step:14:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation (script syntax and runtime helpers)", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192457#step:15:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503946#step:15:1" }, { "comparison": "Current pinned Druid version 31.0.0 passed smoke tests in this run. Regression validation downloaded and extracted candidate version 36.0.0 on Arm64, and the staged distribution exposed the quickstart script, runtime helper script, configuration directory, and library layout expected by this workflow.", "current_version": "31.0.0", "decision": "next_install_validated", - "duration_seconds": 30, + "duration_seconds": 32, "latest_version": "36.0.0", "name": "Test 6 - Regression Validation", "next_installed_version": "36.0.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192457#step:16:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503946#step:16:1" } ], - "duration_seconds": 30, + "duration_seconds": 32, "failed": 0, "passed": 6, "skipped": 0 @@ -18826,7 +18826,7 @@ "dashboard_link": "/linux/opensource_packages/drupal", "job_url_resolution_status": "central_exact", "package_slug": "drupal", - "production_refreshed_at": "2026-05-14T19:37:17.313452+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.534576+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -18840,15 +18840,15 @@ }, "run": { "attempt": "1", - "id": "25877395502", + "id": "26658703674", "job_name": "test-drupal / test-drupal", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:26Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109967" + "timestamp": "2026-05-29T19:48:34Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433083" }, "schema_version": "2.0", "tests": { @@ -18857,46 +18857,46 @@ "duration_seconds": 0, "name": "Test 1 - Check drupal directory exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109967#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433083#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check index.php", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109967#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433083#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check core bootstrap file", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109967#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433083#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109967#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433083#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation (source tree layout)", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109967#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433083#step:10:1" }, { "comparison": "Current pinned Drupal version 10.2.4 passed smoke tests in this run. Regression validation downloaded and extracted candidate version 11.2.5 on Arm64, and the staged source tree exposed the bootstrap file, composer metadata, index entrypoint, and core system module expected by this workflow.", "current_version": "10.2.4", "decision": "next_install_validated", - "duration_seconds": 2, + "duration_seconds": 1, "latest_version": "11.2.5", "name": "Test 6 - Regression Validation", "next_installed_version": "11.2.5", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109967#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433083#step:11:1" } ], - "duration_seconds": 2, + "duration_seconds": 1, "failed": 0, "passed": 6, "skipped": 0 @@ -18911,7 +18911,7 @@ "dashboard_link": "/linux/opensource_packages/dubbo-go", "job_url_resolution_status": "central_exact", "package_slug": "dubbo-go", - "production_refreshed_at": "2026-05-14T19:37:17.313647+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.534755+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -18925,15 +18925,15 @@ }, "run": { "attempt": "1", - "id": "25877411197", + "id": "26658717942", "job_name": "test-dubbo-go / test-dubbo-go", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:50Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175468" + "timestamp": "2026-05-29T19:48:52Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479617" }, "schema_version": "2.0", "tests": { @@ -18942,31 +18942,31 @@ "duration_seconds": 0, "name": "Test 1 - Check go.mod exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175468#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479617#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check repository layout", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175468#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479617#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check module path", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175468#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479617#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175468#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479617#step:9:1" }, { - "duration_seconds": 22, + "duration_seconds": 25, "name": "Test 5 - Functional validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175468#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479617#step:10:1" }, { "comparison": "Dubbo-go baseline v3.1.1 passed bounded Go package tests on Arm64, and candidate v3.3.0 also cloned successfully and passed the same common/protocol test scope on Arm64.", @@ -18978,10 +18978,10 @@ "next_installed_version": "v3.3.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175468#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479617#step:11:1" } ], - "duration_seconds": 31, + "duration_seconds": 34, "failed": 0, "passed": 6, "skipped": 0 @@ -18996,7 +18996,7 @@ "dashboard_link": "/linux/opensource_packages/dubbo-java", "job_url_resolution_status": "central_exact", "package_slug": "dubbo-java", - "production_refreshed_at": "2026-05-14T19:37:17.313856+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.534946+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -19010,15 +19010,15 @@ }, "run": { "attempt": "1", - "id": "25877411197", + "id": "26658717942", "job_name": "test-dubbo-java / test-dubbo-java", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:50Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175196" + "timestamp": "2026-05-29T19:48:53Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480038" }, "schema_version": "2.0", "tests": { @@ -19027,46 +19027,46 @@ "duration_seconds": 0, "name": "Test 1 - Check pom.xml exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175196#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480038#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check dubbo-common jar exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175196#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480038#step:7:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 3 - Check dubbo-common classes", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175196#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480038#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175196#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480038#step:9:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 5 - Functional validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175196#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480038#step:10:1" }, { "comparison": "Dubbo-java baseline dubbo-3.2.17 built dubbo-common successfully and passed a Java URL smoke test, and candidate dubbo-3.2.18 also built dubbo-common and passed the same smoke on Arm64.", "current_version": "dubbo-3.2.17", "decision": "next_install_validated", - "duration_seconds": 21, + "duration_seconds": 19, "latest_version": "dubbo-3.2.18", "name": "Test 6 - Regression Validation", "next_installed_version": "dubbo-3.2.18", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175196#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480038#step:11:1" } ], - "duration_seconds": 22, + "duration_seconds": 20, "failed": 0, "passed": 6, "skipped": 0 @@ -19081,7 +19081,7 @@ "dashboard_link": "/linux/opensource_packages/dvc", "job_url_resolution_status": "central_exact", "package_slug": "dvc", - "production_refreshed_at": "2026-05-14T19:37:17.314064+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.535122+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -19095,15 +19095,15 @@ }, "run": { "attempt": "1", - "id": "25877395502", + "id": "26658703674", "job_name": "test-dvc / test-dvc", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:27Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110000" + "timestamp": "2026-05-29T19:48:35Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432884" }, "schema_version": "2.0", "tests": { @@ -19112,46 +19112,46 @@ "duration_seconds": 0, "name": "Test 1 - Package installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110000#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432884#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Version metadata matches baseline", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110000#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432884#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Installed files metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110000#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432884#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110000#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432884#step:10:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110000#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432884#step:11:1" }, { "comparison": "Current pinned package version 0.9.1 passed smoke tests in this run, and the newer stable PyPI candidate 0.9.2 installed successfully on Arm64.", "current_version": "0.9.1", "decision": "next_install_validated", - "duration_seconds": 10, + "duration_seconds": 9, "latest_version": "0.9.2", "name": "Test 6 - Regression Validation", "next_installed_version": "0.9.2", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110000#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432884#step:12:1" } ], - "duration_seconds": 10, + "duration_seconds": 9, "failed": 0, "passed": 6, "skipped": 0 @@ -19166,7 +19166,7 @@ "dashboard_link": "/linux/opensource_packages/dynamorio", "job_url_resolution_status": "central_exact", "package_slug": "dynamorio", - "production_refreshed_at": "2026-05-14T19:37:17.314264+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.535310+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -19180,15 +19180,15 @@ }, "run": { "attempt": "1", - "id": "25877411197", + "id": "26658717942", "job_name": "test-dynamorio / test-dynamorio", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:50Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175202" + "timestamp": "2026-05-29T19:48:52Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479449" }, "schema_version": "2.0", "tests": { @@ -19197,31 +19197,31 @@ "duration_seconds": 0, "name": "Test 1 - Check drrun binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175202#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479449#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check packaged version metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175202#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479449#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check samples directory", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175202#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479449#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175202#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479449#step:9:1" }, { - "duration_seconds": 1, + "duration_seconds": 2, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175202#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479449#step:10:1" }, { "comparison": "Current pinned DynamoRio version 11.1.0 passed smoke tests in this run. Regression validation downloaded and extracted the latest stable Arm64 candidate 11.2.0, validated packaged version metadata, and ran a simple hello-world binary under candidate drrun on Arm64.", @@ -19233,10 +19233,10 @@ "next_installed_version": "11.2.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175202#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479449#step:11:1" } ], - "duration_seconds": 8, + "duration_seconds": 9, "failed": 0, "passed": 6, "skipped": 0 @@ -19251,7 +19251,7 @@ "dashboard_link": "/linux/opensource_packages/dynatrace", "job_url_resolution_status": "central_exact", "package_slug": "dynatrace", - "production_refreshed_at": "2026-05-14T19:37:17.314456+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.536299+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -19265,15 +19265,15 @@ }, "run": { "attempt": "1", - "id": "25877392111", + "id": "26658699892", "job_name": "test-dynatrace / test-dynatrace", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:23Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096529" + "timestamp": "2026-05-29T19:48:31Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420518" }, "schema_version": "2.0", "tests": { @@ -19282,43 +19282,43 @@ "duration_seconds": 0, "name": "Test 1 - Check repository exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096529#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420518#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Check core project files", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096529#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420518#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Check operator directories", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096529#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420518#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096529#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420518#step:10:1" }, { - "duration_seconds": 14, + "duration_seconds": 13, "name": "Test 5 - Functional validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096529#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420518#step:11:1" }, { "comparison": "Dynatrace Operator baseline v1.5.0 passed bounded Go package tests on Arm64, and candidate v1.5.1 also cloned successfully and passed the same version/arch/logd test scope on Arm64.", "current_version": "v1.5.0", "decision": "next_install_validated", - "duration_seconds": 1, + "duration_seconds": 2, "latest_version": "v1.5.1", "name": "Test 6 - Regression Validation", "next_installed_version": "v1.5.1", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096529#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420518#step:12:1" } ], "duration_seconds": 15, @@ -19336,7 +19336,7 @@ "dashboard_link": "/linux/opensource_packages/ecctl", "job_url_resolution_status": "central_exact", "package_slug": "ecctl", - "production_refreshed_at": "2026-05-14T19:37:17.314638+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.536503+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -19350,15 +19350,15 @@ }, "run": { "attempt": "1", - "id": "25877411197", + "id": "26658717942", "job_name": "test-ecctl / test-ecctl", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:50Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175256" + "timestamp": "2026-05-29T19:48:52Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479810" }, "schema_version": "2.0", "tests": { @@ -19367,46 +19367,46 @@ "duration_seconds": 0, "name": "Test 1 - Check ecctl binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175256#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479810#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check ecctl version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175256#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479810#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check ecctl help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175256#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479810#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175256#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479810#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175256#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479810#step:10:1" }, { "comparison": "Current pinned ecctl version 1.14.0 passed smoke tests in this run. Regression validation installed candidate version 1.14.1 on Arm64, and the installed binary reported version 1.14.1.", "current_version": "1.14.0", "decision": "next_install_validated", - "duration_seconds": 1, + "duration_seconds": 0, "latest_version": "1.14.1", "name": "Test 6 - Regression Validation", "next_installed_version": "1.14.1", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175256#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479810#step:11:1" } ], - "duration_seconds": 1, + "duration_seconds": 0, "failed": 0, "passed": 6, "skipped": 0 @@ -19421,7 +19421,7 @@ "dashboard_link": "/linux/opensource_packages/eclipse_temurin", "job_url_resolution_status": "central_exact", "package_slug": "eclipse_temurin", - "production_refreshed_at": "2026-05-14T19:37:17.314873+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.536678+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -19435,15 +19435,15 @@ }, "run": { "attempt": "1", - "id": "25877415436", + "id": "26658721315", "job_name": "test-eclipse_temurin / test-eclipse-temurin", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:50Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180900" + "timestamp": "2026-05-29T19:48:56Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491832" }, "schema_version": "2.0", "tests": { @@ -19452,46 +19452,46 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180900#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491832#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180900#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491832#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180900#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491832#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180900#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491832#step:9:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180900#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491832#step:10:1" }, { "comparison": "Current pinned Temurin release 21.0.7+6 passed smoke tests in this run. Regression validation downloaded the Linux/Aarch64 Temurin release 21.0.8+9, and the candidate JDK reported version 21.0.8 on Arm64.", "current_version": "21.0.7+6", "decision": "next_install_validated", - "duration_seconds": 4, + "duration_seconds": 6, "latest_version": "21.0.8+9", "name": "Test 6 - Regression Validation", "next_installed_version": "21.0.8", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180900#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491832#step:11:1" } ], - "duration_seconds": 4, + "duration_seconds": 7, "failed": 0, "passed": 6, "skipped": 0 @@ -19506,7 +19506,7 @@ "dashboard_link": "/linux/opensource_packages/edot-collector", "job_url_resolution_status": "central_exact", "package_slug": "edot-collector", - "production_refreshed_at": "2026-05-14T19:37:17.315051+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.536857+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -19520,15 +19520,15 @@ }, "run": { "attempt": "1", - "id": "25877383844", + "id": "26658692522", "job_name": "test-edot-collector / test-edot-collector", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:12Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071114" + "timestamp": "2026-05-29T19:48:20Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394350" }, "schema_version": "2.0", "tests": { @@ -19537,46 +19537,46 @@ "duration_seconds": 0, "name": "Test 1 - Check EDOT wrapper exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071114#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394350#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check embedded package version", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071114#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394350#step:7:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 3 - Check collector help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071114#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394350#step:8:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071114#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394350#step:9:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071114#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394350#step:10:1" }, { "comparison": "Current pinned EDOT Collector bundle version 9.2.0 passed smoke tests in this run. Regression validation downloaded the latest Elastic Agent Arm64 bundle 9.2.1, and the embedded collector wrapper plus pf-elastic-collector component validated successfully while the bundle reported version 9.2.1.", "current_version": "9.2.0", "decision": "next_install_validated", - "duration_seconds": 31, + "duration_seconds": 36, "latest_version": "9.2.1", "name": "Test 6 - Regression Validation", "next_installed_version": "9.2.1", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071114#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394350#step:11:1" } ], - "duration_seconds": 32, + "duration_seconds": 38, "failed": 0, "passed": 6, "skipped": 0 @@ -19591,7 +19591,7 @@ "dashboard_link": "/linux/opensource_packages/edot-dotnet-sdk", "job_url_resolution_status": "central_exact", "package_slug": "edot-dotnet-sdk", - "production_refreshed_at": "2026-05-14T19:37:17.315371+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.537119+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -19603,15 +19603,15 @@ }, "run": { "attempt": "1", - "id": "25877403044", + "id": "26658710721", "job_name": "test-edot-dotnet-sdk / test-edot-dotnet-sdk", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:38Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140570" + "timestamp": "2026-05-29T19:48:45Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456087" }, "schema_version": "2.0", "tests": { @@ -19620,37 +19620,37 @@ "duration_seconds": 0, "name": "Test 1 - Check dotnet binary", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140570#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456087#step:6:1" }, { "duration_seconds": 1, "name": "Test 2 - Check package version metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140570#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456087#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check CLI info output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140570#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456087#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify architecture", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140570#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456087#step:9:1" }, { "duration_seconds": 5, "name": "Test 5 - Functional build and run", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140570#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456087#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140570#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456087#step:11:1" } ], "duration_seconds": 6, @@ -19668,7 +19668,7 @@ "dashboard_link": "/linux/opensource_packages/eigen", "job_url_resolution_status": "central_exact", "package_slug": "eigen", - "production_refreshed_at": "2026-05-14T19:37:17.315557+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.537319+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -19680,15 +19680,15 @@ }, "run": { "attempt": "1", - "id": "25877367704", + "id": "26658677990", "job_name": "test-eigen / test-eigen", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:54Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026995" + "timestamp": "2026-05-29T19:48:02Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347012" }, "schema_version": "2.0", "tests": { @@ -19697,37 +19697,37 @@ "duration_seconds": 0, "name": "Test 1 - Check header directory", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026995#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347012#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026995#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347012#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check compiler flags output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026995#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347012#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify architecture", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026995#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347012#step:9:1" }, { "duration_seconds": 3, "name": "Test 5 - Functional compile and run", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026995#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347012#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026995#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347012#step:11:1" } ], "duration_seconds": 3, @@ -19745,7 +19745,7 @@ "dashboard_link": "/linux/opensource_packages/elastic-agent", "job_url_resolution_status": "central_exact", "package_slug": "elastic-agent", - "production_refreshed_at": "2026-05-14T19:37:17.315738+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.537501+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -19759,15 +19759,15 @@ }, "run": { "attempt": "1", - "id": "25877387746", + "id": "26658696365", "job_name": "test-elastic-agent / test-elastic-agent", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:16Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084602" + "timestamp": "2026-05-29T19:48:25Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407617" }, "schema_version": "2.0", "tests": { @@ -19776,31 +19776,31 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084602#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407617#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084602#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407617#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084602#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407617#step:8:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084602#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407617#step:9:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084602#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407617#step:10:1" }, { "comparison": "Current pinned Elastic Agent version 9.2.0 passed smoke tests in this run. Regression validation downloaded the latest Elastic Agent Arm64 bundle 9.2.1, and the candidate bundle reported version 9.2.1 while the embedded otel path and pf-elastic-collector component validated successfully on Arm64.", @@ -19812,7 +19812,7 @@ "next_installed_version": "9.2.1", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084602#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407617#step:11:1" } ], "duration_seconds": 36, @@ -19830,7 +19830,7 @@ "dashboard_link": "/linux/opensource_packages/elastic-connector", "job_url_resolution_status": "central_exact", "package_slug": "elastic-connector", - "production_refreshed_at": "2026-05-14T19:37:17.315973+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.537678+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -19842,15 +19842,15 @@ }, "run": { "attempt": "1", - "id": "25877427741", + "id": "26658731236", "job_name": "test-elastic-connector / test-elastic-connector", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:17Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218556" + "timestamp": "2026-05-29T19:49:11Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529755" }, "schema_version": "2.0", "tests": { @@ -19859,37 +19859,37 @@ "duration_seconds": 0, "name": "Test 1 - Artifact Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218556#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529755#step:6:1" }, { "duration_seconds": 1, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218556#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529755#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Help Output Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218556#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529755#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218556#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529755#step:9:1" }, { "duration_seconds": 1, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218556#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529755#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218556#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529755#step:11:1" } ], "duration_seconds": 2, @@ -19907,7 +19907,7 @@ "dashboard_link": "/linux/opensource_packages/elastic-crawler", "job_url_resolution_status": "central_exact", "package_slug": "elastic-crawler", - "production_refreshed_at": "2026-05-14T19:37:17.316186+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.537842+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -19919,15 +19919,15 @@ }, "run": { "attempt": "1", - "id": "25877415436", + "id": "26658721315", "job_name": "test-elastic-crawler / test-elastic-crawler", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:50Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179865" + "timestamp": "2026-05-29T19:48:58Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491726" }, "schema_version": "2.0", "tests": { @@ -19936,40 +19936,40 @@ "duration_seconds": 0, "name": "Test 1 - Artifact Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179865#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491726#step:6:1" }, { - "duration_seconds": 6, + "duration_seconds": 7, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179865#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491726#step:7:1" }, { - "duration_seconds": 6, + "duration_seconds": 7, "name": "Test 3 - Help Output Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179865#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491726#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179865#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491726#step:9:1" }, { "duration_seconds": 7, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179865#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491726#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179865#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491726#step:11:1" } ], - "duration_seconds": 19, + "duration_seconds": 21, "failed": 0, "passed": 6, "skipped": 0 @@ -19984,7 +19984,7 @@ "dashboard_link": "/linux/opensource_packages/elastic-defend", "job_url_resolution_status": "central_exact", "package_slug": "elastic-defend", - "production_refreshed_at": "2026-05-14T19:37:17.316374+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.538005+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -19998,15 +19998,15 @@ }, "run": { "attempt": "1", - "id": "25877375677", + "id": "26658685142", "job_name": "test-elastic-defend / test-elastic-defend", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:02Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044476" + "timestamp": "2026-05-29T19:48:10Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370360" }, "schema_version": "2.0", "tests": { @@ -20015,46 +20015,46 @@ "duration_seconds": 0, "name": "Test 1 - Check Carrier Binary and Component Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044476#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370360#step:6:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 2 - Check Carrier Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044476#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370360#step:7:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 3 - Check Carrier Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044476#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370360#step:8:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044476#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370360#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Embedded Component Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044476#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370360#step:10:1" }, { - "comparison": "Current pinned Elastic Defend carrier bundle version 9.1.0 passed smoke tests in this run. Regression validation downloaded Elastic Agent Arm64 bundle 9.4.1, and the candidate bundle reported version 9.4.1 while the embedded endpoint-security Arm64 component and resources validated successfully.", + "comparison": "Current pinned Elastic Defend carrier bundle version 9.1.0 passed smoke tests in this run. Regression validation downloaded Elastic Agent Arm64 bundle 9.4.2, and the candidate bundle reported version 9.4.2 while the embedded endpoint-security Arm64 component and resources validated successfully.", "current_version": "9.1.0", "decision": "next_install_validated", - "duration_seconds": 32, - "latest_version": "9.4.1", + "duration_seconds": 10, + "latest_version": "9.4.2", "name": "Test 6 - Regression Validation", - "next_installed_version": "9.4.1", + "next_installed_version": "9.4.2", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044476#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370360#step:11:1" } ], - "duration_seconds": 34, + "duration_seconds": 11, "failed": 0, "passed": 6, "skipped": 0 @@ -20069,7 +20069,7 @@ "dashboard_link": "/linux/opensource_packages/elastic-ebpf", "job_url_resolution_status": "central_exact", "package_slug": "elastic-ebpf", - "production_refreshed_at": "2026-05-14T19:37:17.316554+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.538172+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "no_newer_stable_available", @@ -20083,48 +20083,48 @@ }, "run": { "attempt": "1", - "id": "25877367704", + "id": "26658677990", "job_name": "test-elastic-ebpf / test-elastic-ebpf", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:56Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026902" + "timestamp": "2026-05-29T19:48:02Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347341" }, "schema_version": "2.0", "tests": { "details": [ { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 1 - Check Source Tree and Version Metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026902#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347341#step:6:1" }, { - "duration_seconds": 12, + "duration_seconds": 13, "name": "Test 2 - Build Elastic eBPF", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026902#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347341#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Build Output Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026902#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347341#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026902#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347341#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Package Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026902#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347341#step:10:1" }, { "comparison": "Current pinned Elastic eBPF baseline 8.5.0 is already at the newest stable release visible in the public version stream, so there is no newer Arm64 candidate to validate in Test 6.", @@ -20136,7 +20136,7 @@ "next_installed_version": "8.5.0", "regression_result": "No newer stable release available for Test 6", "status": "skipped", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026902#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347341#step:11:1" } ], "duration_seconds": 13, @@ -20154,7 +20154,7 @@ "dashboard_link": "/linux/opensource_packages/elastic-enterprise-search", "job_url_resolution_status": "central_exact", "package_slug": "elastic-enterprise-search", - "production_refreshed_at": "2026-05-14T19:37:17.316777+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.538381+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -20166,15 +20166,15 @@ }, "run": { "attempt": "1", - "id": "25877403044", + "id": "26658710721", "job_name": "test-elastic-enterprise-search / test-elastic-enterprise-search", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:37Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140999" + "timestamp": "2026-05-29T19:48:44Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456315" }, "schema_version": "2.0", "tests": { @@ -20183,40 +20183,40 @@ "duration_seconds": 0, "name": "Test 1 - Artifact Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140999#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456315#step:6:1" }, { "duration_seconds": 14, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140999#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456315#step:7:1" }, { "duration_seconds": 14, "name": "Test 3 - Help Output Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140999#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456315#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140999#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456315#step:9:1" }, { - "duration_seconds": 19, + "duration_seconds": 18, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140999#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456315#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140999#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456315#step:11:1" } ], - "duration_seconds": 47, + "duration_seconds": 46, "failed": 0, "passed": 6, "skipped": 0 @@ -20231,7 +20231,7 @@ "dashboard_link": "/linux/opensource_packages/elastic-fleet-server", "job_url_resolution_status": "central_exact", "package_slug": "elastic-fleet-server", - "production_refreshed_at": "2026-05-14T19:37:17.316992+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.538560+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -20245,15 +20245,15 @@ }, "run": { "attempt": "1", - "id": "25877375677", + "id": "26658685142", "job_name": "test-elastic-fleet-server / test-elastic-fleet-server", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:02Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044674" + "timestamp": "2026-05-29T19:48:11Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370301" }, "schema_version": "2.0", "tests": { @@ -20262,46 +20262,46 @@ "duration_seconds": 0, "name": "Test 1 - Check Carrier Binary and Fleet Server Component Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044674#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370301#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Carrier Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044674#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370301#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Fleet Server Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044674#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370301#step:8:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044674#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370301#step:9:1" }, { "duration_seconds": 1, "name": "Test 5 - Embedded Fleet Server Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044674#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370301#step:10:1" }, { "comparison": "Current pinned Elastic Fleet Server carrier bundle version 9.2.0 passed smoke tests in this run. Regression validation downloaded Elastic Agent Arm64 bundle 9.2.1, and the embedded fleet-server component validated successfully on Arm64 with the candidate bundle reporting version 9.2.1.", "current_version": "9.2.0", "decision": "next_install_validated", - "duration_seconds": 37, + "duration_seconds": 12, "latest_version": "9.2.1", "name": "Test 6 - Regression Validation", "next_installed_version": "9.2.1", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044674#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370301#step:11:1" } ], - "duration_seconds": 39, + "duration_seconds": 13, "failed": 0, "passed": 6, "skipped": 0 @@ -20316,7 +20316,7 @@ "dashboard_link": "/linux/opensource_packages/elastic-mockopampserver", "job_url_resolution_status": "central_exact", "package_slug": "elastic-mockopampserver", - "production_refreshed_at": "2026-05-14T19:37:17.317200+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.538733+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -20328,15 +20328,15 @@ }, "run": { "attempt": "1", - "id": "25877363365", + "id": "26658674448", "job_name": "test-elastic-mockopampserver / test-elastic-mockopampserver", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:52Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001152" + "timestamp": "2026-05-29T19:48:01Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334759" }, "schema_version": "2.0", "tests": { @@ -20345,37 +20345,37 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001152#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334759#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001152#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334759#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001152#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334759#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001152#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334759#step:10:1" }, { "duration_seconds": 1, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001152#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334759#step:11:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001152#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334759#step:12:1" } ], "duration_seconds": 1, @@ -20393,7 +20393,7 @@ "dashboard_link": "/linux/opensource_packages/elastic-mockotlpserver", "job_url_resolution_status": "central_exact", "package_slug": "elastic-mockotlpserver", - "production_refreshed_at": "2026-05-14T19:37:17.317402+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.538902+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -20405,15 +20405,15 @@ }, "run": { "attempt": "1", - "id": "25877427741", + "id": "26658731236", "job_name": "test-elastic-mockotlpserver / test-elastic-mockotlpserver", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:06Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217685" + "timestamp": "2026-05-29T19:49:14Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529715" }, "schema_version": "2.0", "tests": { @@ -20422,37 +20422,37 @@ "duration_seconds": 0, "name": "Test 1 - Check mockotlpserver binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217685#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529715#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check mockotlpserver help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217685#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529715#step:7:1" }, { "duration_seconds": 5, "name": "Test 3 - Start server and check port", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217685#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529715#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217685#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529715#step:9:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217685#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529715#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217685#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529715#step:11:1" } ], "duration_seconds": 5, @@ -20470,7 +20470,7 @@ "dashboard_link": "/linux/opensource_packages/elastic-package", "job_url_resolution_status": "central_exact", "package_slug": "elastic-package", - "production_refreshed_at": "2026-05-14T19:37:17.317601+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.539070+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -20484,15 +20484,15 @@ }, "run": { "attempt": "1", - "id": "25877411197", + "id": "26658717942", "job_name": "test-elastic-package / test-elastic-package", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:49Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175518" + "timestamp": "2026-05-29T19:48:53Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479847" }, "schema_version": "2.0", "tests": { @@ -20501,46 +20501,46 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175518#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479847#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175518#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479847#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175518#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479847#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175518#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479847#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175518#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479847#step:10:1" }, { "comparison": "Current pinned Elastic-Package version 0.111.0 passed smoke tests in this run. Regression validation installed the candidate Arm64 release 0.112.0, and the candidate binary reported version 0.112.0 while help and stack subcommand validation also passed.", "current_version": "0.111.0", "decision": "next_install_validated", - "duration_seconds": 1, + "duration_seconds": 2, "latest_version": "0.112.0", "name": "Test 6 - Regression Validation", "next_installed_version": "0.112.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175518#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479847#step:11:1" } ], - "duration_seconds": 1, + "duration_seconds": 2, "failed": 0, "passed": 6, "skipped": 0 @@ -20555,7 +20555,7 @@ "dashboard_link": "/linux/opensource_packages/elastic-quark", "job_url_resolution_status": "central_exact", "package_slug": "elastic-quark", - "production_refreshed_at": "2026-05-14T19:37:17.317792+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.539273+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -20569,15 +20569,15 @@ }, "run": { "attempt": "1", - "id": "25877395502", + "id": "26658703674", "job_name": "test-elastic-quark / test-elastic-quark", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:26Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110003" + "timestamp": "2026-05-29T19:48:33Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433227" }, "schema_version": "2.0", "tests": { @@ -20586,46 +20586,46 @@ "duration_seconds": 0, "name": "Test 1 - Check repository exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110003#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433227#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check for Makefile", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110003#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433227#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check for C source files", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110003#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433227#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110003#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433227#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110003#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433227#step:10:1" }, { "comparison": "Elastic Quark baseline v0.3 built libquark and quark-mon on Arm64, and candidate v0.4 also built those artifacts and completed a bounded quark-mon runtime/version probe.", "current_version": "v0.3", "decision": "next_install_validated", - "duration_seconds": 22, + "duration_seconds": 20, "latest_version": "v0.4", "name": "Test 6 - Regression Validation", "next_installed_version": "v0.4", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110003#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433227#step:11:1" } ], - "duration_seconds": 22, + "duration_seconds": 20, "failed": 0, "passed": 6, "skipped": 0 @@ -20640,7 +20640,7 @@ "dashboard_link": "/linux/opensource_packages/elasticapmagent", "job_url_resolution_status": "central_exact", "package_slug": "elasticapmagent", - "production_refreshed_at": "2026-05-14T19:37:17.317992+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.539468+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -20652,15 +20652,15 @@ }, "run": { "attempt": "1", - "id": "25877411197", + "id": "26658717942", "job_name": "test-elasticapmagent / test-elasticapmagent", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:58Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175302" + "timestamp": "2026-05-29T19:49:03Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480008" }, "schema_version": "2.0", "tests": { @@ -20669,40 +20669,40 @@ "duration_seconds": 0, "name": "Test 1 - Package Availability", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175302#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480008#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175302#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480008#step:8:1" }, { "duration_seconds": 1, "name": "Test 3 - Help Output or Configuration", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175302#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480008#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175302#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480008#step:10:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175302#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480008#step:11:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175302#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480008#step:12:1" } ], - "duration_seconds": 0, + "duration_seconds": 1, "failed": 0, "passed": 6, "skipped": 0 @@ -20717,7 +20717,7 @@ "dashboard_link": "/linux/opensource_packages/elasticapmserver", "job_url_resolution_status": "central_exact", "package_slug": "elasticapmserver", - "production_refreshed_at": "2026-05-14T19:37:17.318184+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.539639+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -20731,15 +20731,15 @@ }, "run": { "attempt": "1", - "id": "25877415436", + "id": "26658721315", "job_name": "test-elasticapmserver / test-elasticapmserver", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:54Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181106" + "timestamp": "2026-05-29T19:48:57Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491847" }, "schema_version": "2.0", "tests": { @@ -20748,46 +20748,46 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181106#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491847#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181106#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491847#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181106#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491847#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181106#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491847#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181106#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491847#step:10:1" }, { "comparison": "Current pinned Elastic APM Server version 9.2.0 passed smoke tests in this run. Regression validation installed the candidate Arm64 tarball 9.2.1, and the candidate binary reported version 9.2.1 while config and help validation also passed.", "current_version": "9.2.0", "decision": "next_install_validated", - "duration_seconds": 0, + "duration_seconds": 2, "latest_version": "9.2.1", "name": "Test 6 - Regression Validation", "next_installed_version": "9.2.1", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181106#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491847#step:11:1" } ], - "duration_seconds": 0, + "duration_seconds": 2, "failed": 0, "passed": 6, "skipped": 0 @@ -20802,7 +20802,7 @@ "dashboard_link": "/linux/opensource_packages/electron", "job_url_resolution_status": "central_exact", "package_slug": "electron", - "production_refreshed_at": "2026-05-14T19:37:17.318392+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.539811+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -20810,19 +20810,19 @@ }, "package": { "name": "Electron", - "version": "v41.6.0" + "version": "v41.7.1" }, "run": { "attempt": "1", - "id": "25877379982", + "id": "26658688675", "job_name": "test-electron / test-electron", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:11Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057276" + "timestamp": "2026-05-29T19:48:19Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380632" }, "schema_version": "2.0", "tests": { @@ -20831,40 +20831,40 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057276#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380632#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057276#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380632#step:8:1" }, { - "duration_seconds": 20, + "duration_seconds": 21, "name": "Test 3 - Check Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057276#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380632#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057276#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380632#step:10:1" }, { "duration_seconds": 1, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057276#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380632#step:11:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057276#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380632#step:12:1" } ], - "duration_seconds": 21, + "duration_seconds": 22, "failed": 0, "passed": 6, "skipped": 0 @@ -20879,7 +20879,7 @@ "dashboard_link": "/linux/opensource_packages/elemental-operator", "job_url_resolution_status": "central_exact", "package_slug": "elemental-operator", - "production_refreshed_at": "2026-05-14T19:37:17.318574+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.539977+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -20893,48 +20893,48 @@ }, "run": { "attempt": "1", - "id": "25877399008", + "id": "26658707245", "job_name": "test-elemental-operator / test-elemental-operator", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:31Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126238" + "timestamp": "2026-05-29T19:48:40Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445759" }, "schema_version": "2.0", "tests": { "details": [ { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 1 - Artifact Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126238#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445759#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126238#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445759#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Help Output Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126238#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445759#step:8:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126238#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445759#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126238#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445759#step:10:1" }, { "comparison": "Current pinned Elemental Operator version 1.6.8 passed smoke tests in this run. Regression validation rebuilt candidate version 1.6.9 on Arm64, and the installed source tag matched 1.6.9.", @@ -20946,10 +20946,10 @@ "next_installed_version": "1.6.9", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126238#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445759#step:11:1" } ], - "duration_seconds": 38, + "duration_seconds": 39, "failed": 0, "passed": 6, "skipped": 0 @@ -20964,7 +20964,7 @@ "dashboard_link": "/linux/opensource_packages/elemental-toolkit", "job_url_resolution_status": "central_exact", "package_slug": "elemental-toolkit", - "production_refreshed_at": "2026-05-14T19:37:17.318765+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.540147+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -20978,15 +20978,15 @@ }, "run": { "attempt": "1", - "id": "25877383844", + "id": "26658692522", "job_name": "test-elemental-toolkit / test-elemental-toolkit", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:13Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048070575" + "timestamp": "2026-05-29T19:48:21Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575393072" }, "schema_version": "2.0", "tests": { @@ -20995,43 +20995,43 @@ "duration_seconds": 0, "name": "Test 1 - Artifact Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048070575#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575393072#step:9:1" }, { "duration_seconds": 0, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048070575#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575393072#step:10:1" }, { "duration_seconds": 0, "name": "Test 3 - Help Output Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048070575#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575393072#step:11:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048070575#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575393072#step:12:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048070575#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575393072#step:13:1" }, { "comparison": "Current pinned Elemental Toolkit version 2.2.0 passed smoke tests in this run. Regression validation rebuilt candidate version 2.2.2 on Arm64, and the installed toolkit CLI reported 2.2.2.", "current_version": "2.2.0", "decision": "next_install_validated", - "duration_seconds": 11, + "duration_seconds": 10, "latest_version": "2.2.2", "name": "Test 6 - Regression Validation", "next_installed_version": "2.2.2", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048070575#step:14:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575393072#step:14:1" } ], "duration_seconds": 11, @@ -21049,7 +21049,7 @@ "dashboard_link": "/linux/opensource_packages/emqtt", "job_url_resolution_status": "central_exact", "package_slug": "emqtt", - "production_refreshed_at": "2026-05-14T19:37:17.318980+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.540344+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -21063,15 +21063,15 @@ }, "run": { "attempt": "1", - "id": "25877395502", + "id": "26658703674", "job_name": "test-emqtt / test-emqtt", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:27Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110031" + "timestamp": "2026-05-29T19:48:34Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432892" }, "schema_version": "2.0", "tests": { @@ -21080,46 +21080,46 @@ "duration_seconds": 0, "name": "Test 1 - Check emqtt_cli binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110031#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432892#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Check EMQTT root help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110031#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432892#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Check EMQTT publish help", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110031#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432892#step:9:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 4 - Check EMQTT subscribe help", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110031#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432892#step:10:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 5 - Publish command handles missing broker", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110031#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432892#step:11:1" }, { "comparison": "Baseline EMQTT 1.4.4 passed Tests 1-5. Regression validation built candidate 1.4.5 and executed the EMQTT publish help path on Arm64.", "current_version": "1.4.4", "decision": "next_install_validated", - "duration_seconds": 50, + "duration_seconds": 48, "latest_version": "1.4.5", "name": "Test 6 - Regression Validation", "next_installed_version": "1.4.5", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110031#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432892#step:12:1" } ], - "duration_seconds": 51, + "duration_seconds": 49, "failed": 0, "passed": 6, "skipped": 0 @@ -21134,7 +21134,7 @@ "dashboard_link": "/linux/opensource_packages/emqx", "job_url_resolution_status": "central_exact", "package_slug": "emqx", - "production_refreshed_at": "2026-05-14T19:37:17.319210+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.540534+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -21148,15 +21148,15 @@ }, "run": { "attempt": "1", - "id": "25877379982", + "id": "26658688675", "job_name": "test-emqx / test-emqx", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:05Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057194" + "timestamp": "2026-05-29T19:48:15Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380589" }, "schema_version": "2.0", "tests": { @@ -21165,46 +21165,46 @@ "duration_seconds": 0, "name": "Test 1 - Check Broker Binaries", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057194#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380589#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057194#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380589#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Configuration Layout", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057194#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380589#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057194#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380589#step:9:1" }, { - "duration_seconds": 7, + "duration_seconds": 6, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057194#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380589#step:10:1" }, { "comparison": "Current pinned EMQX version 5.8.3 passed smoke tests in this run. Regression validation installed candidate version 5.8.4 on Arm64, started the broker, and verified emqx ctl status from the candidate runtime.", "current_version": "5.8.3", "decision": "next_install_validated", - "duration_seconds": 8, + "duration_seconds": 10, "latest_version": "5.8.4", "name": "Test 6 - Regression Validation", "next_installed_version": "5.8.4", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057194#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380589#step:11:1" } ], - "duration_seconds": 15, + "duration_seconds": 16, "failed": 0, "passed": 6, "skipped": 0 @@ -21219,7 +21219,7 @@ "dashboard_link": "/linux/opensource_packages/enca", "job_url_resolution_status": "central_exact", "package_slug": "enca", - "production_refreshed_at": "2026-05-14T19:37:17.319424+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.540710+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -21233,15 +21233,15 @@ }, "run": { "attempt": "1", - "id": "25877399008", + "id": "26658707245", "job_name": "test-enca / test-enca", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:32Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125644" + "timestamp": "2026-05-29T19:48:39Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445436" }, "schema_version": "2.0", "tests": { @@ -21250,43 +21250,43 @@ "duration_seconds": 11, "name": "Test 1 - Configure baseline source tree", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125644#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445436#step:7:1" }, { - "duration_seconds": 3, + "duration_seconds": 2, "name": "Test 2 - Compile baseline source", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125644#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445436#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Install baseline binary and verify version", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125644#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445436#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125644#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445436#step:10:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125644#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445436#step:11:1" }, { "comparison": "Current pinned ENCA version 1.20 passed smoke tests in this run. Regression validation downloaded candidate version 1.21, built it from the official source tarball on Arm64, and the installed candidate reported version 1.21 with successful language-list and ASCII detection checks.", "current_version": "1.20", "decision": "next_install_validated", - "duration_seconds": 8, + "duration_seconds": 9, "latest_version": "1.21", "name": "Test 6 - Regression Validation", "next_installed_version": "1.21", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125644#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445436#step:12:1" } ], "duration_seconds": 22, @@ -21304,7 +21304,7 @@ "dashboard_link": "/linux/opensource_packages/enigmaJS", "job_url_resolution_status": "central_exact", "package_slug": "enigmaJS", - "production_refreshed_at": "2026-05-14T19:37:17.319620+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.540889+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -21318,15 +21318,15 @@ }, "run": { "attempt": "1", - "id": "25877383844", + "id": "26658692522", "job_name": "test-enigmajs / test-enigmajs", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:20Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071614" + "timestamp": "2026-05-29T19:48:23Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394423" }, "schema_version": "2.0", "tests": { @@ -21335,43 +21335,43 @@ "duration_seconds": 0, "name": "Test 1 - Check node_modules existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071614#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394423#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Check package.json dependency", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071614#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394423#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Check ws dependency", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071614#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394423#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Require enigma.js in Node script", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071614#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394423#step:10:1" }, { "duration_seconds": 0, "name": "Test 5 - Check Schema instantiation (basic usage)", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071614#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394423#step:11:1" }, { "comparison": "Baseline Enigma.js 1.0.0 passed runtime smoke tests. Test 6 installed candidate 1.0.1 from npm and constructed an Enigma session on Arm64.", "current_version": "1.0.0", "decision": "next_install_validated", - "duration_seconds": 2, + "duration_seconds": 1, "latest_version": "1.0.1", "name": "Test 6 - Regression Validation", "next_installed_version": "1.0.1", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071614#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394423#step:12:1" } ], "duration_seconds": 0, @@ -21389,7 +21389,7 @@ "dashboard_link": "/linux/opensource_packages/enroot", "job_url_resolution_status": "central_exact", "package_slug": "enroot", - "production_refreshed_at": "2026-05-14T19:37:17.319859+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.541065+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -21403,15 +21403,15 @@ }, "run": { "attempt": "1", - "id": "25877395502", + "id": "26658703674", "job_name": "test-enroot / test-enroot", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:27Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109978" + "timestamp": "2026-05-29T19:48:34Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432956" }, "schema_version": "2.0", "tests": { @@ -21420,46 +21420,46 @@ "duration_seconds": 0, "name": "Test 1 - Baseline package evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109978#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432956#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Baseline version and release alignment", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109978#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432956#step:8:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 3 - Package-specific source or docs evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109978#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432956#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Arm64 support gate", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109978#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432956#step:10:1" }, { - "duration_seconds": 795, + "duration_seconds": 34, "name": "Test 5 - Bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109978#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432956#step:11:1" }, { "comparison": "Built the next Enroot source candidate into a staging prefix and executed version/list commands on the Arm64 runner. GPU hooks and real container import/start remain out of scope for the generic runner.", "current_version": "2.1.0", "decision": "limited_cpu_smoke_validated", - "duration_seconds": 168, + "duration_seconds": 58, "latest_version": "4.2.0", "name": "Test 6 - Regression Validation", "next_installed_version": "4.2.0", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109978#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432956#step:12:1" } ], - "duration_seconds": 167, + "duration_seconds": 92, "failed": 0, "passed": 6, "skipped": 0 @@ -21474,7 +21474,7 @@ "dashboard_link": "/linux/opensource_packages/envoy", "job_url_resolution_status": "central_exact", "package_slug": "envoy", - "production_refreshed_at": "2026-05-14T19:37:17.320164+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.541352+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -21488,15 +21488,15 @@ }, "run": { "attempt": "1", - "id": "25877355625", + "id": "26658667828", "job_name": "test-envoy / test-envoy", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:39Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047975672" + "timestamp": "2026-05-29T19:47:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308014" }, "schema_version": "2.0", "tests": { @@ -21505,46 +21505,46 @@ "duration_seconds": 0, "name": "Test 1 - Check Envoy binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047975672#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308014#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Envoy version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047975672#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308014#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Validate Envoy help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047975672#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308014#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Validate a minimal configuration", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047975672#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308014#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047975672#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308014#step:10:1" }, { "comparison": "Current pinned Envoy version 1.31.1 passed smoke tests in this run. Regression validation downloaded the next official Arm64 release 1.31.2, and the candidate binary reported version 1.31.2 while successfully validating the minimal Envoy configuration on Arm64.", "current_version": "1.31.1", "decision": "next_install_validated", - "duration_seconds": 2, + "duration_seconds": 1, "latest_version": "1.31.2", "name": "Test 6 - Regression Validation", "next_installed_version": "1.31.2", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047975672#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308014#step:11:1" } ], - "duration_seconds": 2, + "duration_seconds": 1, "failed": 0, "passed": 6, "skipped": 0 @@ -21559,7 +21559,7 @@ "dashboard_link": "/linux/opensource_packages/epdb", "job_url_resolution_status": "central_exact", "package_slug": "epdb", - "production_refreshed_at": "2026-05-14T19:37:17.320392+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.541540+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -21571,15 +21571,15 @@ }, "run": { "attempt": "1", - "id": "25877395502", + "id": "26658703674", "job_name": "test-epdb / test-epdb", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:26Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109562" + "timestamp": "2026-05-29T19:48:34Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432255" }, "schema_version": "2.0", "tests": { @@ -21588,40 +21588,40 @@ "duration_seconds": 0, "name": "Test 1 - Import EPDB debugger", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109562#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432255#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Instantiate debugger", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109562#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432255#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Format exception trace", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109562#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432255#step:8:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 4 - Configure trace conditions", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109562#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432255#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional import", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109562#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432255#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109562#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432255#step:11:1" } ], - "duration_seconds": 0, + "duration_seconds": 1, "failed": 0, "passed": 6, "skipped": 0 @@ -21636,7 +21636,7 @@ "dashboard_link": "/linux/opensource_packages/epinio", "job_url_resolution_status": "central_exact", "package_slug": "epinio", - "production_refreshed_at": "2026-05-14T19:37:17.320599+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.541726+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -21650,63 +21650,63 @@ }, "run": { "attempt": "1", - "id": "25877392111", + "id": "26658699892", "job_name": "test-epinio / test-epinio", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:23Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096317" + "timestamp": "2026-05-29T19:48:30Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420809" }, "schema_version": "2.0", "tests": { "details": [ { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 1 - Check Epinio binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096317#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420809#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Epinio version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096317#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420809#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Epinio help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096317#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420809#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Check Epinio settings command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096317#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420809#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Completion and architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096317#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420809#step:10:1" }, { "comparison": "Current pinned Epinio version 1.11.0 passed smoke tests in this run. Regression validation downloaded the next stable Arm64 release 1.12.0, and the candidate binary reported version 1.12.0 while successfully exposing help and bash completion on Arm64.", "current_version": "1.11.0", "decision": "next_install_validated", - "duration_seconds": 4, + "duration_seconds": 2, "latest_version": "1.12.0", "name": "Test 6 - Regression Validation", "next_installed_version": "1.12.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096317#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420809#step:11:1" } ], - "duration_seconds": 4, + "duration_seconds": 2, "failed": 0, "passed": 6, "skipped": 0 @@ -21721,7 +21721,7 @@ "dashboard_link": "/linux/opensource_packages/erlang", "job_url_resolution_status": "central_exact", "package_slug": "erlang", - "production_refreshed_at": "2026-05-14T19:37:17.320836+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.541909+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -21733,15 +21733,15 @@ }, "run": { "attempt": "1", - "id": "25877427741", + "id": "26658731236", "job_name": "test-erlang / test-erlang", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:04Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218770" + "timestamp": "2026-05-29T19:49:11Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529578" }, "schema_version": "2.0", "tests": { @@ -21750,37 +21750,37 @@ "duration_seconds": 0, "name": "Test 1 - Check erl binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218770#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529578#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check erl version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218770#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529578#step:7:1" }, { "duration_seconds": 1, "name": "Test 3 - Run simple Erlang expression", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218770#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529578#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Check erlc compiler existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218770#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529578#step:9:1" }, { "duration_seconds": 1, "name": "Test 5 - Compile and run Hello World", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218770#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529578#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218770#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529578#step:11:1" } ], "duration_seconds": 2, @@ -21798,7 +21798,7 @@ "dashboard_link": "/linux/opensource_packages/etcd", "job_url_resolution_status": "central_exact", "package_slug": "etcd", - "production_refreshed_at": "2026-05-14T19:37:17.321064+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.542081+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -21812,15 +21812,15 @@ }, "run": { "attempt": "1", - "id": "25877423406", + "id": "26658727918", "job_name": "test-etcd / test-etcd", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:09Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209405" + "timestamp": "2026-05-29T19:49:05Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515908" }, "schema_version": "2.0", "tests": { @@ -21829,31 +21829,31 @@ "duration_seconds": 0, "name": "Test 1 - Check Etcd binaries exist", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209405#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515908#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Etcd version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209405#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515908#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Etcdctl and Etcdutl version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209405#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515908#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209405#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515908#step:9:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 5 - Functional validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209405#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515908#step:10:1" }, { "comparison": "Current pinned etcd version 3.5.22 passed smoke tests in this run. Regression validation downloaded the next stable Arm64 release 3.5.23, and the candidate etcd/etcdctl/etcdutl binaries all reported version 3.5.23 while a real single-node endpoint health plus put/get smoke test succeeded on Arm64.", @@ -21865,10 +21865,10 @@ "next_installed_version": "3.5.23", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209405#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515908#step:11:1" } ], - "duration_seconds": 2, + "duration_seconds": 3, "failed": 0, "passed": 6, "skipped": 0 @@ -21883,7 +21883,7 @@ "dashboard_link": "/linux/opensource_packages/evalml", "job_url_resolution_status": "central_exact", "package_slug": "evalml", - "production_refreshed_at": "2026-05-14T19:37:17.321281+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.542280+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -21895,15 +21895,15 @@ }, "run": { "attempt": "1", - "id": "25877371674", + "id": "26658681575", "job_name": "test-evalml / test-evalml", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:06Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031632" + "timestamp": "2026-05-29T19:48:15Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358590" }, "schema_version": "2.0", "tests": { @@ -21912,37 +21912,37 @@ "duration_seconds": 1, "name": "Test 1 - Check Package Installation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031632#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358590#step:7:1" }, { - "duration_seconds": 2, + "duration_seconds": 3, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031632#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358590#step:8:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 3 - Check Package Metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031632#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358590#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031632#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358590#step:10:1" }, { "duration_seconds": 3, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031632#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358590#step:11:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031632#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358590#step:12:1" } ], "duration_seconds": 7, @@ -21960,7 +21960,7 @@ "dashboard_link": "/linux/opensource_packages/exechealthz", "job_url_resolution_status": "central_exact", "package_slug": "exechealthz", - "production_refreshed_at": "2026-05-14T19:37:17.321475+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.542476+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -21974,15 +21974,15 @@ }, "run": { "attempt": "1", - "id": "25877375677", + "id": "26658685142", "job_name": "test-exechealthz / test-exechealthz", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:02Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044886" + "timestamp": "2026-05-29T19:48:11Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370506" }, "schema_version": "2.0", "tests": { @@ -21991,46 +21991,46 @@ "duration_seconds": 0, "name": "Test 1 - Check Exechealthz binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044886#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370506#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Exechealthz help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044886#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370506#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044886#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370506#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Functional healthy probe", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044886#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370506#step:10:1" }, { "duration_seconds": 1, "name": "Test 5 - Functional unhealthy probe", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044886#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370506#step:11:1" }, { "comparison": "Current pinned Exechealthz source tag 0.6.3 passed smoke tests in this run. Regression validation downloaded archived contrib tag 0.7.0, built the candidate binary on Arm64, and verified healthy HTTP probe behavior. Exechealthz does not expose a runtime version flag, so version provenance is taken from the validated source tag.", "current_version": "0.6.3", "decision": "next_install_validated", - "duration_seconds": 5, + "duration_seconds": 4, "latest_version": "0.7.0", "name": "Test 6 - Regression Validation", "next_installed_version": "0.7.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044886#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370506#step:12:1" } ], - "duration_seconds": 6, + "duration_seconds": 5, "failed": 0, "passed": 6, "skipped": 0 @@ -22045,7 +22045,7 @@ "dashboard_link": "/linux/opensource_packages/expat", "job_url_resolution_status": "central_exact", "package_slug": "expat", - "production_refreshed_at": "2026-05-14T19:37:17.321690+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.542656+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -22057,15 +22057,15 @@ }, "run": { "attempt": "1", - "id": "25877375677", + "id": "26658685142", "job_name": "test-expat / test-expat", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:03Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045193" + "timestamp": "2026-05-29T19:48:10Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370887" }, "schema_version": "2.0", "tests": { @@ -22074,37 +22074,37 @@ "duration_seconds": 0, "name": "Test 1 - Check xmlwf binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045193#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370887#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check xmlwf version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045193#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370887#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check xmlwf help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045193#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370887#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Parse valid XML file", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045193#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370887#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Parse invalid XML file", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045193#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370887#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045193#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370887#step:11:1" } ], "duration_seconds": 0, @@ -22122,7 +22122,7 @@ "dashboard_link": "/linux/opensource_packages/falco", "job_url_resolution_status": "central_exact", "package_slug": "falco", - "production_refreshed_at": "2026-05-14T19:37:17.321912+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.542833+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -22130,19 +22130,19 @@ }, "package": { "name": "Falco", - "version": "0.43.1" + "version": "0.44.0" }, "run": { "attempt": "1", - "id": "25877415436", + "id": "26658721315", "job_name": "test-falco / test-falco", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:54Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180757" + "timestamp": "2026-05-29T19:48:56Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491867" }, "schema_version": "2.0", "tests": { @@ -22151,40 +22151,40 @@ "duration_seconds": 0, "name": "Test 1 - Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180757#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491867#step:6:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180757#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491867#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Help Output Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180757#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491867#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180757#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491867#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180757#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491867#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180757#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491867#step:11:1" } ], - "duration_seconds": 1, + "duration_seconds": 0, "failed": 0, "passed": 6, "skipped": 0 @@ -22199,7 +22199,7 @@ "dashboard_link": "/linux/opensource_packages/fastai", "job_url_resolution_status": "central_exact", "package_slug": "fastai", - "production_refreshed_at": "2026-05-14T19:37:17.322097+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.543011+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "current_is_latest_stable", @@ -22213,15 +22213,15 @@ }, "run": { "attempt": "1", - "id": "25877435852", + "id": "26658737633", "job_name": "test-fastai / test-fastai", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:18Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251836" + "timestamp": "2026-05-29T19:49:21Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550031" }, "schema_version": "2.0", "tests": { @@ -22230,31 +22230,31 @@ "duration_seconds": 0, "name": "Test 1 - Install FastAI Python package", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251836#step:5:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550031#step:5:1" }, { "duration_seconds": 0, "name": "Test 2 - Verify FastAI package metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251836#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550031#step:6:1" }, { "duration_seconds": 0, "name": "Test 3 - Import FastAI and Torch modules", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251836#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550031#step:7:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify Arm64 Python runtime", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251836#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550031#step:8:1" }, { "duration_seconds": 0, "name": "Test 5 - Run bounded FastAI tensor smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251836#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550031#step:9:1" }, { "comparison": "Baseline FastAI 2.8.7 passed Tests 1-5, and PyPI reports the same version as latest stable. There is no newer stable FastAI candidate for Test 6.", @@ -22266,10 +22266,10 @@ "next_installed_version": "not_installed", "regression_result": "Current FastAI version is already latest stable", "status": "skipped", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251836#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550031#step:10:1" } ], - "duration_seconds": 123, + "duration_seconds": 140, "failed": 0, "passed": 5, "skipped": 1 @@ -22284,7 +22284,7 @@ "dashboard_link": "/linux/opensource_packages/fastdfs", "job_url_resolution_status": "central_exact", "package_slug": "fastdfs", - "production_refreshed_at": "2026-05-14T19:37:17.322304+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.543190+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -22298,15 +22298,15 @@ }, "run": { "attempt": "1", - "id": "25877427741", + "id": "26658731236", "job_name": "test-fastdfs / test-fastdfs", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:12Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218621" + "timestamp": "2026-05-29T19:49:10Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529422" }, "schema_version": "2.0", "tests": { @@ -22315,46 +22315,46 @@ "duration_seconds": 0, "name": "Test 1 - Check fdfs_trackerd binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218621#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529422#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check fdfs_storaged binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218621#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529422#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218621#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529422#step:8:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 4 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218621#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529422#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218621#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529422#step:10:1" }, { "comparison": "FastDFS baseline V6.12.4 built successfully with libfastcommon and installed the tracker and storage binaries on Arm64, and candidate V6.13.0 also built, installed, exposed the expected tracker binary and monitor tool, and emitted self-identifying output when invoked with a generated client configuration on Arm64.", "current_version": "V6.12.4", "decision": "next_install_validated", - "duration_seconds": 42, + "duration_seconds": 44, "latest_version": "V6.13.0", "name": "Test 6 - Regression Validation", "next_installed_version": "V6.13.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218621#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529422#step:11:1" } ], - "duration_seconds": 43, + "duration_seconds": 44, "failed": 0, "passed": 6, "skipped": 0 @@ -22369,7 +22369,7 @@ "dashboard_link": "/linux/opensource_packages/feast", "job_url_resolution_status": "central_exact", "package_slug": "feast", - "production_refreshed_at": "2026-05-14T19:37:17.322515+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.543416+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -22383,15 +22383,15 @@ }, "run": { "attempt": "1", - "id": "25877395502", + "id": "26658703674", "job_name": "test-feast / test-feast", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:33Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110037" + "timestamp": "2026-05-29T19:48:41Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432903" }, "schema_version": "2.0", "tests": { @@ -22400,46 +22400,46 @@ "duration_seconds": 0, "name": "Test 1 - Baseline package evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110037#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432903#step:8:1" }, { "duration_seconds": 0, "name": "Test 2 - Baseline version and release alignment", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110037#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432903#step:9:1" }, { "duration_seconds": 0, "name": "Test 3 - Package-specific source or docs evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110037#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432903#step:10:1" }, { "duration_seconds": 0, "name": "Test 4 - Arm64 support gate", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110037#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432903#step:11:1" }, { - "duration_seconds": 21, + "duration_seconds": 23, "name": "Test 5 - Bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110037#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432903#step:12:1" }, { "comparison": "Installed the next Feast candidate on the Arm64 runner and proved a bounded local file/SQLite feature store with historical retrieval.", "current_version": "0.1.0", "decision": "limited_cpu_smoke_validated", - "duration_seconds": 37, + "duration_seconds": 34, "latest_version": "0.63.0", "name": "Test 6 - Regression Validation", "next_installed_version": "0.63.0", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110037#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432903#step:13:1" } ], - "duration_seconds": 37, + "duration_seconds": 34, "failed": 0, "passed": 6, "skipped": 0 @@ -22454,7 +22454,7 @@ "dashboard_link": "/linux/opensource_packages/featuretools", "job_url_resolution_status": "central_exact", "package_slug": "featuretools", - "production_refreshed_at": "2026-05-14T19:37:17.322716+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.543605+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -22466,57 +22466,57 @@ }, "run": { "attempt": "1", - "id": "25877395502", + "id": "26658703674", "job_name": "test-featuretools / test-featuretools", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:25Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110006" + "timestamp": "2026-05-29T19:48:33Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432852" }, "schema_version": "2.0", "tests": { "details": [ { - "duration_seconds": 2, + "duration_seconds": 1, "name": "Test 1 - Check module import", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110006#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432852#step:6:1" }, { "duration_seconds": 1, "name": "Test 2 - Check version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110006#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432852#step:7:1" }, { "duration_seconds": 1, "name": "Test 3 - Check API surface", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110006#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432852#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110006#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432852#step:9:1" }, { - "duration_seconds": 2, + "duration_seconds": 1, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110006#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432852#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110006#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432852#step:11:1" } ], - "duration_seconds": 6, + "duration_seconds": 4, "failed": 0, "passed": 6, "skipped": 0 @@ -22531,7 +22531,7 @@ "dashboard_link": "/linux/opensource_packages/fedora", "job_url_resolution_status": "central_exact", "package_slug": "fedora", - "production_refreshed_at": "2026-05-14T19:37:17.322934+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.543779+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -22545,15 +22545,15 @@ }, "run": { "attempt": "1", - "id": "25877375677", + "id": "26658685142", "job_name": "test-fedora / test-fedora", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:03Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045078" + "timestamp": "2026-05-29T19:48:11Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370839" }, "schema_version": "2.0", "tests": { @@ -22562,46 +22562,46 @@ "duration_seconds": 0, "name": "Test 1 - Check image architecture", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045078#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370839#step:6:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 2 - Check OS release file", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045078#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370839#step:7:1" }, { "duration_seconds": 10, "name": "Test 3 - Install package with dnf", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045078#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370839#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Check architecture inside container", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045078#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370839#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Simple command execution", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045078#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370839#step:10:1" }, { "comparison": "Baseline Fedora 42 passed the Arm64 container smoke in this run, and candidate image tag 43 also pulled successfully, reported VERSION_ID 43, completed in-container dnf smoke, and passed architecture plus command validation on Arm64.", "current_version": "42", "decision": "next_install_validated", - "duration_seconds": 16, + "duration_seconds": 14, "latest_version": "43", "name": "Test 6 - Regression Validation", "next_installed_version": "43", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045078#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370839#step:11:1" } ], - "duration_seconds": 27, + "duration_seconds": 24, "failed": 0, "passed": 6, "skipped": 0 @@ -22616,7 +22616,7 @@ "dashboard_link": "/linux/opensource_packages/ffmpeg", "job_url_resolution_status": "central_exact", "package_slug": "ffmpeg", - "production_refreshed_at": "2026-05-14T19:37:17.323118+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.543955+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -22628,15 +22628,15 @@ }, "run": { "attempt": "1", - "id": "25877379982", + "id": "26658688675", "job_name": "test-ffmpeg / test-ffmpeg", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:05Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056474" + "timestamp": "2026-05-29T19:48:16Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575379758" }, "schema_version": "2.0", "tests": { @@ -22645,37 +22645,37 @@ "duration_seconds": 0, "name": "Test 1 - Check ffmpeg binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056474#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575379758#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check ffprobe binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056474#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575379758#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check ffmpeg version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056474#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575379758#step:8:1" }, { "duration_seconds": 1, "name": "Test 4 - Generate test video", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056474#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575379758#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Probe generated video", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056474#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575379758#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056474#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575379758#step:11:1" } ], "duration_seconds": 1, @@ -22693,7 +22693,7 @@ "dashboard_link": "/linux/opensource_packages/fftw", "job_url_resolution_status": "central_exact", "package_slug": "fftw", - "production_refreshed_at": "2026-05-14T19:37:17.323325+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.544123+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -22705,15 +22705,15 @@ }, "run": { "attempt": "1", - "id": "25877371674", + "id": "26658681575", "job_name": "test-fftw / test-fftw", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:59Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031599" + "timestamp": "2026-05-29T19:48:09Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358245" }, "schema_version": "2.0", "tests": { @@ -22722,37 +22722,37 @@ "duration_seconds": 0, "name": "Test 1 - Artifact Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031599#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358245#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031599#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358245#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031599#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358245#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031599#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358245#step:9:1" }, { "duration_seconds": 1, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031599#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358245#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031599#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358245#step:11:1" } ], "duration_seconds": 1, @@ -22770,7 +22770,7 @@ "dashboard_link": "/linux/opensource_packages/figlet", "job_url_resolution_status": "central_exact", "package_slug": "figlet", - "production_refreshed_at": "2026-05-14T19:37:17.323512+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.544309+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -22782,15 +22782,15 @@ }, "run": { "attempt": "1", - "id": "25877423406", + "id": "26658727918", "job_name": "test-figlet / test-figlet", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:11Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210169" + "timestamp": "2026-05-29T19:49:04Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515895" }, "schema_version": "2.0", "tests": { @@ -22799,37 +22799,37 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210169#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515895#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210169#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515895#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210169#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515895#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210169#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515895#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210169#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515895#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210169#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515895#step:11:1" } ], "duration_seconds": 0, @@ -22847,7 +22847,7 @@ "dashboard_link": "/linux/opensource_packages/figtree", "job_url_resolution_status": "central_exact", "package_slug": "figtree", - "production_refreshed_at": "2026-05-14T19:37:17.323717+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.544491+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -22859,15 +22859,15 @@ }, "run": { "attempt": "1", - "id": "25877375677", + "id": "26658685142", "job_name": "test-figtree / test-figtree", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:03Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044490" + "timestamp": "2026-05-29T19:48:10Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370353" }, "schema_version": "2.0", "tests": { @@ -22876,40 +22876,40 @@ "duration_seconds": 0, "name": "Test 1 - Check figtree binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044490#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370353#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check figtree jar exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044490#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370353#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Java dependency", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044490#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370353#step:8:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 4 - Check help/usage (if available)", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044490#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370353#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Verify launch script content", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044490#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370353#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044490#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370353#step:11:1" } ], - "duration_seconds": 1, + "duration_seconds": 0, "failed": 0, "passed": 6, "skipped": 0 @@ -22924,7 +22924,7 @@ "dashboard_link": "/linux/opensource_packages/filebeat", "job_url_resolution_status": "central_exact", "package_slug": "filebeat", - "production_refreshed_at": "2026-05-14T19:37:17.323956+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.544663+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -22938,15 +22938,15 @@ }, "run": { "attempt": "1", - "id": "25877403044", + "id": "26658710721", "job_name": "test-filebeat / test-filebeat", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:37Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048141040" + "timestamp": "2026-05-29T19:48:44Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456440" }, "schema_version": "2.0", "tests": { @@ -22955,31 +22955,31 @@ "duration_seconds": 0, "name": "Test 1 - Check Filebeat binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048141040#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456440#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Filebeat version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048141040#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456440#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Filebeat help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048141040#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456440#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Check Filebeat configuration", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048141040#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456440#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Export template and verify architecture", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048141040#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456440#step:10:1" }, { "comparison": "Current pinned Filebeat version 9.2.0 passed smoke tests in this run. Regression validation installed candidate version 9.2.1 on Arm64, and the extracted binary reported version 9.2.1 while successfully passing help, config, and template export checks.", @@ -22991,10 +22991,10 @@ "next_installed_version": "9.2.1", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048141040#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456440#step:11:1" } ], - "duration_seconds": 7, + "duration_seconds": 6, "failed": 0, "passed": 6, "skipped": 0 @@ -23009,7 +23009,7 @@ "dashboard_link": "/linux/opensource_packages/fio", "job_url_resolution_status": "central_exact", "package_slug": "fio", - "production_refreshed_at": "2026-05-14T19:37:17.324188+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.544839+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -23021,15 +23021,15 @@ }, "run": { "attempt": "1", - "id": "25877363365", + "id": "26658674448", "job_name": "test-fio / test-fio", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:46Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001035" + "timestamp": "2026-05-29T19:47:57Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334387" }, "schema_version": "2.0", "tests": { @@ -23038,40 +23038,40 @@ "duration_seconds": 0, "name": "Test 1 - Check fio binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001035#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334387#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check fio version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001035#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334387#step:7:1" }, { - "duration_seconds": 2, + "duration_seconds": 1, "name": "Test 3 - Run simple read test", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001035#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334387#step:8:1" }, { "duration_seconds": 1, "name": "Test 4 - Run simple write test", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001035#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334387#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Verify output log content", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001035#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334387#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001035#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334387#step:11:1" } ], - "duration_seconds": 3, + "duration_seconds": 2, "failed": 0, "passed": 6, "skipped": 0 @@ -23086,7 +23086,7 @@ "dashboard_link": "/linux/opensource_packages/firecraker", "job_url_resolution_status": "central_exact", "package_slug": "firecraker", - "production_refreshed_at": "2026-05-14T19:37:17.324410+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.545009+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -23100,15 +23100,15 @@ }, "run": { "attempt": "1", - "id": "25877392111", + "id": "26658699892", "job_name": "test-firecraker / test-firecraker", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:22Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095685" + "timestamp": "2026-05-29T19:48:30Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420587" }, "schema_version": "2.0", "tests": { @@ -23117,31 +23117,31 @@ "duration_seconds": 0, "name": "Test 1 - Check Firecracker and jailer binaries exist", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095685#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420587#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Firecracker version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095685#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420587#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check jailer help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095685#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420587#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095685#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420587#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Release bundle validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095685#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420587#step:10:1" }, { "comparison": "Current pinned Firecracker version v1.10.0 passed smoke tests in this run. Regression validation downloaded the next stable Arm64 release v1.10.1, and the candidate firecracker and jailer binaries reported version v1.10.1 with the expected release bundle files present on Arm64.", @@ -23153,7 +23153,7 @@ "next_installed_version": "v1.10.1", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095685#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420587#step:11:1" } ], "duration_seconds": 1, @@ -23171,7 +23171,7 @@ "dashboard_link": "/linux/opensource_packages/flannel", "job_url_resolution_status": "central_exact", "package_slug": "flannel", - "production_refreshed_at": "2026-05-14T19:37:17.324618+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.545181+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -23185,15 +23185,15 @@ }, "run": { "attempt": "1", - "id": "25877415436", + "id": "26658721315", "job_name": "test-flannel / test-flannel", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:54Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180919" + "timestamp": "2026-05-29T19:48:57Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491573" }, "schema_version": "2.0", "tests": { @@ -23202,31 +23202,31 @@ "duration_seconds": 0, "name": "Test 1 - Check flanneld binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180919#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491573#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check flanneld version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180919#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491573#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check flanneld help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180919#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491573#step:8:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 4 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180919#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491573#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Release bundle validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180919#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491573#step:10:1" }, { "comparison": "Current pinned Flannel version v0.26.4 passed smoke tests in this run. Regression validation downloaded the next stable Arm64 release v0.26.5, and the candidate flanneld binary reported version v0.26.5 with the expected release bundle files present on Arm64.", @@ -23238,10 +23238,10 @@ "next_installed_version": "v0.26.5", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180919#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491573#step:11:1" } ], - "duration_seconds": 1, + "duration_seconds": 0, "failed": 0, "passed": 6, "skipped": 0 @@ -23256,7 +23256,7 @@ "dashboard_link": "/linux/opensource_packages/flask", "job_url_resolution_status": "central_exact", "package_slug": "flask", - "production_refreshed_at": "2026-05-14T19:37:17.324857+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.545406+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -23268,15 +23268,15 @@ }, "run": { "attempt": "1", - "id": "25877387746", + "id": "26658696365", "job_name": "test-flask / test-flask", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:15Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084747" + "timestamp": "2026-05-29T19:48:24Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407268" }, "schema_version": "2.0", "tests": { @@ -23285,37 +23285,37 @@ "duration_seconds": 0, "name": "Test 1 - Check pip installation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084747#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407268#step:6:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 2 - Import Flask in Python", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084747#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407268#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Flask version and CLI output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084747#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407268#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Functional validation with test client", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084747#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407268#step:9:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 5 - Request context and architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084747#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407268#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084747#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407268#step:11:1" } ], "duration_seconds": 1, @@ -23333,7 +23333,7 @@ "dashboard_link": "/linux/opensource_packages/flatBuffers", "job_url_resolution_status": "central_exact", "package_slug": "flatBuffers", - "production_refreshed_at": "2026-05-14T19:37:17.325154+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.545692+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -23345,15 +23345,15 @@ }, "run": { "attempt": "1", - "id": "25877392111", + "id": "26658699892", "job_name": "test-flatbuffers / test-flatbuffers", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:22Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096439" + "timestamp": "2026-05-29T19:48:31Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421162" }, "schema_version": "2.0", "tests": { @@ -23362,37 +23362,37 @@ "duration_seconds": 0, "name": "Test 1 - Check flatc binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096439#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421162#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check flatc version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096439#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421162#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check flatc help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096439#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421162#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Compile sample schema", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096439#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421162#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Compile schema to Python", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096439#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421162#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096439#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421162#step:11:1" } ], "duration_seconds": 0, @@ -23410,7 +23410,7 @@ "dashboard_link": "/linux/opensource_packages/fleet", "job_url_resolution_status": "central_exact", "package_slug": "fleet", - "production_refreshed_at": "2026-05-14T19:37:17.325357+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.545875+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -23424,15 +23424,15 @@ }, "run": { "attempt": "1", - "id": "25877383844", + "id": "26658692522", "job_name": "test-fleet / test-fleet", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:12Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071714" + "timestamp": "2026-05-29T19:48:20Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394939" }, "schema_version": "2.0", "tests": { @@ -23441,43 +23441,43 @@ "duration_seconds": 0, "name": "Test 1 - Check fleet binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071714#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394939#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check fleet version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071714#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394939#step:7:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 3 - Check fleet help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071714#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394939#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071714#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394939#step:9:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 5 - Functional validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071714#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394939#step:10:1" }, { "comparison": "Current pinned Fleet version v0.13.8 passed smoke tests in this run. Regression validation installed candidate version v0.13.9 on Arm64, and the installed binary reported version v0.13.9.", "current_version": "v0.13.8", "decision": "next_install_validated", - "duration_seconds": 0, + "duration_seconds": 1, "latest_version": "v0.13.9", "name": "Test 6 - Regression Validation", "next_installed_version": "v0.13.9", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071714#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394939#step:11:1" } ], "duration_seconds": 1, @@ -23495,7 +23495,7 @@ "dashboard_link": "/linux/opensource_packages/flex", "job_url_resolution_status": "central_exact", "package_slug": "flex", - "production_refreshed_at": "2026-05-14T19:37:17.325571+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.546058+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -23507,15 +23507,15 @@ }, "run": { "attempt": "1", - "id": "25877399008", + "id": "26658707245", "job_name": "test-flex / test-flex", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:32Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126152" + "timestamp": "2026-05-29T19:48:38Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445469" }, "schema_version": "2.0", "tests": { @@ -23524,37 +23524,37 @@ "duration_seconds": 0, "name": "Test 1 - Check flex binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126152#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445469#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check flex version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126152#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445469#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check flex help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126152#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445469#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Generate scanner from lex file", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126152#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445469#step:9:1" }, { "duration_seconds": 1, "name": "Test 5 - Compile generated scanner", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126152#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445469#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126152#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445469#step:11:1" } ], "duration_seconds": 1, @@ -23572,7 +23572,7 @@ "dashboard_link": "/linux/opensource_packages/flink", "job_url_resolution_status": "central_exact", "package_slug": "flink", - "production_refreshed_at": "2026-05-14T19:37:17.325799+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.546230+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "no_newer_stable_available", @@ -23586,15 +23586,15 @@ }, "run": { "attempt": "1", - "id": "25877371674", + "id": "26658681575", "job_name": "test-flink / test-flink", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:59Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031817" + "timestamp": "2026-05-29T19:48:06Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358415" }, "schema_version": "2.0", "tests": { @@ -23603,31 +23603,31 @@ "duration_seconds": 0, "name": "Test 1 - Check flink binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031817#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358415#step:6:1" }, { "duration_seconds": 1, "name": "Test 2 - Check flink version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031817#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358415#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check start-cluster script", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031817#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358415#step:8:1" }, { "duration_seconds": 16, "name": "Test 4 - Start local cluster", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031817#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358415#step:9:1" }, { - "duration_seconds": 11, + "duration_seconds": 12, "name": "Test 5 - Stop local cluster and verify architecture", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031817#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358415#step:10:1" }, { "comparison": "Current pinned Flink version 2.1.1 passed smoke tests in this run and already matches the latest stable Arm64 candidate for this workflow, so no newer install target exists for Test 6.", @@ -23639,10 +23639,10 @@ "next_installed_version": "2.1.1", "regression_result": "No newer stable Flink release is available for Test 6", "status": "skipped", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031817#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358415#step:11:1" } ], - "duration_seconds": 28, + "duration_seconds": 29, "failed": 0, "passed": 5, "skipped": 1 @@ -23657,7 +23657,7 @@ "dashboard_link": "/linux/opensource_packages/fltk", "job_url_resolution_status": "central_exact", "package_slug": "fltk", - "production_refreshed_at": "2026-05-14T19:37:17.326009+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.546445+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -23669,15 +23669,15 @@ }, "run": { "attempt": "1", - "id": "25877371674", + "id": "26658681575", "job_name": "test-fltk / test-fltk", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:59Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031596" + "timestamp": "2026-05-29T19:48:07Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358563" }, "schema_version": "2.0", "tests": { @@ -23686,37 +23686,37 @@ "duration_seconds": 0, "name": "Test 1 - Check fltk-config exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031596#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358563#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check fluid binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031596#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358563#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check FLTK build flags", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031596#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358563#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031596#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358563#step:9:1" }, { "duration_seconds": 2, "name": "Test 5 - Compile and run simple FLTK program", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031596#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358563#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031596#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358563#step:11:1" } ], "duration_seconds": 2, @@ -23734,7 +23734,7 @@ "dashboard_link": "/linux/opensource_packages/fluentd", "job_url_resolution_status": "central_exact", "package_slug": "fluentd", - "production_refreshed_at": "2026-05-14T19:37:17.326196+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.546623+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -23746,15 +23746,15 @@ }, "run": { "attempt": "1", - "id": "25877383844", + "id": "26658692522", "job_name": "test-fluentd / test-fluentd", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:11Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071820" + "timestamp": "2026-05-29T19:48:21Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394689" }, "schema_version": "2.0", "tests": { @@ -23763,37 +23763,37 @@ "duration_seconds": 0, "name": "Test 1 - Check fluentd binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071820#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394689#step:6:1" }, { "duration_seconds": 1, "name": "Test 2 - Check fluentd version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071820#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394689#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check fluentd help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071820#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394689#step:8:1" }, { "duration_seconds": 1, "name": "Test 4 - Dry-run configuration", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071820#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394689#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Ruby API and architecture validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071820#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394689#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071820#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394689#step:11:1" } ], "duration_seconds": 2, @@ -23811,7 +23811,7 @@ "dashboard_link": "/linux/opensource_packages/flux", "job_url_resolution_status": "central_exact", "package_slug": "flux", - "production_refreshed_at": "2026-05-14T19:37:17.326372+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.546796+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -23825,15 +23825,15 @@ }, "run": { "attempt": "1", - "id": "25877371674", + "id": "26658681575", "job_name": "test-flux / test-flux", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:00Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031833" + "timestamp": "2026-05-29T19:48:07Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358472" }, "schema_version": "2.0", "tests": { @@ -23842,31 +23842,31 @@ "duration_seconds": 0, "name": "Test 1 - Check flux binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031833#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358472#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check flux version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031833#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358472#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check flux help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031833#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358472#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031833#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358472#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031833#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358472#step:10:1" }, { "comparison": "Current pinned Flux version v2.5.0 passed smoke tests in this run. Regression validation installed candidate version v2.5.1 on Arm64, and the installed binary reported version v2.5.1.", @@ -23878,7 +23878,7 @@ "next_installed_version": "v2.5.1", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031833#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358472#step:11:1" } ], "duration_seconds": 1, @@ -23896,7 +23896,7 @@ "dashboard_link": "/linux/opensource_packages/flyte", "job_url_resolution_status": "central_exact", "package_slug": "flyte", - "production_refreshed_at": "2026-05-14T19:37:17.326582+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.546972+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -23910,15 +23910,15 @@ }, "run": { "attempt": "1", - "id": "25877395502", + "id": "26658703674", "job_name": "test-flyte / test-flyte", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:26Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110041" + "timestamp": "2026-05-29T19:48:34Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432908" }, "schema_version": "2.0", "tests": { @@ -23927,46 +23927,46 @@ "duration_seconds": 0, "name": "Test 1 - Baseline package evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110041#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432908#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Baseline version and release alignment", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110041#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432908#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Package-specific source or docs evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110041#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432908#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Arm64 support gate", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110041#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432908#step:10:1" }, { - "duration_seconds": 168, + "duration_seconds": 198, "name": "Test 5 - Bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110041#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432908#step:11:1" }, { "comparison": "Test 6 reran the scoped Flyte Arm preflight against the next stable source tag: Go package discovery, linux/arm64 compile smoke, chart/manifest validation, and a tiny local Flytekit workflow. A live Flyte control plane and Kubernetes execution backend remain out of scope.", "current_version": "0.8.19", "decision": "limited_cpu_smoke_validated", - "duration_seconds": 94, - "latest_version": "2.0.16", + "duration_seconds": 165, + "latest_version": "2.0.18", "name": "Test 6 - Regression Validation", - "next_installed_version": "2.0.16", + "next_installed_version": "2.0.18", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110041#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432908#step:12:1" } ], - "duration_seconds": 94, + "duration_seconds": 165, "failed": 0, "passed": 6, "skipped": 0 @@ -23981,7 +23981,7 @@ "dashboard_link": "/linux/opensource_packages/fmt", "job_url_resolution_status": "central_exact", "package_slug": "fmt", - "production_refreshed_at": "2026-05-14T19:37:17.326811+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.547148+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -23993,15 +23993,15 @@ }, "run": { "attempt": "1", - "id": "25877392111", + "id": "26658699892", "job_name": "test-fmt / test-fmt", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:23Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096583" + "timestamp": "2026-05-29T19:48:30Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420568" }, "schema_version": "2.0", "tests": { @@ -24010,40 +24010,40 @@ "duration_seconds": 0, "name": "Test 1 - Check header file exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096583#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420568#step:6:1" }, { - "duration_seconds": 1, + "duration_seconds": 2, "name": "Test 2 - Compile simple program", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096583#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420568#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Run compiled program", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096583#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420568#step:8:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 4 - Compile program with formatting", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096583#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420568#step:9:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 5 - Check pkg-config", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096583#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420568#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096583#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420568#step:11:1" } ], - "duration_seconds": 1, + "duration_seconds": 3, "failed": 0, "passed": 6, "skipped": 0 @@ -24058,7 +24058,7 @@ "dashboard_link": "/linux/opensource_packages/font-awesome", "job_url_resolution_status": "central_exact", "package_slug": "font-awesome", - "production_refreshed_at": "2026-05-14T19:37:17.327030+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.547348+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -24072,15 +24072,15 @@ }, "run": { "attempt": "1", - "id": "25877375677", + "id": "26658685142", "job_name": "test-font-awesome / test-font-awesome", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:07Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044631" + "timestamp": "2026-05-29T19:48:18Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370542" }, "schema_version": "2.0", "tests": { @@ -24089,31 +24089,31 @@ "duration_seconds": 0, "name": "Test 1 - Package installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044631#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370542#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Version is pinned", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044631#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370542#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - CSS and webfont assets exist", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044631#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370542#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044631#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370542#step:10:1" }, { "duration_seconds": 0, "name": "Test 5 - Parse webfont with font engine", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044631#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370542#step:11:1" }, { "comparison": "Baseline Font Awesome 5.1.0 parsed successfully. Test 6 installed candidate 5.1.1 and parsed the solid webfont on Arm64.", @@ -24125,7 +24125,7 @@ "next_installed_version": "5.1.1", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044631#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370542#step:12:1" } ], "duration_seconds": 2, @@ -24143,7 +24143,7 @@ "dashboard_link": "/linux/opensource_packages/fping", "job_url_resolution_status": "central_exact", "package_slug": "fping", - "production_refreshed_at": "2026-05-14T19:37:17.327251+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.547530+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -24155,15 +24155,15 @@ }, "run": { "attempt": "1", - "id": "25877411197", + "id": "26658717942", "job_name": "test-fping / test-fping", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:49Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174564" + "timestamp": "2026-05-29T19:48:54Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478721" }, "schema_version": "2.0", "tests": { @@ -24172,37 +24172,37 @@ "duration_seconds": 0, "name": "Test 1 - Check fping binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174564#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478721#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check fping version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174564#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478721#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check fping help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174564#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478721#step:8:1" }, { "duration_seconds": 2, "name": "Test 4 - Ping localhost", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174564#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478721#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Ping multiple hosts (dry run/local)", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174564#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478721#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174564#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478721#step:11:1" } ], "duration_seconds": 2, @@ -24220,7 +24220,7 @@ "dashboard_link": "/linux/opensource_packages/freebsd", "job_url_resolution_status": "central_exact", "package_slug": "freebsd", - "production_refreshed_at": "2026-05-14T19:37:17.327447+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.547701+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "no_newer_stable_available", @@ -24234,15 +24234,15 @@ }, "run": { "attempt": "1", - "id": "25877371674", + "id": "26658681575", "job_name": "test-freebsd / test-freebsd", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:59Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031659" + "timestamp": "2026-05-29T19:48:07Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358170" }, "schema_version": "2.0", "tests": { @@ -24251,46 +24251,46 @@ "duration_seconds": 0, "name": "Test 1 - Check checksum file availability", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031659#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358170#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Arm64 image availability", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031659#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358170#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check checksum entry for Arm64 image", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031659#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358170#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031659#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358170#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Check image metadata headers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031659#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358170#step:10:1" }, { "comparison": "FreeBSD 15.0 is the newest public stable Arm64 VM image release line currently published at the official download location, so there is no newer stable image line to validate in Test 6 yet.", "current_version": "15.0", "decision": "no_newer_stable_available", - "duration_seconds": 1, + "duration_seconds": 0, "latest_version": "15.0", "name": "Test 6 - Regression Validation", "next_installed_version": "15.0", "regression_result": "No newer stable FreeBSD Arm64 VM image release is available for validation", "status": "skipped", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031659#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358170#step:11:1" } ], - "duration_seconds": 1, + "duration_seconds": 0, "failed": 0, "passed": 5, "skipped": 1 @@ -24305,7 +24305,7 @@ "dashboard_link": "/linux/opensource_packages/freecad", "job_url_resolution_status": "central_exact", "package_slug": "freecad", - "production_refreshed_at": "2026-05-14T19:37:17.327631+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.547873+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "no_newer_stable_available", @@ -24319,15 +24319,15 @@ }, "run": { "attempt": "1", - "id": "25877403044", + "id": "26658710721", "job_name": "test-freecad / test-freecad", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:37Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048141069" + "timestamp": "2026-05-29T19:48:43Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456458" }, "schema_version": "2.0", "tests": { @@ -24336,31 +24336,31 @@ "duration_seconds": 0, "name": "Test 1 - Baseline package evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048141069#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456458#step:8:1" }, { "duration_seconds": 0, "name": "Test 2 - Installed runtime version", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048141069#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456458#step:9:1" }, { "duration_seconds": 2, "name": "Test 3 - FreeCADCmd imports modeling modules", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048141069#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456458#step:10:1" }, { "duration_seconds": 0, "name": "Test 4 - Arm64 support gate", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048141069#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456458#step:11:1" }, { - "duration_seconds": 1, + "duration_seconds": 2, "name": "Test 5 - Bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048141069#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456458#step:12:1" }, { "comparison": "Tests 1-5 download and run the official stable Linux aarch64 AppImage. The current stable release is the latest stable Arm64 AppImage, so there is no newer stable candidate for Test 6.", @@ -24372,10 +24372,10 @@ "next_installed_version": "not_installed", "regression_result": "No newer stable FreeCAD Arm64 AppImage is available beyond the version validated in Tests 1-5", "status": "skipped", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048141069#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456458#step:13:1" } ], - "duration_seconds": 3, + "duration_seconds": 4, "failed": 0, "passed": 5, "skipped": 1 @@ -24390,7 +24390,7 @@ "dashboard_link": "/linux/opensource_packages/freedesktop-sdk", "job_url_resolution_status": "central_exact", "package_slug": "freedesktop-sdk", - "production_refreshed_at": "2026-05-14T19:37:17.327858+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.548045+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -24402,15 +24402,15 @@ }, "run": { "attempt": "1", - "id": "25877399008", + "id": "26658707245", "job_name": "test-freedesktop-sdk / test-freedesktop-sdk", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:36Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125849" + "timestamp": "2026-05-29T19:48:39Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445921" }, "schema_version": "2.0", "tests": { @@ -24419,37 +24419,37 @@ "duration_seconds": 0, "name": "Test 1 - Check flatpak binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125849#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445921#step:6:1" }, { "duration_seconds": 1, "name": "Test 2 - Add Flathub remote", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125849#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445921#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check for Freedesktop SDK availability", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125849#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445921#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Check flatpak help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125849#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445921#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - List installed runtimes (should be empty initially)", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125849#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445921#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125849#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445921#step:11:1" } ], "duration_seconds": 1, @@ -24467,7 +24467,7 @@ "dashboard_link": "/linux/opensource_packages/freeglut", "job_url_resolution_status": "central_exact", "package_slug": "freeglut", - "production_refreshed_at": "2026-05-14T19:37:17.328076+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.548212+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -24479,15 +24479,15 @@ }, "run": { "attempt": "1", - "id": "25877395502", + "id": "26658703674", "job_name": "test-freeglut / test-freeglut", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:26Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110068" + "timestamp": "2026-05-29T19:48:34Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433046" }, "schema_version": "2.0", "tests": { @@ -24496,40 +24496,40 @@ "duration_seconds": 0, "name": "Test 1 - Check header file exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110068#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433046#step:6:1" }, { - "duration_seconds": 30, + "duration_seconds": 7, "name": "Test 2 - Check library file exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110068#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433046#step:7:1" }, { "duration_seconds": 1, "name": "Test 3 - Compile simple program", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110068#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433046#step:8:1" }, { - "duration_seconds": 14, + "duration_seconds": 3, "name": "Test 4 - Run compiled program (headless check)", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110068#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433046#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Verify pkg-config runtime link", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110068#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433046#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110068#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433046#step:11:1" } ], - "duration_seconds": 45, + "duration_seconds": 11, "failed": 0, "passed": 6, "skipped": 0 @@ -24544,7 +24544,7 @@ "dashboard_link": "/linux/opensource_packages/freeimage", "job_url_resolution_status": "central_exact", "package_slug": "freeimage", - "production_refreshed_at": "2026-05-14T19:37:17.328261+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.548422+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -24556,15 +24556,15 @@ }, "run": { "attempt": "1", - "id": "25877363365", + "id": "26658674448", "job_name": "test-freeimage / test-freeimage", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:47Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001104" + "timestamp": "2026-05-29T19:47:56Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575335013" }, "schema_version": "2.0", "tests": { @@ -24573,37 +24573,37 @@ "duration_seconds": 0, "name": "Test 1 - Check header file exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001104#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575335013#step:6:1" }, { - "duration_seconds": 8, + "duration_seconds": 9, "name": "Test 2 - Check library file exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001104#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575335013#step:7:1" }, { - "duration_seconds": 2, + "duration_seconds": 1, "name": "Test 3 - Compile simple program", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001104#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575335013#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Run compiled program", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001104#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575335013#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Check pkg-config", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001104#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575335013#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001104#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575335013#step:11:1" } ], "duration_seconds": 10, @@ -24621,7 +24621,7 @@ "dashboard_link": "/linux/opensource_packages/freemarker", "job_url_resolution_status": "central_exact", "package_slug": "freemarker", - "production_refreshed_at": "2026-05-14T19:37:17.328459+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.548597+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -24633,15 +24633,15 @@ }, "run": { "attempt": "1", - "id": "25877355625", + "id": "26658667828", "job_name": "test-freemarker / test-freemarker", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:37Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976704" + "timestamp": "2026-05-29T19:47:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308772" }, "schema_version": "2.0", "tests": { @@ -24650,40 +24650,40 @@ "duration_seconds": 0, "name": "Test 1 - Check jar file exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976704#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308772#step:6:1" }, { "duration_seconds": 1, "name": "Test 2 - Compile simple Java program", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976704#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308772#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Run compiled Java program", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976704#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308772#step:8:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 4 - Check jar content", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976704#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308772#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Check package metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976704#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308772#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976704#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308772#step:11:1" } ], - "duration_seconds": 1, + "duration_seconds": 2, "failed": 0, "passed": 6, "skipped": 0 @@ -24698,7 +24698,7 @@ "dashboard_link": "/linux/opensource_packages/freetype", "job_url_resolution_status": "central_exact", "package_slug": "freetype", - "production_refreshed_at": "2026-05-14T19:37:17.328661+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.548773+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -24710,15 +24710,15 @@ }, "run": { "attempt": "1", - "id": "25877367704", + "id": "26658677990", "job_name": "test-freetype / test-freetype", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:55Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027042" + "timestamp": "2026-05-29T19:48:03Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346987" }, "schema_version": "2.0", "tests": { @@ -24727,40 +24727,40 @@ "duration_seconds": 0, "name": "Test 1 - Check header file exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027042#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346987#step:6:1" }, { - "duration_seconds": 9, + "duration_seconds": 24, "name": "Test 2 - Check library file exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027042#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346987#step:7:1" }, { - "duration_seconds": 1, + "duration_seconds": 2, "name": "Test 3 - Compile simple program", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027042#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346987#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Run compiled program", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027042#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346987#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Check pkg-config", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027042#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346987#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027042#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346987#step:11:1" } ], - "duration_seconds": 10, + "duration_seconds": 26, "failed": 0, "passed": 6, "skipped": 0 @@ -24775,7 +24775,7 @@ "dashboard_link": "/linux/opensource_packages/freetype2", "job_url_resolution_status": "central_exact", "package_slug": "freetype2", - "production_refreshed_at": "2026-05-14T19:37:17.328914+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.548945+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -24787,15 +24787,15 @@ }, "run": { "attempt": "1", - "id": "25877367704", + "id": "26658677990", "job_name": "test-freetype2 / test-freetype2", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:55Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026890" + "timestamp": "2026-05-29T19:48:02Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347062" }, "schema_version": "2.0", "tests": { @@ -24804,40 +24804,40 @@ "duration_seconds": 0, "name": "Test 1 - Check package detection", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026890#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347062#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026890#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347062#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check compiler flags output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026890#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347062#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify architecture", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026890#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347062#step:9:1" }, { - "duration_seconds": 2, + "duration_seconds": 1, "name": "Test 5 - Functional compile and run", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026890#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347062#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026890#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347062#step:11:1" } ], - "duration_seconds": 2, + "duration_seconds": 1, "failed": 0, "passed": 6, "skipped": 0 @@ -24852,7 +24852,7 @@ "dashboard_link": "/linux/opensource_packages/functionbeat", "job_url_resolution_status": "central_exact", "package_slug": "functionbeat", - "production_refreshed_at": "2026-05-14T19:37:17.329121+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.549116+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -24866,15 +24866,15 @@ }, "run": { "attempt": "1", - "id": "25877415436", + "id": "26658721315", "job_name": "test-functionbeat / test-functionbeat", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:56Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181071" + "timestamp": "2026-05-29T19:48:56Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491815" }, "schema_version": "2.0", "tests": { @@ -24883,46 +24883,46 @@ "duration_seconds": 0, "name": "Test 1 - Check Functionbeat binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181071#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491815#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Functionbeat version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181071#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491815#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Functionbeat help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181071#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491815#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify architecture", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181071#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491815#step:9:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 5 - Export Functionbeat template", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181071#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491815#step:10:1" }, { "comparison": "Current pinned Functionbeat version 7.17.27 passed smoke tests in this run. Regression validation downloaded candidate version 7.17.28 for Arm64, and the extracted binary reported version 7.17.28 while successfully exporting a template on Arm64.", "current_version": "7.17.27", "decision": "next_install_validated", - "duration_seconds": 5, + "duration_seconds": 8, "latest_version": "7.17.28", "name": "Test 6 - Regression Validation", "next_installed_version": "7.17.28", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181071#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491815#step:11:1" } ], - "duration_seconds": 5, + "duration_seconds": 8, "failed": 0, "passed": 6, "skipped": 0 @@ -24937,7 +24937,7 @@ "dashboard_link": "/linux/opensource_packages/gRPC", "job_url_resolution_status": "central_exact", "package_slug": "gRPC", - "production_refreshed_at": "2026-05-14T19:37:17.329550+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.549519+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -24949,15 +24949,15 @@ }, "run": { "attempt": "1", - "id": "25877395502", + "id": "26658703674", "job_name": "test-grpc / test-gRPC", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:26Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110018" + "timestamp": "2026-05-29T19:48:33Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432874" }, "schema_version": "2.0", "tests": { @@ -24966,40 +24966,40 @@ "duration_seconds": 0, "name": "Test 1 - Check header file exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110018#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432874#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check C++ header file exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110018#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432874#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check plugin binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110018#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432874#step:8:1" }, { - "duration_seconds": 8, + "duration_seconds": 7, "name": "Test 4 - Generate and compile gRPC loopback sample", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110018#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432874#step:9:1" }, { "duration_seconds": 5, "name": "Test 5 - Run gRPC loopback request", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110018#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432874#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110018#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432874#step:11:1" } ], - "duration_seconds": 13, + "duration_seconds": 12, "failed": 0, "passed": 6, "skipped": 0 @@ -25014,7 +25014,7 @@ "dashboard_link": "/linux/opensource_packages/gRPC-java", "job_url_resolution_status": "central_exact", "package_slug": "gRPC-java", - "production_refreshed_at": "2026-05-14T19:37:17.329342+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.549332+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -25028,48 +25028,48 @@ }, "run": { "attempt": "1", - "id": "25877399008", + "id": "26658707245", "job_name": "test-grpc-java / test-gRPC-java", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:31Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125983" + "timestamp": "2026-05-29T19:48:38Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445820" }, "schema_version": "2.0", "tests": { "details": [ { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 1 - Check gRPC-java plugin exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125983#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445820#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Verify plugin architecture", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125983#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445820#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check protoc availability", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125983#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445820#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Generate Java stubs from proto", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125983#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445820#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Verify generated Java files", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125983#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445820#step:10:1" }, { "comparison": "Current pinned version 1.55.1 passed Tests 1-5. The next newer stable artifact 1.55.3 downloaded and generated Java stubs on Arm64.", @@ -25081,7 +25081,7 @@ "next_installed_version": "1.55.3", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125983#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445820#step:11:1" } ], "duration_seconds": 0, @@ -25099,7 +25099,7 @@ "dashboard_link": "/linux/opensource_packages/gVisor", "job_url_resolution_status": "central_exact", "package_slug": "gVisor", - "production_refreshed_at": "2026-05-14T19:37:17.329774+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.549698+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -25113,15 +25113,15 @@ }, "run": { "attempt": "1", - "id": "25877411197", + "id": "26658717942", "job_name": "test-gvisor / test-gVisor", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:50Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175326" + "timestamp": "2026-05-29T19:48:52Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479987" }, "schema_version": "2.0", "tests": { @@ -25130,31 +25130,31 @@ "duration_seconds": 0, "name": "Test 1 - Check runsc binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175326#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479987#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check runsc version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175326#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479987#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check runsc help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175326#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479987#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify architecture", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175326#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479987#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Validate runsc command path", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175326#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479987#step:10:1" }, { "comparison": "Current pinned gVisor version release-20250127.0 passed smoke tests in this run. Regression validation downloaded candidate release release-20250203.0 for Arm64, and the staged runsc binary reported version release-20250203.0 while successfully passing help and list subcommand validation on Arm64.", @@ -25166,7 +25166,7 @@ "next_installed_version": "release-20250203.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175326#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479987#step:11:1" } ], "duration_seconds": 1, @@ -25184,7 +25184,7 @@ "dashboard_link": "/linux/opensource_packages/ganglia", "job_url_resolution_status": "central_exact", "package_slug": "ganglia", - "production_refreshed_at": "2026-05-14T19:37:17.330076+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.549966+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -25196,15 +25196,15 @@ }, "run": { "attempt": "1", - "id": "25877375677", + "id": "26658685142", "job_name": "test-ganglia / test-ganglia", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:01Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045162" + "timestamp": "2026-05-29T19:48:11Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370458" }, "schema_version": "2.0", "tests": { @@ -25213,37 +25213,37 @@ "duration_seconds": 0, "name": "Test 1 - Check gmond binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045162#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370458#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check gmond version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045162#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370458#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check gmond help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045162#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370458#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Check default configuration generation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045162#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370458#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Check gmetric binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045162#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370458#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045162#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370458#step:11:1" } ], "duration_seconds": 0, @@ -25261,7 +25261,7 @@ "dashboard_link": "/linux/opensource_packages/garden-linux", "job_url_resolution_status": "central_exact", "package_slug": "garden-linux", - "production_refreshed_at": "2026-05-14T19:37:17.330281+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.550142+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -25275,15 +25275,15 @@ }, "run": { "attempt": "1", - "id": "25877406767", + "id": "26658714432", "job_name": "test-garden-linux / test-garden-linux", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:44Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155717" + "timestamp": "2026-05-29T19:48:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469225" }, "schema_version": "2.0", "tests": { @@ -25292,46 +25292,46 @@ "duration_seconds": 0, "name": "Test 1 - Baseline package evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155717#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469225#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Baseline version and release alignment", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155717#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469225#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Package-specific source or docs evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155717#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469225#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Arm64 support gate", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155717#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469225#step:10:1" }, { "duration_seconds": 1, "name": "Test 5 - Bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155717#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469225#step:11:1" }, { "comparison": "Test 6 reran the scoped Garden Linux Arm preflight against the next stable source tag: image-build source layout, helper/source compile pass where present, and Arm/image release asset validation. OS boot, systemd, kernel modules, and cloud-init remain out of scope.", "current_version": "934.0", "decision": "limited_cpu_smoke_validated", - "duration_seconds": 1, - "latest_version": "2150.3.0", + "duration_seconds": 2, + "latest_version": "2150.4.0", "name": "Test 6 - Regression Validation", - "next_installed_version": "2150.3.0", + "next_installed_version": "2150.4.0", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155717#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469225#step:13:1" } ], - "duration_seconds": 1, + "duration_seconds": 3, "failed": 0, "passed": 6, "skipped": 0 @@ -25346,7 +25346,7 @@ "dashboard_link": "/linux/opensource_packages/gardener", "job_url_resolution_status": "central_exact", "package_slug": "gardener", - "production_refreshed_at": "2026-05-14T19:37:17.330512+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.550354+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -25360,15 +25360,15 @@ }, "run": { "attempt": "1", - "id": "25877359516", + "id": "26658670904", "job_name": "test-gardener / test-gardener", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:45Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991519" + "timestamp": "2026-05-29T19:47:53Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321809" }, "schema_version": "2.0", "tests": { @@ -25377,46 +25377,46 @@ "duration_seconds": 0, "name": "Test 1 - Check gardenctl binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991519#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321809#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check gardenctl version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991519#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321809#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check gardenctl help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991519#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321809#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Check gardenctl provider-env help", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991519#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321809#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Verify architecture", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991519#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321809#step:10:1" }, { "comparison": "Current pinned gardenctl version 2.9.0 passed smoke tests in this run. Regression validation downloaded candidate version 2.10.0 for Arm64, and the binary reported version 2.10.0 while passing help and provider-env checks on Arm64.", "current_version": "2.9.0", "decision": "next_install_validated", - "duration_seconds": 1, + "duration_seconds": 3, "latest_version": "2.10.0", "name": "Test 6 - Regression Validation", "next_installed_version": "2.10.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991519#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321809#step:11:1" } ], - "duration_seconds": 1, + "duration_seconds": 3, "failed": 0, "passed": 6, "skipped": 0 @@ -25431,7 +25431,7 @@ "dashboard_link": "/linux/opensource_packages/gatsby", "job_url_resolution_status": "central_exact", "package_slug": "gatsby", - "production_refreshed_at": "2026-05-14T19:37:17.330723+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.550541+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -25443,15 +25443,15 @@ }, "run": { "attempt": "1", - "id": "25877403044", + "id": "26658710721", "job_name": "test-gatsby / test-gatsby", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:37Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140993" + "timestamp": "2026-05-29T19:48:43Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456352" }, "schema_version": "2.0", "tests": { @@ -25460,40 +25460,40 @@ "duration_seconds": 0, "name": "Test 1 - Check gatsby binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140993#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456352#step:6:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 2 - Check gatsby version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140993#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456352#step:7:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 3 - Check gatsby help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140993#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456352#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Check gatsby options command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140993#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456352#step:9:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 5 - Check gatsby telemetry command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140993#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456352#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140993#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456352#step:11:1" } ], - "duration_seconds": 2, + "duration_seconds": 1, "failed": 0, "passed": 6, "skipped": 0 @@ -25508,7 +25508,7 @@ "dashboard_link": "/linux/opensource_packages/gcc", "job_url_resolution_status": "central_exact", "package_slug": "gcc", - "production_refreshed_at": "2026-05-14T19:37:17.330963+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.550713+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -25520,15 +25520,15 @@ }, "run": { "attempt": "1", - "id": "25877423406", + "id": "26658727918", "job_name": "test-gcc / test-gcc", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:06Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210105" + "timestamp": "2026-05-29T19:49:06Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515941" }, "schema_version": "2.0", "tests": { @@ -25537,37 +25537,37 @@ "duration_seconds": 0, "name": "Test 1 - Check gcc binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210105#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515941#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check gcc version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210105#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515941#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check gcc help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210105#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515941#step:8:1" }, { "duration_seconds": 1, "name": "Test 4 - Compile simple C program", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210105#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515941#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Run compiled program", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210105#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515941#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210105#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515941#step:11:1" } ], "duration_seconds": 1, @@ -25585,7 +25585,7 @@ "dashboard_link": "/linux/opensource_packages/gdal", "job_url_resolution_status": "central_exact", "package_slug": "gdal", - "production_refreshed_at": "2026-05-14T19:37:17.331144+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.550882+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -25597,15 +25597,15 @@ }, "run": { "attempt": "1", - "id": "25877379982", + "id": "26658688675", "job_name": "test-gdal / test-gdal", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:05Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057386" + "timestamp": "2026-05-29T19:48:14Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380419" }, "schema_version": "2.0", "tests": { @@ -25614,37 +25614,37 @@ "duration_seconds": 0, "name": "Test 1 - Check gdalinfo binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057386#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380419#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check gdalinfo version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057386#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380419#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check gdalinfo help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057386#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380419#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - List supported formats", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057386#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380419#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Check ogr2ogr binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057386#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380419#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057386#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380419#step:11:1" } ], "duration_seconds": 0, @@ -25662,7 +25662,7 @@ "dashboard_link": "/linux/opensource_packages/gdb", "job_url_resolution_status": "central_exact", "package_slug": "gdb", - "production_refreshed_at": "2026-05-14T19:37:17.331338+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.551052+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -25674,15 +25674,15 @@ }, "run": { "attempt": "1", - "id": "25877399008", + "id": "26658707245", "job_name": "test-gdb / test-gdb", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:31Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125102" + "timestamp": "2026-05-29T19:48:38Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575444553" }, "schema_version": "2.0", "tests": { @@ -25691,40 +25691,40 @@ "duration_seconds": 0, "name": "Test 1 - Check gdb binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125102#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575444553#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check gdb version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125102#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575444553#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check gdb help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125102#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575444553#step:8:1" }, { "duration_seconds": 2, "name": "Test 4 - Debug simple C program (batch mode)", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125102#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575444553#step:9:1" }, { - "duration_seconds": 3, + "duration_seconds": 2, "name": "Test 5 - Check gdbserver binary exists (optional)", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125102#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575444553#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125102#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575444553#step:11:1" } ], - "duration_seconds": 5, + "duration_seconds": 4, "failed": 0, "passed": 6, "skipped": 0 @@ -25739,7 +25739,7 @@ "dashboard_link": "/linux/opensource_packages/gdrcopy", "job_url_resolution_status": "central_exact", "package_slug": "gdrcopy", - "production_refreshed_at": "2026-05-14T19:37:17.331516+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.551223+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -25753,15 +25753,15 @@ }, "run": { "attempt": "1", - "id": "25877406767", + "id": "26658714432", "job_name": "test-gdrcopy / test-gdrcopy", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:46Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155664" + "timestamp": "2026-05-29T19:48:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469310" }, "schema_version": "2.0", "tests": { @@ -25770,46 +25770,46 @@ "duration_seconds": 0, "name": "Test 1 - Baseline package evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155664#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469310#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Baseline version and release alignment", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155664#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469310#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Package-specific source or docs evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155664#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469310#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Arm64 support gate", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155664#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469310#step:10:1" }, { - "duration_seconds": 8, + "duration_seconds": 1, "name": "Test 5 - Run scoped Arm preflight proof", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155664#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469310#step:11:1" }, { "comparison": "Test 6 limited_cpu_smoke_validated: reran the same bounded scoped Arm source/compile/import/help/manifest preflight against the next stable candidate. This is CPU-side preflight evidence only; no GPU/CUDA driver/runtime, accelerator execution, Kubernetes cluster, or full product runtime is claimed.", "current_version": "2.2", "decision": "limited_cpu_smoke_validated", - "duration_seconds": 2, + "duration_seconds": 3, "latest_version": "2.5.2", "name": "Test 6 - Regression Validation", "next_installed_version": "2.5.2", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155664#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469310#step:12:1" } ], - "duration_seconds": 10, + "duration_seconds": 4, "failed": 0, "passed": 6, "skipped": 0 @@ -25824,7 +25824,7 @@ "dashboard_link": "/linux/opensource_packages/gdsfactory", "job_url_resolution_status": "central_exact", "package_slug": "gdsfactory", - "production_refreshed_at": "2026-05-14T19:37:17.331714+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.551456+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -25838,15 +25838,15 @@ }, "run": { "attempt": "1", - "id": "25877406767", + "id": "26658714432", "job_name": "test-gdsfactory / test-gdsfactory", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:51Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155546" + "timestamp": "2026-05-29T19:48:57Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469437" }, "schema_version": "2.0", "tests": { @@ -25855,46 +25855,46 @@ "duration_seconds": 0, "name": "Test 1 - Baseline package evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155546#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469437#step:8:1" }, { "duration_seconds": 0, "name": "Test 2 - Baseline version and release alignment", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155546#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469437#step:9:1" }, { "duration_seconds": 0, "name": "Test 3 - Package-specific source or docs evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155546#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469437#step:10:1" }, { "duration_seconds": 0, "name": "Test 4 - Arm64 support gate", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155546#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469437#step:11:1" }, { - "duration_seconds": 8, + "duration_seconds": 6, "name": "Test 5 - Bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155546#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469437#step:12:1" }, { "comparison": "Installed the next GDSFactory candidate on the Arm64 runner and wrote a tiny GDS layout file.", "current_version": "9.9.4", "decision": "limited_cpu_smoke_validated", - "duration_seconds": 43, - "latest_version": "9.42.0", + "duration_seconds": 42, + "latest_version": "9.43.0", "name": "Test 6 - Regression Validation", - "next_installed_version": "9.42.0", + "next_installed_version": "9.43.0", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155546#step:14:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469437#step:14:1" } ], - "duration_seconds": 43, + "duration_seconds": 42, "failed": 0, "passed": 6, "skipped": 0 @@ -25909,7 +25909,7 @@ "dashboard_link": "/linux/opensource_packages/gdspy", "job_url_resolution_status": "central_exact", "package_slug": "gdspy", - "production_refreshed_at": "2026-05-14T19:37:17.331952+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.551642+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -25923,15 +25923,15 @@ }, "run": { "attempt": "1", - "id": "25877406767", + "id": "26658714432", "job_name": "test-gdspy / test-gdspy", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:44Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155701" + "timestamp": "2026-05-29T19:48:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469313" }, "schema_version": "2.0", "tests": { @@ -25940,31 +25940,31 @@ "duration_seconds": 0, "name": "Test 1 - Package installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155701#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469313#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Version metadata matches baseline", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155701#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469313#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Installed files metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155701#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469313#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155701#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469313#step:10:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155701#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469313#step:11:1" }, { "comparison": "Current pinned package version 0.2.9 passed smoke tests in this run, and the newer stable PyPI candidate 0.3 installed successfully on Arm64.", @@ -25976,7 +25976,7 @@ "next_installed_version": "0.3", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155701#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469313#step:13:1" } ], "duration_seconds": 9, @@ -25994,7 +25994,7 @@ "dashboard_link": "/linux/opensource_packages/geda", "job_url_resolution_status": "central_exact", "package_slug": "geda", - "production_refreshed_at": "2026-05-14T19:37:17.332139+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.551810+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "no_newer_stable_available", @@ -26008,15 +26008,15 @@ }, "run": { "attempt": "1", - "id": "25877411197", + "id": "26658717942", "job_name": "test-geda / test-geda", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:48Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175585" + "timestamp": "2026-05-29T19:48:52Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480021" }, "schema_version": "2.0", "tests": { @@ -26025,31 +26025,31 @@ "duration_seconds": 0, "name": "Test 1 - Baseline package evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175585#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480021#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Baseline version and release alignment", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175585#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480021#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Package-specific source or docs evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175585#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480021#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Arm64 support gate", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175585#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480021#step:10:1" }, { "duration_seconds": 0, "name": "Test 5 - Bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175585#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480021#step:11:1" }, { "comparison": "Tests 1-5 attempt the package-manager runtime path when gEDA is available; on ubuntu-24.04-arm the package is not available, so no runtime pass is claimed. The upstream archive explicitly states the project is not actively developed anymore, so no newer stable public release is available for regression validation.", @@ -26061,7 +26061,7 @@ "next_installed_version": "not_installed", "regression_result": "No newer stable public release is available", "status": "skipped", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175585#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480021#step:12:1" } ], "duration_seconds": 0, @@ -26079,7 +26079,7 @@ "dashboard_link": "/linux/opensource_packages/gem5", "job_url_resolution_status": "central_exact", "package_slug": "gem5", - "production_refreshed_at": "2026-05-14T19:37:17.332350+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.551986+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -26093,15 +26093,15 @@ }, "run": { "attempt": "1", - "id": "25877411197", + "id": "26658717942", "job_name": "test-gem5 / test-gem5", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:50Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175479" + "timestamp": "2026-05-29T19:48:52Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480064" }, "schema_version": "2.0", "tests": { @@ -26110,46 +26110,46 @@ "duration_seconds": 0, "name": "Test 1 - Baseline package evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175479#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480064#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Baseline version and release alignment", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175479#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480064#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Package-specific source or docs evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175479#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480064#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Arm64 support gate", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175479#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480064#step:10:1" }, { - "duration_seconds": 8, + "duration_seconds": 4, "name": "Test 5 - Bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175479#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480064#step:11:1" }, { "comparison": "Built the next gem5 source candidate as a bounded NULL binary and executed its help command on the Arm64 runner. Full ISA simulation remains scoped out of this smoke lane.", "current_version": "21.0.0.0", "decision": "limited_cpu_smoke_validated", - "duration_seconds": 4142, + "duration_seconds": 4225, "latest_version": "25.1.0.1", "name": "Test 6 - Regression Validation", "next_installed_version": "25.1.0.1", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175479#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480064#step:12:1" } ], - "duration_seconds": 4142, + "duration_seconds": 4225, "failed": 0, "passed": 6, "skipped": 0 @@ -26164,7 +26164,7 @@ "dashboard_link": "/linux/opensource_packages/geos", "job_url_resolution_status": "central_exact", "package_slug": "geos", - "production_refreshed_at": "2026-05-14T19:37:17.332576+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.552162+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -26176,15 +26176,15 @@ }, "run": { "attempt": "1", - "id": "25877359516", + "id": "26658670904", "job_name": "test-geos / test-geos", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:44Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991680" + "timestamp": "2026-05-29T19:47:53Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321617" }, "schema_version": "2.0", "tests": { @@ -26193,40 +26193,40 @@ "duration_seconds": 0, "name": "Test 1 - Check geos-config binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991680#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321617#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check geos-config version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991680#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321617#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check geos-config cflags", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991680#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321617#step:8:1" }, { - "duration_seconds": 4, + "duration_seconds": 2, "name": "Test 4 - Compile simple C++ program using GEOS", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991680#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321617#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Run compiled program", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991680#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321617#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991680#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321617#step:11:1" } ], - "duration_seconds": 4, + "duration_seconds": 2, "failed": 0, "passed": 6, "skipped": 0 @@ -26241,7 +26241,7 @@ "dashboard_link": "/linux/opensource_packages/geoserver", "job_url_resolution_status": "central_exact", "package_slug": "geoserver", - "production_refreshed_at": "2026-05-14T19:37:17.332795+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.552357+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -26255,15 +26255,15 @@ }, "run": { "attempt": "1", - "id": "25877415436", + "id": "26658721315", "job_name": "test-geoserver / test-geoserver", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:53Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180916" + "timestamp": "2026-05-29T19:48:55Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491639" }, "schema_version": "2.0", "tests": { @@ -26272,46 +26272,46 @@ "duration_seconds": 0, "name": "Test 1 - Check startup script exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180916#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491639#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check GeoServer version file", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180916#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491639#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check GeoServer core files", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180916#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491639#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Check GeoServer webapp files", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180916#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491639#step:9:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 5 - Check GeoServer startup help", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180916#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491639#step:10:1" }, { "comparison": "Current pinned GeoServer version 2.27.1 passed smoke tests in this run. Regression validation downloaded candidate version 2.27.2, and the extracted distribution reported version 2.27.2 while exposing the expected startup and webapp files on Arm64.", "current_version": "2.27.1", "decision": "next_install_validated", - "duration_seconds": 56, + "duration_seconds": 24, "latest_version": "2.27.2", "name": "Test 6 - Regression Validation", "next_installed_version": "2.27.2", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180916#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491639#step:11:1" } ], - "duration_seconds": 57, + "duration_seconds": 24, "failed": 0, "passed": 6, "skipped": 0 @@ -26326,7 +26326,7 @@ "dashboard_link": "/linux/opensource_packages/gerbv", "job_url_resolution_status": "central_exact", "package_slug": "gerbv", - "production_refreshed_at": "2026-05-14T19:37:17.333021+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.552549+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -26338,15 +26338,15 @@ }, "run": { "attempt": "1", - "id": "25877411197", + "id": "26658717942", "job_name": "test-gerbv / test-gerbv", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:49Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175579" + "timestamp": "2026-05-29T19:48:51Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479495" }, "schema_version": "2.0", "tests": { @@ -26355,37 +26355,37 @@ "duration_seconds": 0, "name": "Test 1 - Baseline package evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175579#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479495#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Installed runtime version", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175579#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479495#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Gerbv headless help", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175579#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479495#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Arm64 support gate", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175579#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479495#step:10:1" }, { "duration_seconds": 0, "name": "Test 5 - Bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175579#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479495#step:11:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175579#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479495#step:12:1" } ], "duration_seconds": 0, @@ -26403,7 +26403,7 @@ "dashboard_link": "/linux/opensource_packages/gerrit", "job_url_resolution_status": "central_exact", "package_slug": "gerrit", - "production_refreshed_at": "2026-05-14T19:37:17.333228+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.552734+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -26415,15 +26415,15 @@ }, "run": { "attempt": "1", - "id": "25877423406", + "id": "26658727918", "job_name": "test-gerrit / test-gerrit", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:01Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209946" + "timestamp": "2026-05-29T19:49:06Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515999" }, "schema_version": "2.0", "tests": { @@ -26432,37 +26432,37 @@ "duration_seconds": 0, "name": "Test 1 - Check Gerrit WAR exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209946#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515999#step:6:1" }, { "duration_seconds": 1, "name": "Test 2 - Check Gerrit version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209946#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515999#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check site initialization created gerrit.sh", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209946#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515999#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Check Gerrit config files exist", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209946#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515999#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Check Gerrit script usage and Arm64 runtime", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209946#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515999#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209946#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515999#step:11:1" } ], "duration_seconds": 1, @@ -26480,7 +26480,7 @@ "dashboard_link": "/linux/opensource_packages/ghdl", "job_url_resolution_status": "central_exact", "package_slug": "ghdl", - "production_refreshed_at": "2026-05-14T19:37:17.333427+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.552918+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -26493,15 +26493,15 @@ }, "run": { "attempt": "1", - "id": "25877411197", + "id": "26658717942", "job_name": "test-ghdl / test-ghdl", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:50Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175303" + "timestamp": "2026-05-29T19:48:51Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479743" }, "schema_version": "2.0", "tests": { @@ -26510,40 +26510,40 @@ "duration_seconds": 0, "name": "Test 1 - Baseline package evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175303#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479743#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Baseline version and release alignment", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175303#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479743#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Package-specific source or docs evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175303#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479743#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Arm64 support gate", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175303#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479743#step:10:1" }, { - "duration_seconds": 8, + "duration_seconds": 5, "name": "Test 5 - Bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175303#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479743#step:11:1" }, { "duration_seconds": 0, "name": "Test 6 - Regression Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175303#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479743#step:12:1" } ], - "duration_seconds": 8, + "duration_seconds": 5, "failed": 0, "passed": 6, "skipped": 0 @@ -26558,7 +26558,7 @@ "dashboard_link": "/linux/opensource_packages/git", "job_url_resolution_status": "central_exact", "package_slug": "git", - "production_refreshed_at": "2026-05-14T19:37:17.333636+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.553097+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -26570,15 +26570,15 @@ }, "run": { "attempt": "1", - "id": "25877406767", + "id": "26658714432", "job_name": "test-git / test-git", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:45Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155688" + "timestamp": "2026-05-29T19:48:48Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469547" }, "schema_version": "2.0", "tests": { @@ -26587,37 +26587,37 @@ "duration_seconds": 0, "name": "Test 1 - Check git binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155688#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469547#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check git version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155688#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469547#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check git help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155688#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469547#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Initialize a repository", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155688#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469547#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Configure user (local)", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155688#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469547#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155688#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469547#step:11:1" } ], "duration_seconds": 0, @@ -26635,7 +26635,7 @@ "dashboard_link": "/linux/opensource_packages/gitbook", "job_url_resolution_status": "central_exact", "package_slug": "gitbook", - "production_refreshed_at": "2026-05-14T19:37:17.333852+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.553300+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -26647,15 +26647,15 @@ }, "run": { "attempt": "1", - "id": "25877383844", + "id": "26658692522", "job_name": "test-gitbook / test-gitbook", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:12Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071815" + "timestamp": "2026-05-29T19:48:19Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394677" }, "schema_version": "2.0", "tests": { @@ -26664,37 +26664,37 @@ "duration_seconds": 0, "name": "Test 1 - Check gitbook binary", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071815#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394677#step:7:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 2 - Check version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071815#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394677#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071815#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394677#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify architecture", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071815#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394677#step:10:1" }, { - "duration_seconds": 2, + "duration_seconds": 3, "name": "Test 5 - Functional init and build", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071815#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394677#step:11:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071815#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394677#step:12:1" } ], "duration_seconds": 3, @@ -26712,7 +26712,7 @@ "dashboard_link": "/linux/opensource_packages/gitlab", "job_url_resolution_status": "central_exact", "package_slug": "gitlab", - "production_refreshed_at": "2026-05-14T19:37:17.334082+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.553485+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -26724,15 +26724,15 @@ }, "run": { "attempt": "1", - "id": "25877406767", + "id": "26658714432", "job_name": "test-gitlab / test-gitlab", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:43Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155389" + "timestamp": "2026-05-29T19:48:48Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469274" }, "schema_version": "2.0", "tests": { @@ -26741,37 +26741,37 @@ "duration_seconds": 0, "name": "Test 1 - Check gitlab-ctl binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155389#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469274#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check installed GitLab package version", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155389#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469274#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check gitlab-rake binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155389#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469274#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Check gitlab-rails binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155389#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469274#step:9:1" }, { "duration_seconds": 1, "name": "Test 5 - Check gitlab-ctl help, config file, and Arm64 runtime", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155389#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469274#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155389#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469274#step:11:1" } ], "duration_seconds": 1, @@ -26789,7 +26789,7 @@ "dashboard_link": "/linux/opensource_packages/gitness", "job_url_resolution_status": "central_exact", "package_slug": "gitness", - "production_refreshed_at": "2026-05-14T19:37:17.334286+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.553662+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "no_newer_stable_available", @@ -26803,15 +26803,15 @@ }, "run": { "attempt": "1", - "id": "25877419588", + "id": "26658724696", "job_name": "test-gitness / test-gitness", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:59Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192234" + "timestamp": "2026-05-29T19:49:01Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504149" }, "schema_version": "2.0", "tests": { @@ -26820,31 +26820,31 @@ "duration_seconds": 0, "name": "Test 1 - Check Gitness binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192234#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504149#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Gitness version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192234#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504149#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Gitness help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192234#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504149#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify Arm64 image and runner architecture", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192234#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504149#step:9:1" }, { "duration_seconds": 3, "name": "Test 5 - Functional validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192234#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504149#step:10:1" }, { "comparison": "Current pinned Gitness version 3.0.0 passed smoke tests in this run. No newer stable arm64 Docker tag (strict semver) is currently available for a real Test 6 upgrade validation.", @@ -26856,7 +26856,7 @@ "next_installed_version": "3.0.0", "regression_result": "No newer stable release available for Test 6", "status": "skipped", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192234#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504149#step:11:1" } ], "duration_seconds": 3, @@ -26874,7 +26874,7 @@ "dashboard_link": "/linux/opensource_packages/glance", "job_url_resolution_status": "central_exact", "package_slug": "glance", - "production_refreshed_at": "2026-05-14T19:37:17.334467+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.553836+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -26886,15 +26886,15 @@ }, "run": { "attempt": "1", - "id": "25877367704", + "id": "26658677990", "job_name": "test-glance / test-glance", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:55Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026991" + "timestamp": "2026-05-29T19:48:02Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347412" }, "schema_version": "2.0", "tests": { @@ -26903,37 +26903,37 @@ "duration_seconds": 0, "name": "Test 1 - Check glance-api binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026991#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347412#step:6:1" }, { "duration_seconds": 1, "name": "Test 2 - Check glance-api version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026991#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347412#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check glance-manage binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026991#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347412#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Check config directory or file", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026991#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347412#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Check glance-scrubber binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026991#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347412#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026991#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347412#step:11:1" } ], "duration_seconds": 1, @@ -26951,7 +26951,7 @@ "dashboard_link": "/linux/opensource_packages/glew", "job_url_resolution_status": "central_exact", "package_slug": "glew", - "production_refreshed_at": "2026-05-14T19:37:17.334646+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.554000+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -26963,15 +26963,15 @@ }, "run": { "attempt": "1", - "id": "25877419588", + "id": "26658724696", "job_name": "test-glew / test-glew", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:59Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192584" + "timestamp": "2026-05-29T19:49:01Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504161" }, "schema_version": "2.0", "tests": { @@ -26980,37 +26980,37 @@ "duration_seconds": 0, "name": "Test 1 - Check glewinfo binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192584#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504161#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check visualinfo binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192584#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504161#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check glew headers exist", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192584#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504161#step:8:1" }, { "duration_seconds": 1, "name": "Test 4 - Compile simple C program using GLEW", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192584#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504161#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Run compiled program (basic check)", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192584#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504161#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192584#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504161#step:11:1" } ], "duration_seconds": 1, @@ -27028,7 +27028,7 @@ "dashboard_link": "/linux/opensource_packages/glibc", "job_url_resolution_status": "central_exact", "package_slug": "glibc", - "production_refreshed_at": "2026-05-14T19:37:17.334964+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.554275+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -27040,15 +27040,15 @@ }, "run": { "attempt": "1", - "id": "25877411197", + "id": "26658717942", "job_name": "test-glibc / test-glibc", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:50Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175474" + "timestamp": "2026-05-29T19:48:51Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478599" }, "schema_version": "2.0", "tests": { @@ -27057,40 +27057,40 @@ "duration_seconds": 0, "name": "Test 1 - Check ldd binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175474#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478599#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check ldd version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175474#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478599#step:7:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 3 - Check libc.so location", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175474#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478599#step:8:1" }, { "duration_seconds": 1, "name": "Test 4 - Compile simple C program", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175474#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478599#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Run compiled program", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175474#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478599#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175474#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478599#step:11:1" } ], - "duration_seconds": 1, + "duration_seconds": 2, "failed": 0, "passed": 6, "skipped": 0 @@ -27105,7 +27105,7 @@ "dashboard_link": "/linux/opensource_packages/glog", "job_url_resolution_status": "central_exact", "package_slug": "glog", - "production_refreshed_at": "2026-05-14T19:37:17.335151+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.554466+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -27117,15 +27117,15 @@ }, "run": { "attempt": "1", - "id": "25877395502", + "id": "26658703674", "job_name": "test-glog / test-glog", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:27Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110060" + "timestamp": "2026-05-29T19:48:34Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432998" }, "schema_version": "2.0", "tests": { @@ -27134,37 +27134,37 @@ "duration_seconds": 0, "name": "Test 1 - Check pkg-config for libglog", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110060#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432998#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check glog headers exist", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110060#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432998#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check libglog.so exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110060#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432998#step:8:1" }, { "duration_seconds": 2, "name": "Test 4 - Compile simple C++ program using Glog", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110060#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432998#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Run compiled program", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110060#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432998#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110060#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432998#step:11:1" } ], "duration_seconds": 2, @@ -27182,7 +27182,7 @@ "dashboard_link": "/linux/opensource_packages/glusterfs", "job_url_resolution_status": "central_exact", "package_slug": "glusterfs", - "production_refreshed_at": "2026-05-14T19:37:17.335360+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.554646+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -27194,15 +27194,15 @@ }, "run": { "attempt": "1", - "id": "25877387746", + "id": "26658696365", "job_name": "test-glusterfs / test-glusterfs", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:16Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084468" + "timestamp": "2026-05-29T19:48:24Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407299" }, "schema_version": "2.0", "tests": { @@ -27211,37 +27211,37 @@ "duration_seconds": 0, "name": "Test 1 - Check gluster binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084468#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407299#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check gluster version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084468#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407299#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check glusterfsd binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084468#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407299#step:8:1" }, { "duration_seconds": 2, "name": "Test 4 - Check glusterd service status (optional)", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084468#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407299#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Check gluster help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084468#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407299#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084468#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407299#step:11:1" } ], "duration_seconds": 2, @@ -27259,7 +27259,7 @@ "dashboard_link": "/linux/opensource_packages/gluten", "job_url_resolution_status": "central_exact", "package_slug": "gluten", - "production_refreshed_at": "2026-05-14T19:37:17.335583+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.554821+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -27273,15 +27273,15 @@ }, "run": { "attempt": "1", - "id": "25877411197", + "id": "26658717942", "job_name": "test-gluten / test-gluten", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:48Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175723" + "timestamp": "2026-05-29T19:48:51Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479611" }, "schema_version": "2.0", "tests": { @@ -27290,46 +27290,46 @@ "duration_seconds": 0, "name": "Test 1 - Baseline package evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175723#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479611#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Baseline version and release alignment", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175723#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479611#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Package-specific source or docs evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175723#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479611#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Arm64 support gate", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175723#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479611#step:10:1" }, { - "duration_seconds": 65, + "duration_seconds": 74, "name": "Test 5 - Bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175723#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479611#step:11:1" }, { "comparison": "Test 6 reran a scoped Gluten Arm preflight against the next stable source candidate: Maven project discovery, gluten-core source/module validation, and root effective-POM resolution. Full Spark plus native Velox/ClickHouse backend runtime remains scoped to a heavier integration lane.", "current_version": "1.1.1", "decision": "limited_cpu_smoke_validated", - "duration_seconds": 29, + "duration_seconds": 26, "latest_version": "1.6.0", "name": "Test 6 - Regression Validation", "next_installed_version": "1.6.0", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175723#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479611#step:12:1" } ], - "duration_seconds": 29, + "duration_seconds": 26, "failed": 0, "passed": 6, "skipped": 0 @@ -27344,7 +27344,7 @@ "dashboard_link": "/linux/opensource_packages/gmp", "job_url_resolution_status": "central_exact", "package_slug": "gmp", - "production_refreshed_at": "2026-05-14T19:37:17.335793+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.555000+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -27356,54 +27356,54 @@ }, "run": { "attempt": "1", - "id": "25877363365", + "id": "26658674448", "job_name": "test-gmp / test-gmp", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:48Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000982" + "timestamp": "2026-05-29T19:47:56Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334859" }, "schema_version": "2.0", "tests": { "details": [ { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 1 - Check gmp.h header exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000982#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334859#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check libgmp.so exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000982#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334859#step:7:1" }, { "duration_seconds": 1, "name": "Test 3 - Compile simple C program using GMP", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000982#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334859#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Run compiled program", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000982#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334859#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Check gmpxx.h header exists (C++ wrapper)", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000982#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334859#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000982#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334859#step:11:1" } ], "duration_seconds": 1, @@ -27421,7 +27421,7 @@ "dashboard_link": "/linux/opensource_packages/gnucap", "job_url_resolution_status": "central_exact", "package_slug": "gnucap", - "production_refreshed_at": "2026-05-14T19:37:17.335999+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.555187+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -27434,15 +27434,15 @@ }, "run": { "attempt": "1", - "id": "25877411197", + "id": "26658717942", "job_name": "test-gnucap / test-gnucap", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:49Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175600" + "timestamp": "2026-05-29T19:48:53Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479990" }, "schema_version": "2.0", "tests": { @@ -27451,40 +27451,40 @@ "duration_seconds": 0, "name": "Test 1 - Baseline package evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175600#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479990#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Baseline version and release alignment", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175600#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479990#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Package-specific source or docs evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175600#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479990#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Arm64 support gate", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175600#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479990#step:10:1" }, { - "duration_seconds": 5, + "duration_seconds": 6, "name": "Test 5 - Bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175600#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479990#step:11:1" }, { "duration_seconds": 0, "name": "Test 6 - Regression Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175600#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479990#step:12:1" } ], - "duration_seconds": 5, + "duration_seconds": 6, "failed": 0, "passed": 6, "skipped": 0 @@ -27499,7 +27499,7 @@ "dashboard_link": "/linux/opensource_packages/gnutls", "job_url_resolution_status": "central_exact", "package_slug": "gnutls", - "production_refreshed_at": "2026-05-14T19:37:17.336179+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.555401+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -27511,15 +27511,15 @@ }, "run": { "attempt": "1", - "id": "25877423406", + "id": "26658727918", "job_name": "test-gnutls / test-gnutls", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:12Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209605" + "timestamp": "2026-05-29T19:49:05Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516308" }, "schema_version": "2.0", "tests": { @@ -27528,37 +27528,37 @@ "duration_seconds": 0, "name": "Test 1 - Check gnutls-cli binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209605#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516308#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check gnutls-cli version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209605#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516308#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check certtool binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209605#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516308#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Check gnutls headers exist", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209605#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516308#step:9:1" }, { "duration_seconds": 1, "name": "Test 5 - Compile simple C program using GnuTLS", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209605#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516308#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209605#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516308#step:11:1" } ], "duration_seconds": 1, @@ -27576,7 +27576,7 @@ "dashboard_link": "/linux/opensource_packages/godot", "job_url_resolution_status": "central_exact", "package_slug": "godot", - "production_refreshed_at": "2026-05-14T19:37:17.336377+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.555598+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -27588,15 +27588,15 @@ }, "run": { "attempt": "1", - "id": "25877415436", + "id": "26658721315", "job_name": "test-godot / test-godot", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:51Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181152" + "timestamp": "2026-05-29T19:48:57Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491872" }, "schema_version": "2.0", "tests": { @@ -27605,40 +27605,40 @@ "duration_seconds": 0, "name": "Test 1 - Baseline package evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181152#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491872#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Installed runtime version", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181152#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491872#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Godot headless help", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181152#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491872#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Arm64 support gate", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181152#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491872#step:10:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 5 - Bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181152#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491872#step:11:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181152#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491872#step:12:1" } ], - "duration_seconds": 0, + "duration_seconds": 1, "failed": 0, "passed": 6, "skipped": 0 @@ -27653,7 +27653,7 @@ "dashboard_link": "/linux/opensource_packages/golang", "job_url_resolution_status": "central_exact", "package_slug": "golang", - "production_refreshed_at": "2026-05-14T19:37:17.336590+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.555781+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -27667,15 +27667,15 @@ }, "run": { "attempt": "1", - "id": "25877387746", + "id": "26658696365", "job_name": "test-golang / test-golang", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:16Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084846" + "timestamp": "2026-05-29T19:48:24Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407966" }, "schema_version": "2.0", "tests": { @@ -27684,46 +27684,46 @@ "duration_seconds": 0, "name": "Test 1 - Check go binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084846#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407966#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check go version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084846#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407966#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check go env arm64 output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084846#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407966#step:8:1" }, { "duration_seconds": 3, "name": "Test 4 - Run simple Go program", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084846#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407966#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Build simple Go program", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084846#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407966#step:10:1" }, { "comparison": "Current pinned Go version 1.24.1 passed smoke tests in this run. Regression validation installed candidate version 1.24.2 on Arm64, and the candidate toolchain reported version 1.24.2 with GOARCH=arm64 after compiling and running a Go program.", "current_version": "1.24.1", "decision": "next_install_validated", - "duration_seconds": 5, + "duration_seconds": 8, "latest_version": "1.24.2", "name": "Test 6 - Regression Validation", "next_installed_version": "1.24.2", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084846#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407966#step:11:1" } ], - "duration_seconds": 8, + "duration_seconds": 11, "failed": 0, "passed": 6, "skipped": 0 @@ -27738,7 +27738,7 @@ "dashboard_link": "/linux/opensource_packages/googletest", "job_url_resolution_status": "central_exact", "package_slug": "googletest", - "production_refreshed_at": "2026-05-14T19:37:17.336814+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.555961+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -27750,15 +27750,15 @@ }, "run": { "attempt": "1", - "id": "25877392111", + "id": "26658699892", "job_name": "test-googletest / test-googletest", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:22Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095682" + "timestamp": "2026-05-29T19:48:30Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420567" }, "schema_version": "2.0", "tests": { @@ -27767,40 +27767,40 @@ "duration_seconds": 0, "name": "Test 1 - Check gtest headers exist", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095682#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420567#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check gmock headers exist", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095682#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420567#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check source directory exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095682#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420567#step:8:1" }, { - "duration_seconds": 3, + "duration_seconds": 7, "name": "Test 4 - Compile simple test program", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095682#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420567#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Run test program", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095682#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420567#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095682#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420567#step:11:1" } ], - "duration_seconds": 3, + "duration_seconds": 7, "failed": 0, "passed": 6, "skipped": 0 @@ -27815,7 +27815,7 @@ "dashboard_link": "/linux/opensource_packages/gperf", "job_url_resolution_status": "central_exact", "package_slug": "gperf", - "production_refreshed_at": "2026-05-14T19:37:17.337022+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.556129+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -27827,15 +27827,15 @@ }, "run": { "attempt": "1", - "id": "25877411197", + "id": "26658717942", "job_name": "test-gperf / test-gperf", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:50Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175234" + "timestamp": "2026-05-29T19:48:53Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479867" }, "schema_version": "2.0", "tests": { @@ -27844,37 +27844,37 @@ "duration_seconds": 0, "name": "Test 1 - Check gperf binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175234#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479867#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check gperf version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175234#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479867#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check gperf help command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175234#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479867#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Generate hash function from input file", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175234#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479867#step:9:1" }, { "duration_seconds": 1, "name": "Test 5 - Compile generated code", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175234#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479867#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175234#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479867#step:11:1" } ], "duration_seconds": 1, @@ -27892,7 +27892,7 @@ "dashboard_link": "/linux/opensource_packages/gperftools", "job_url_resolution_status": "central_exact", "package_slug": "gperftools", - "production_refreshed_at": "2026-05-14T19:37:17.337213+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.556318+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -27904,15 +27904,15 @@ }, "run": { "attempt": "1", - "id": "25877415436", + "id": "26658721315", "job_name": "test-gperftools / test-gperftools", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:54Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180952" + "timestamp": "2026-05-29T19:48:56Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491932" }, "schema_version": "2.0", "tests": { @@ -27921,40 +27921,40 @@ "duration_seconds": 0, "name": "Test 1 - Check pprof binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180952#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491932#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check pprof version/help", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180952#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491932#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check tcmalloc headers exist", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180952#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491932#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Check libtcmalloc.so exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180952#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491932#step:9:1" }, { "duration_seconds": 1, "name": "Test 5 - Compile simple C program using tcmalloc", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180952#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491932#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180952#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491932#step:11:1" } ], - "duration_seconds": 0, + "duration_seconds": 1, "failed": 0, "passed": 6, "skipped": 0 @@ -27969,7 +27969,7 @@ "dashboard_link": "/linux/opensource_packages/gradle", "job_url_resolution_status": "central_exact", "package_slug": "gradle", - "production_refreshed_at": "2026-05-14T19:37:17.337404+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.556501+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -27983,15 +27983,15 @@ }, "run": { "attempt": "1", - "id": "25877387746", + "id": "26658696365", "job_name": "test-gradle / test-gradle", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:16Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084720" + "timestamp": "2026-05-29T19:48:24Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407676" }, "schema_version": "2.0", "tests": { @@ -28000,31 +28000,31 @@ "duration_seconds": 0, "name": "Test 1 - Check Gradle binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084720#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407676#step:6:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 2 - Check Gradle version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084720#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407676#step:7:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 3 - Check Gradle help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084720#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407676#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify Arm64 Java runtime", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084720#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407676#step:9:1" }, { - "duration_seconds": 6, + "duration_seconds": 10, "name": "Test 5 - Functional validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084720#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407676#step:10:1" }, { "comparison": "Current pinned Gradle version 8.11 passed smoke tests in this run. Regression validation installed candidate version 9.5.1 on Arm64, and the candidate distribution reported version 9.5.1 and returned Gradle help output successfully.", @@ -28036,10 +28036,10 @@ "next_installed_version": "9.5.1", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084720#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407676#step:11:1" } ], - "duration_seconds": 9, + "duration_seconds": 13, "failed": 0, "passed": 6, "skipped": 0 @@ -28054,7 +28054,7 @@ "dashboard_link": "/linux/opensource_packages/grafana", "job_url_resolution_status": "central_exact", "package_slug": "grafana", - "production_refreshed_at": "2026-05-14T19:37:17.337626+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.556679+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -28066,15 +28066,15 @@ }, "run": { "attempt": "1", - "id": "25877423406", + "id": "26658727918", "job_name": "test-grafana / test-grafana", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:06Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210038" + "timestamp": "2026-05-29T19:49:06Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515942" }, "schema_version": "2.0", "tests": { @@ -28083,37 +28083,37 @@ "duration_seconds": 0, "name": "Test 1 - Check grafana-server binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210038#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515942#step:6:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 2 - Check Grafana version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210038#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515942#step:7:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 3 - Check Grafana help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210038#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515942#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Check default config and Arm64 binary", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210038#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515942#step:9:1" }, { "duration_seconds": 12, "name": "Test 5 - Functional validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210038#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515942#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210038#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515942#step:11:1" } ], "duration_seconds": 13, @@ -28131,7 +28131,7 @@ "dashboard_link": "/linux/opensource_packages/grafanalib", "job_url_resolution_status": "central_exact", "package_slug": "grafanalib", - "production_refreshed_at": "2026-05-14T19:37:17.337852+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.556850+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -28143,15 +28143,15 @@ }, "run": { "attempt": "1", - "id": "25877419588", + "id": "26658724696", "job_name": "test-grafanalib / test-grafanalib", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:09Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192543" + "timestamp": "2026-05-29T19:49:02Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503986" }, "schema_version": "2.0", "tests": { @@ -28160,37 +28160,37 @@ "duration_seconds": 0, "name": "Test 1 - Check python import", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192543#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503986#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check core classes import", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192543#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503986#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Create simple dashboard object", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192543#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503986#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Generate JSON from dashboard", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192543#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503986#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Generate dashboard target JSON", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192543#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503986#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192543#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503986#step:11:1" } ], "duration_seconds": 0, @@ -28208,7 +28208,7 @@ "dashboard_link": "/linux/opensource_packages/greenhouse", "job_url_resolution_status": "central_exact", "package_slug": "greenhouse", - "production_refreshed_at": "2026-05-14T19:37:17.338045+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.557017+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -28222,15 +28222,15 @@ }, "run": { "attempt": "1", - "id": "25877435852", + "id": "26658737633", "job_name": "test-greenhouse / test-greenhouse", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:15Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251769" + "timestamp": "2026-05-29T19:49:23Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550161" }, "schema_version": "2.0", "tests": { @@ -28239,31 +28239,31 @@ "duration_seconds": 0, "name": "Test 1 - Install Greenhouse Arm64 release artifact", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251769#step:5:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550161#step:5:1" }, { "duration_seconds": 0, "name": "Test 2 - Verify Arm64 binary", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251769#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550161#step:6:1" }, { "duration_seconds": 0, "name": "Test 3 - Check CLI help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251769#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550161#step:7:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 4 - Check CLI version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251769#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550161#step:8:1" }, { "duration_seconds": 0, "name": "Test 5 - Run bounded CLI smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251769#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550161#step:9:1" }, { "comparison": "Greenhouse candidate 0.11.1 downloaded, installed, and returned help/version output on the Arm64 runner.", @@ -28275,7 +28275,7 @@ "next_installed_version": "0.11.1", "regression_result": "Next version install validation passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251769#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550161#step:10:1" } ], "duration_seconds": 2, @@ -28293,7 +28293,7 @@ "dashboard_link": "/linux/opensource_packages/greenplum", "job_url_resolution_status": "central_exact", "package_slug": "greenplum", - "production_refreshed_at": "2026-05-14T19:37:17.338260+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.557191+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -28307,63 +28307,63 @@ }, "run": { "attempt": "1", - "id": "25877411197", + "id": "26658717942", "job_name": "test-greenplum / test-greenplum", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:57Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175414" + "timestamp": "2026-05-29T19:49:01Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479556" }, "schema_version": "2.0", "tests": { "details": [ { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 1 - Check exact source tag checkout", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175414#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479556#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Check source tree structure", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175414#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479556#step:8:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 3 - Compile GreenplumPython package tree", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175414#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479556#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175414#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479556#step:10:1" }, { "duration_seconds": 0, "name": "Test 5 - Check package metadata and README", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175414#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479556#step:11:1" }, { "comparison": "Current pinned GreenplumPython version 1.0.0-beta passed Tests 1-5, and the next newer stable source tag 1.0.0 passed equivalent source-tree and compile checks on Arm64.", "current_version": "1.0.0-beta", "decision": "next_install_validated", - "duration_seconds": 0, + "duration_seconds": 2, "latest_version": "1.0.0", "name": "Test 6 - Regression Validation", "next_installed_version": "1.0.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175414#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479556#step:12:1" } ], - "duration_seconds": 1, + "duration_seconds": 2, "failed": 0, "passed": 6, "skipped": 0 @@ -28378,7 +28378,7 @@ "dashboard_link": "/linux/opensource_packages/groff", "job_url_resolution_status": "central_exact", "package_slug": "groff", - "production_refreshed_at": "2026-05-14T19:37:17.338496+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.557416+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -28390,15 +28390,15 @@ }, "run": { "attempt": "1", - "id": "25877367704", + "id": "26658677990", "job_name": "test-groff / test-groff", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:55Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026860" + "timestamp": "2026-05-29T19:48:02Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346958" }, "schema_version": "2.0", "tests": { @@ -28407,37 +28407,37 @@ "duration_seconds": 0, "name": "Test 1 - Check groff binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026860#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346958#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check groff version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026860#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346958#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check nroff binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026860#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346958#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Check troff binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026860#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346958#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Process simple text input", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026860#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346958#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026860#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346958#step:11:1" } ], "duration_seconds": 0, @@ -28455,7 +28455,7 @@ "dashboard_link": "/linux/opensource_packages/gromacs", "job_url_resolution_status": "central_exact", "package_slug": "gromacs", - "production_refreshed_at": "2026-05-14T19:37:17.338705+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.557597+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -28467,15 +28467,15 @@ }, "run": { "attempt": "1", - "id": "25877411197", + "id": "26658717942", "job_name": "test-gromacs / test-gromacs", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:48Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174454" + "timestamp": "2026-05-29T19:48:51Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478667" }, "schema_version": "2.0", "tests": { @@ -28484,37 +28484,37 @@ "duration_seconds": 0, "name": "Test 1 - Check gmx binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174454#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478667#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check gmx version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174454#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478667#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check gmx help command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174454#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478667#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Run simple pdb2gmx test (dry run)", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174454#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478667#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Check library linking", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174454#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478667#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174454#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478667#step:11:1" } ], "duration_seconds": 0, @@ -28532,7 +28532,7 @@ "dashboard_link": "/linux/opensource_packages/groovy_grails", "job_url_resolution_status": "central_exact", "package_slug": "groovy_grails", - "production_refreshed_at": "2026-05-14T19:37:17.338919+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.557781+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -28546,15 +28546,15 @@ }, "run": { "attempt": "1", - "id": "25877363365", + "id": "26658674448", "job_name": "test-groovy_grails / test-groovy-grails", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:47Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000807" + "timestamp": "2026-05-29T19:47:58Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334550" }, "schema_version": "2.0", "tests": { @@ -28563,46 +28563,46 @@ "duration_seconds": 0, "name": "Test 1 - Check Groovy binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000807#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334550#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Grails binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000807#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334550#step:7:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 3 - Check Groovy version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000807#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334550#step:8:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 4 - Check Grails version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000807#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334550#step:9:1" }, { "duration_seconds": 3, "name": "Test 5 - Functional validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000807#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334550#step:10:1" }, { "comparison": "Current pinned Groovy/Grails baseline Groovy 4.0.30 / Grails 6.2.3 passed smoke tests in this run. Regression validation installed candidate versions Groovy 5.0.0 and Grails 7.0.0 on Arm64, and both candidates reported the expected versions while the Groovy script and bounded Grails help create-app path succeeded.", "current_version": "Groovy 4.0.30 / Grails 6.2.3", "decision": "next_install_validated", - "duration_seconds": 32, + "duration_seconds": 36, "latest_version": "Groovy 5.0.0 / Grails 7.0.0", "name": "Test 6 - Regression Validation", "next_installed_version": "Groovy 5.0.0 / Grails 7.0.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000807#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334550#step:11:1" } ], - "duration_seconds": 36, + "duration_seconds": 40, "failed": 0, "passed": 6, "skipped": 0 @@ -28617,7 +28617,7 @@ "dashboard_link": "/linux/opensource_packages/gtkwave", "job_url_resolution_status": "central_exact", "package_slug": "gtkwave", - "production_refreshed_at": "2026-05-14T19:37:17.339152+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.557962+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -28629,15 +28629,15 @@ }, "run": { "attempt": "1", - "id": "25877415436", + "id": "26658721315", "job_name": "test-gtkwave / test-gtkwave", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:52Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181006" + "timestamp": "2026-05-29T19:48:57Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491876" }, "schema_version": "2.0", "tests": { @@ -28646,37 +28646,37 @@ "duration_seconds": 0, "name": "Test 1 - Baseline package evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181006#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491876#step:7:1" }, { "duration_seconds": 1, "name": "Test 2 - Installed runtime version", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181006#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491876#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - GTKWave CLI tools help", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181006#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491876#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Arm64 support gate", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181006#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491876#step:10:1" }, { "duration_seconds": 0, "name": "Test 5 - Bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181006#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491876#step:11:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181006#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491876#step:12:1" } ], "duration_seconds": 1, @@ -28694,7 +28694,7 @@ "dashboard_link": "/linux/opensource_packages/guacamole", "job_url_resolution_status": "central_exact", "package_slug": "guacamole", - "production_refreshed_at": "2026-05-14T19:37:17.339358+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.558129+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -28706,15 +28706,15 @@ }, "run": { "attempt": "1", - "id": "25877406767", + "id": "26658714432", "job_name": "test-guacamole / test-guacamole", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:44Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154420" + "timestamp": "2026-05-29T19:48:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468588" }, "schema_version": "2.0", "tests": { @@ -28723,40 +28723,40 @@ "duration_seconds": 0, "name": "Test 1 - Check guacd binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154420#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468588#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check guacd version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154420#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468588#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check libguac headers exist", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154420#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468588#step:8:1" }, { - "duration_seconds": 3, + "duration_seconds": 2, "name": "Test 4 - Start guacd service (dry run)", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154420#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468588#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Check library linking", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154420#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468588#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154420#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468588#step:11:1" } ], - "duration_seconds": 3, + "duration_seconds": 2, "failed": 0, "passed": 6, "skipped": 0 @@ -28771,7 +28771,7 @@ "dashboard_link": "/linux/opensource_packages/gunicorn", "job_url_resolution_status": "central_exact", "package_slug": "gunicorn", - "production_refreshed_at": "2026-05-14T19:37:17.339574+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.558411+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -28783,15 +28783,15 @@ }, "run": { "attempt": "1", - "id": "25877363365", + "id": "26658674448", "job_name": "test-gunicorn / test-gunicorn", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:48Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001068" + "timestamp": "2026-05-29T19:47:56Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333881" }, "schema_version": "2.0", "tests": { @@ -28800,37 +28800,37 @@ "duration_seconds": 1, "name": "Test 1 - Check pip installation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001068#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333881#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Import Gunicorn in Python", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001068#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333881#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Gunicorn version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001068#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333881#step:8:1" }, { "duration_seconds": 1, "name": "Test 4 - Functional validation with WSGI app", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001068#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333881#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Request context and architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001068#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333881#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001068#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333881#step:11:1" } ], "duration_seconds": 2, @@ -28848,7 +28848,7 @@ "dashboard_link": "/linux/opensource_packages/gzip", "job_url_resolution_status": "central_exact", "package_slug": "gzip", - "production_refreshed_at": "2026-05-14T19:37:17.339885+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.558687+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -28860,15 +28860,15 @@ }, "run": { "attempt": "1", - "id": "25877392111", + "id": "26658699892", "job_name": "test-gzip / test-gzip", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:23Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095740" + "timestamp": "2026-05-29T19:48:29Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420894" }, "schema_version": "2.0", "tests": { @@ -28877,37 +28877,37 @@ "duration_seconds": 0, "name": "Test 1 - Check gzip binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095740#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420894#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check gzip version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095740#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420894#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Compress a file", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095740#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420894#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Decompress a file", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095740#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420894#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Test pipe compression", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095740#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420894#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095740#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420894#step:11:1" } ], "duration_seconds": 0, @@ -28925,7 +28925,7 @@ "dashboard_link": "/linux/opensource_packages/hadoop", "job_url_resolution_status": "central_exact", "package_slug": "hadoop", - "production_refreshed_at": "2026-05-14T19:37:17.340094+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.558927+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -28939,15 +28939,15 @@ }, "run": { "attempt": "1", - "id": "25877399008", + "id": "26658707245", "job_name": "test-hadoop / test-hadoop", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:40Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126183" + "timestamp": "2026-05-29T19:48:45Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445295" }, "schema_version": "2.0", "tests": { @@ -28956,46 +28956,46 @@ "duration_seconds": 0, "name": "Test 1 - Check hadoop binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126183#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445295#step:11:1" }, { "duration_seconds": 1, "name": "Test 2 - Check hadoop version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126183#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445295#step:12:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 3 - Check hdfs version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126183#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445295#step:13:1" }, { "duration_seconds": 0, "name": "Test 4 - Check Hadoop classpath and examples", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126183#step:14:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445295#step:14:1" }, { "duration_seconds": 1, "name": "Test 5 - Check native loader output and architecture", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126183#step:15:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445295#step:15:1" }, { "comparison": "Current pinned Hadoop version 3.3.6 passed smoke tests in this run. Regression validation installed candidate version 3.4.0 on Arm64, and both hadoop and hdfs reported 3.4.0 while the candidate classpath resolved successfully.", "current_version": "3.3.6", "decision": "next_install_validated", - "duration_seconds": 72, + "duration_seconds": 39, "latest_version": "3.4.0", "name": "Test 6 - Regression Validation", "next_installed_version": "3.4.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126183#step:16:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445295#step:16:1" } ], - "duration_seconds": 74, + "duration_seconds": 42, "failed": 0, "passed": 6, "skipped": 0 @@ -29010,7 +29010,7 @@ "dashboard_link": "/linux/opensource_packages/hal", "job_url_resolution_status": "central_exact", "package_slug": "hal", - "production_refreshed_at": "2026-05-14T19:37:17.340315+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.559130+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -29024,15 +29024,15 @@ }, "run": { "attempt": "1", - "id": "25877387746", + "id": "26658696365", "job_name": "test-hal / test-hal", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:16Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084636" + "timestamp": "2026-05-29T19:48:24Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407683" }, "schema_version": "2.0", "tests": { @@ -29041,46 +29041,46 @@ "duration_seconds": 0, "name": "Test 1 - Check hal binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084636#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407683#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check HAL version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084636#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407683#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check HAL help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084636#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407683#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Check built ARM64 executable", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084636#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407683#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Check runtime libraries and architecture", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084636#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407683#step:10:1" }, { "comparison": "Current pinned HAL version 4.4.0 passed smoke tests in this run. Regression validation built candidate version 4.4.1 from source on Arm64, and the resulting binary reported version v4.4.1 with the expected CLI help output.", "current_version": "4.4.0", "decision": "next_install_validated", - "duration_seconds": 357, + "duration_seconds": 362, "latest_version": "4.4.1", "name": "Test 6 - Regression Validation", "next_installed_version": "4.4.1", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084636#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407683#step:11:1" } ], - "duration_seconds": 357, + "duration_seconds": 362, "failed": 0, "passed": 6, "skipped": 0 @@ -29095,7 +29095,7 @@ "dashboard_link": "/linux/opensource_packages/haproxy", "job_url_resolution_status": "central_exact", "package_slug": "haproxy", - "production_refreshed_at": "2026-05-14T19:37:17.340541+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.559341+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -29107,15 +29107,15 @@ }, "run": { "attempt": "1", - "id": "25877359516", + "id": "26658670904", "job_name": "test-haproxy / test-haproxy", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:45Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991613" + "timestamp": "2026-05-29T19:47:53Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321524" }, "schema_version": "2.0", "tests": { @@ -29124,37 +29124,37 @@ "duration_seconds": 0, "name": "Test 1 - Check haproxy binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991613#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321524#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check haproxy version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991613#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321524#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Validate configuration file", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991613#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321524#step:8:1" }, { "duration_seconds": 1, "name": "Test 4 - Start HAProxy (dry run)", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991613#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321524#step:9:1" }, { "duration_seconds": 1, "name": "Test 5 - Check systemd service status", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991613#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321524#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991613#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321524#step:11:1" } ], "duration_seconds": 2, @@ -29172,7 +29172,7 @@ "dashboard_link": "/linux/opensource_packages/harbor", "job_url_resolution_status": "central_exact", "package_slug": "harbor", - "production_refreshed_at": "2026-05-14T19:37:17.340724+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.559529+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -29186,15 +29186,15 @@ }, "run": { "attempt": "1", - "id": "25877367704", + "id": "26658677990", "job_name": "test-harbor / test-harbor", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:55Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027060" + "timestamp": "2026-05-29T19:48:03Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347350" }, "schema_version": "2.0", "tests": { @@ -29203,46 +29203,46 @@ "duration_seconds": 0, "name": "Test 1 - Check Harbor install script exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027060#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347350#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Harbor configuration template exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027060#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347350#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Harbor prepare script", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027060#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347350#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Check common.sh exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027060#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347350#step:9:1" }, { - "duration_seconds": 15, + "duration_seconds": 16, "name": "Test 5 - Run Harbor prepare help path", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027060#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347350#step:10:1" }, { "comparison": "Current pinned Harbor version 2.12.4 passed smoke tests in this run. Regression validation downloaded and extracted candidate version 2.13.0 on Arm64, and the staged offline installer exposed the expected installation files.", "current_version": "2.12.4", "decision": "next_install_validated", - "duration_seconds": 7, + "duration_seconds": 10, "latest_version": "2.13.0", "name": "Test 6 - Regression Validation", "next_installed_version": "2.13.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027060#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347350#step:11:1" } ], - "duration_seconds": 22, + "duration_seconds": 26, "failed": 0, "passed": 6, "skipped": 0 @@ -29257,7 +29257,7 @@ "dashboard_link": "/linux/opensource_packages/harness", "job_url_resolution_status": "central_exact", "package_slug": "harness", - "production_refreshed_at": "2026-05-14T19:37:17.341382+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.560061+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -29269,15 +29269,15 @@ }, "run": { "attempt": "1", - "id": "25877392111", + "id": "26658699892", "job_name": "test-harness / test-harness", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:23Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095750" + "timestamp": "2026-05-29T19:48:30Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420610" }, "schema_version": "2.0", "tests": { @@ -29286,37 +29286,37 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095750#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420610#step:6:1" }, { "duration_seconds": 3, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095750#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420610#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095750#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420610#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095750#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420610#step:9:1" }, { - "duration_seconds": 2, + "duration_seconds": 3, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095750#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420610#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095750#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420610#step:11:1" } ], "duration_seconds": 5, @@ -29334,7 +29334,7 @@ "dashboard_link": "/linux/opensource_packages/harness-cli", "job_url_resolution_status": "central_exact", "package_slug": "harness-cli", - "production_refreshed_at": "2026-05-14T19:37:17.340965+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.559711+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -29348,15 +29348,15 @@ }, "run": { "attempt": "1", - "id": "25877363365", + "id": "26658674448", "job_name": "test-harness-cli / test-harness-cli", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:46Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001114" + "timestamp": "2026-05-29T19:47:56Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334545" }, "schema_version": "2.0", "tests": { @@ -29365,31 +29365,31 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001114#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334545#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001114#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334545#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Help Or Configuration Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001114#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334545#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001114#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334545#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001114#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334545#step:10:1" }, { "comparison": "Current pinned Harness CLI version 1.3.11 passed smoke tests in this run. Regression validation installed candidate version 1.3.12 on Arm64, and the candidate binary reported version 1.3.12 while its artifact help path stayed functional.", @@ -29401,7 +29401,7 @@ "next_installed_version": "1.3.12", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001114#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334545#step:11:1" } ], "duration_seconds": 1, @@ -29419,7 +29419,7 @@ "dashboard_link": "/linux/opensource_packages/harness-go-sdk", "job_url_resolution_status": "central_exact", "package_slug": "harness-go-sdk", - "production_refreshed_at": "2026-05-14T19:37:17.341177+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.559889+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -29427,19 +29427,19 @@ }, "package": { "name": "Harness Go SDK", - "version": "v0.7.27" + "version": "v0.7.30" }, "run": { "attempt": "1", - "id": "25877367704", + "id": "26658677990", "job_name": "test-harness-go-sdk / test-harness-go-sdk", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:57Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026095" + "timestamp": "2026-05-29T19:48:02Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575345909" }, "schema_version": "2.0", "tests": { @@ -29448,37 +29448,37 @@ "duration_seconds": 0, "name": "Test 1 - Check Go installation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026095#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575345909#step:6:1" }, { "duration_seconds": 3, "name": "Test 2 - Check SDK import", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026095#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575345909#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Run the test app", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026095#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575345909#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Check go.mod content", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026095#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575345909#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Check module download", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026095#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575345909#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026095#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575345909#step:11:1" } ], "duration_seconds": 3, @@ -29496,7 +29496,7 @@ "dashboard_link": "/linux/opensource_packages/harvester", "job_url_resolution_status": "central_exact", "package_slug": "harvester", - "production_refreshed_at": "2026-05-14T19:37:17.341566+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.560232+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -29510,15 +29510,15 @@ }, "run": { "attempt": "1", - "id": "25877406767", + "id": "26658714432", "job_name": "test-harvester / test-harvester", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:42Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154335" + "timestamp": "2026-05-29T19:48:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469144" }, "schema_version": "2.0", "tests": { @@ -29527,46 +29527,46 @@ "duration_seconds": 0, "name": "Test 1 - Check Arm64 Release Artifacts Exist", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154335#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469144#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Release Version Mapping", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154335#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469144#step:7:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 3 - Check Artifact Inspection Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154335#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469144#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154335#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469144#step:9:1" }, { "duration_seconds": 25, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154335#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469144#step:10:1" }, { "comparison": "Current pinned Harvester release v1.4.0 passed smoke tests in this run. Regression validation downloaded the upstream Arm64 release artifacts for v1.4.1, verified the kernel/initrd asset types, and observed a real Arm64 QEMU boot log from the candidate initrd.", "current_version": "1.4.0", "decision": "next_install_validated", - "duration_seconds": 26, + "duration_seconds": 29, "latest_version": "1.4.1", "name": "Test 6 - Regression Validation", "next_installed_version": "1.4.1", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154335#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469144#step:11:1" } ], - "duration_seconds": 51, + "duration_seconds": 55, "failed": 0, "passed": 6, "skipped": 0 @@ -29581,7 +29581,7 @@ "dashboard_link": "/linux/opensource_packages/haskell-nix", "job_url_resolution_status": "central_exact", "package_slug": "haskell-nix", - "production_refreshed_at": "2026-05-14T19:37:17.341787+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.560451+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -29595,15 +29595,15 @@ }, "run": { "attempt": "1", - "id": "25877415436", + "id": "26658721315", "job_name": "test-haskell-nix / test-haskell-nix", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:51Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180635" + "timestamp": "2026-05-29T19:48:57Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491552" }, "schema_version": "2.0", "tests": { @@ -29612,46 +29612,46 @@ "duration_seconds": 0, "name": "Test 1 - Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180635#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491552#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180635#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491552#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Help Output Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180635#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491552#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180635#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491552#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180635#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491552#step:10:1" }, { "comparison": "Current pinned Haskell.nix nix-tools release 0.3.1 passed smoke tests in this run. Regression validation downloaded bundle 0.3.2 on Arm64 and executed the candidate plan-to-nix and hpack binaries successfully from the isolated release archive.", "current_version": "0.3.1", "decision": "next_install_validated", - "duration_seconds": 3, + "duration_seconds": 4, "latest_version": "0.3.2", "name": "Test 6 - Regression Validation", "next_installed_version": "0.3.2", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180635#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491552#step:11:1" } ], - "duration_seconds": 3, + "duration_seconds": 4, "failed": 0, "passed": 6, "skipped": 0 @@ -29666,7 +29666,7 @@ "dashboard_link": "/linux/opensource_packages/hawking", "job_url_resolution_status": "central_exact", "package_slug": "hawking", - "production_refreshed_at": "2026-05-14T19:37:17.341998+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.560631+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -29680,15 +29680,15 @@ }, "run": { "attempt": "1", - "id": "25877363365", + "id": "26658674448", "job_name": "test-hawking / test-hawking", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:46Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000911" + "timestamp": "2026-05-29T19:47:56Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334744" }, "schema_version": "2.0", "tests": { @@ -29697,31 +29697,31 @@ "duration_seconds": 0, "name": "Test 1 - Check jar existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000911#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334744#step:7:1" }, { "duration_seconds": 2, "name": "Test 2 - Check project version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000911#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334744#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Check configuration asset", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000911#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334744#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000911#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334744#step:10:1" }, { "duration_seconds": 7, "name": "Test 5 - Functional validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000911#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334744#step:11:1" }, { "comparison": "Current pinned Hawking release 0.1.9 passed the Maven build and demo smoke on Arm64. Regression validation built upstream source tag 0.2.0, and the candidate project reported version 0.2.0 while successfully running HawkingDemo on Arm64. Upstream still publishes 0.1.9 as the latest release, so Test 6 validates the newer source tag path explicitly.", @@ -29733,7 +29733,7 @@ "next_installed_version": "0.2.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000911#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334744#step:12:1" } ], "duration_seconds": 24, @@ -29751,7 +29751,7 @@ "dashboard_link": "/linux/opensource_packages/haystack", "job_url_resolution_status": "central_exact", "package_slug": "haystack", - "production_refreshed_at": "2026-05-14T19:37:17.342207+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.560808+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -29763,15 +29763,15 @@ }, "run": { "attempt": "1", - "id": "25877415436", + "id": "26658721315", "job_name": "test-haystack / test-haystack", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:53Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181024" + "timestamp": "2026-05-29T19:48:58Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491878" }, "schema_version": "2.0", "tests": { @@ -29780,37 +29780,37 @@ "duration_seconds": 1, "name": "Test 1 - Check Python import", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181024#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491878#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check basic component import", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181024#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491878#step:7:1" }, { "duration_seconds": 1, "name": "Test 3 - Create a simple Pipeline", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181024#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491878#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Check Document import", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181024#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491878#step:9:1" }, { "duration_seconds": 1, "name": "Test 5 - Check pip dependencies", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181024#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491878#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181024#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491878#step:11:1" } ], "duration_seconds": 3, @@ -29828,7 +29828,7 @@ "dashboard_link": "/linux/opensource_packages/hazelcast", "job_url_resolution_status": "central_exact", "package_slug": "hazelcast", - "production_refreshed_at": "2026-05-14T19:37:17.342399+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.560992+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -29842,15 +29842,15 @@ }, "run": { "attempt": "1", - "id": "25877375677", + "id": "26658685142", "job_name": "test-hazelcast / test-hazelcast", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:03Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044610" + "timestamp": "2026-05-29T19:48:11Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370497" }, "schema_version": "2.0", "tests": { @@ -29859,46 +29859,46 @@ "duration_seconds": 0, "name": "Test 1 - Check start script exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044610#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370497#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check exact core JAR version", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044610#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370497#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check config file", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044610#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370497#step:8:1" }, { "duration_seconds": 1, "name": "Test 4 - Run CLI help", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044610#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370497#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Start Hazelcast briefly", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044610#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370497#step:10:1" }, { "comparison": "Current pinned Hazelcast version 5.5.0 passed the baseline startup smoke on Arm64. Regression validation downloaded the official Hazelcast 5.6.0 release, verified the extracted Arm64 distribution layout, confirmed the exact core JAR version, and ran hz-cli --help successfully.", "current_version": "5.5.0", "decision": "next_install_validated", - "duration_seconds": 19, + "duration_seconds": 15, "latest_version": "5.6.0", "name": "Test 6 - Regression Validation", "next_installed_version": "5.6.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044610#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370497#step:11:1" } ], - "duration_seconds": 20, + "duration_seconds": 16, "failed": 0, "passed": 6, "skipped": 0 @@ -29913,7 +29913,7 @@ "dashboard_link": "/linux/opensource_packages/hbase", "job_url_resolution_status": "central_exact", "package_slug": "hbase", - "production_refreshed_at": "2026-05-14T19:37:17.342639+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.561188+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -29927,15 +29927,15 @@ }, "run": { "attempt": "1", - "id": "25877375677", + "id": "26658685142", "job_name": "test-hbase / test-hbase", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:02Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045182" + "timestamp": "2026-05-29T19:48:11Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370331" }, "schema_version": "2.0", "tests": { @@ -29944,46 +29944,46 @@ "duration_seconds": 0, "name": "Test 1 - Check hbase script exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045182#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370331#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Check exact version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045182#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370331#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Check configuration files", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045182#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370331#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Check exact server jar", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045182#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370331#step:10:1" }, { "duration_seconds": 21, "name": "Test 5 - Start HBase master briefly", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045182#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370331#step:11:1" }, { "comparison": "Current pinned HBase version 2.5.13-hadoop3 passed the baseline startup smoke on Arm64. Regression validation downloaded the next newer official HBase 2.5.14 hadoop3 binary distribution, and the candidate reported version 2.5.14-hadoop3 while exposing the expected server JAR and configuration files.", "current_version": "2.5.13-hadoop3", "decision": "next_install_validated", - "duration_seconds": 25, + "duration_seconds": 27, "latest_version": "2.5.14", "name": "Test 6 - Regression Validation", "next_installed_version": "2.5.14-hadoop3", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045182#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370331#step:12:1" } ], - "duration_seconds": 46, + "duration_seconds": 48, "failed": 0, "passed": 6, "skipped": 0 @@ -29998,7 +29998,7 @@ "dashboard_link": "/linux/opensource_packages/hdfs", "job_url_resolution_status": "central_exact", "package_slug": "hdfs", - "production_refreshed_at": "2026-05-14T19:37:17.342865+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.561400+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -30012,15 +30012,15 @@ }, "run": { "attempt": "1", - "id": "25877375677", + "id": "26658685142", "job_name": "test-hdfs / test-hdfs", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:02Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045151" + "timestamp": "2026-05-29T19:48:11Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370318" }, "schema_version": "2.0", "tests": { @@ -30029,46 +30029,46 @@ "duration_seconds": 0, "name": "Test 1 - Check hdfs binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045151#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370318#step:6:1" }, { "duration_seconds": 1, "name": "Test 2 - Check exact hdfs version", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045151#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370318#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check HDFS jar layout", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045151#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370318#step:8:1" }, { "duration_seconds": 1, "name": "Test 4 - Check hdfs config and classpath", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045151#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370318#step:9:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 5 - Check namenode help and architecture", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045151#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370318#step:10:1" }, { "comparison": "Current pinned HDFS version 3.3.6 passed the baseline CLI validation on Arm64. Regression validation downloaded the official Hadoop 3.4.3 aarch64 distribution, and the candidate HDFS binary reported version 3.4.3 while exposing the expected HDFS JAR layout, config, and classpath.", "current_version": "3.3.6", "decision": "next_install_validated", - "duration_seconds": 24, + "duration_seconds": 34, "latest_version": "3.4.3", "name": "Test 6 - Regression Validation", "next_installed_version": "3.4.3", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045151#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370318#step:11:1" } ], - "duration_seconds": 26, + "duration_seconds": 37, "failed": 0, "passed": 6, "skipped": 0 @@ -30083,7 +30083,7 @@ "dashboard_link": "/linux/opensource_packages/heartbeat", "job_url_resolution_status": "central_exact", "package_slug": "heartbeat", - "production_refreshed_at": "2026-05-14T19:37:17.343079+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.561593+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -30097,15 +30097,15 @@ }, "run": { "attempt": "1", - "id": "25877395502", + "id": "26658703674", "job_name": "test-heartbeat / test-heartbeat", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:25Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109530" + "timestamp": "2026-05-29T19:48:34Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432274" }, "schema_version": "2.0", "tests": { @@ -30114,46 +30114,46 @@ "duration_seconds": 0, "name": "Test 1 - Check Heartbeat binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109530#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432274#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Heartbeat version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109530#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432274#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Heartbeat help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109530#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432274#step:8:1" }, { - "duration_seconds": 5, + "duration_seconds": 6, "name": "Test 4 - Check Heartbeat configuration", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109530#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432274#step:9:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 5 - Export config and verify architecture", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109530#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432274#step:10:1" }, { "comparison": "Current pinned Heartbeat version 9.0.4 passed smoke tests in this run. Regression validation installed candidate version 9.0.5 on Arm64, and the extracted binary reported version 9.0.5 while successfully passing help, config, and export checks.", "current_version": "9.0.4", "decision": "next_install_validated", - "duration_seconds": 10, + "duration_seconds": 11, "latest_version": "9.0.5", "name": "Test 6 - Regression Validation", "next_installed_version": "9.0.5", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109530#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432274#step:11:1" } ], - "duration_seconds": 16, + "duration_seconds": 17, "failed": 0, "passed": 6, "skipped": 0 @@ -30168,7 +30168,7 @@ "dashboard_link": "/linux/opensource_packages/heketi", "job_url_resolution_status": "central_exact", "package_slug": "heketi", - "production_refreshed_at": "2026-05-14T19:37:17.343289+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.561777+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -30182,15 +30182,15 @@ }, "run": { "attempt": "1", - "id": "25877363365", + "id": "26658674448", "job_name": "test-heketi / test-heketi", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:47Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000998" + "timestamp": "2026-05-29T19:47:56Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334972" }, "schema_version": "2.0", "tests": { @@ -30199,46 +30199,46 @@ "duration_seconds": 0, "name": "Test 1 - Check Heketi binaries exist", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000998#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334972#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check exact Heketi version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000998#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334972#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000998#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334972#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify architecture and binary format", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000998#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334972#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Validate offline database import/export", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000998#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334972#step:10:1" }, { "comparison": "Current pinned Heketi release v10.3.0 passed smoke tests in this run. Regression validation installed candidate release v10.4.0-release-10 on Arm64, confirmed exact server and CLI versions, and re-ran the offline database import/export path successfully.", "current_version": "v10.3.0", "decision": "next_install_validated", - "duration_seconds": 3, + "duration_seconds": 1, "latest_version": "v10.4.0-release-10", "name": "Test 6 - Regression Validation", "next_installed_version": "v10.4.0-release-10", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000998#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334972#step:11:1" } ], - "duration_seconds": 3, + "duration_seconds": 1, "failed": 0, "passed": 6, "skipped": 0 @@ -30253,7 +30253,7 @@ "dashboard_link": "/linux/opensource_packages/helm", "job_url_resolution_status": "central_exact", "package_slug": "helm", - "production_refreshed_at": "2026-05-14T19:37:17.343507+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.561954+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -30267,15 +30267,15 @@ }, "run": { "attempt": "1", - "id": "25877399008", + "id": "26658707245", "job_name": "test-helm / test-helm", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:31Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125992" + "timestamp": "2026-05-29T19:48:38Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445331" }, "schema_version": "2.0", "tests": { @@ -30284,31 +30284,31 @@ "duration_seconds": 0, "name": "Test 1 - Check helm binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125992#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445331#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125992#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445331#step:7:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 3 - Check help command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125992#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445331#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Create a sample chart", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125992#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445331#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Lint the sample chart", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125992#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445331#step:10:1" }, { "comparison": "Current pinned Helm version v3.17.1 passed smoke tests in this run. Regression validation installed candidate version 3.17.2 on Arm64, and the installed binary reported version 3.17.2.", @@ -30320,10 +30320,10 @@ "next_installed_version": "3.17.2", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125992#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445331#step:11:1" } ], - "duration_seconds": 1, + "duration_seconds": 0, "failed": 0, "passed": 6, "skipped": 0 @@ -30338,7 +30338,7 @@ "dashboard_link": "/linux/opensource_packages/highwayhash", "job_url_resolution_status": "central_exact", "package_slug": "highwayhash", - "production_refreshed_at": "2026-05-14T19:37:17.343728+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.562124+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -30350,15 +30350,15 @@ }, "run": { "attempt": "1", - "id": "25877411197", + "id": "26658717942", "job_name": "test-highwayhash / test-highwayhash", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:48Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174437" + "timestamp": "2026-05-29T19:48:51Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478675" }, "schema_version": "2.0", "tests": { @@ -30367,37 +30367,37 @@ "duration_seconds": 0, "name": "Test 1 - Check headers exist", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174437#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478675#step:6:1" }, { "duration_seconds": 10, "name": "Test 2 - Check library file exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174437#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478675#step:7:1" }, { "duration_seconds": 2, "name": "Test 3 - Compile C++ program", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174437#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478675#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Run compiled program", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174437#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478675#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Deterministic runtime validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174437#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478675#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174437#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478675#step:11:1" } ], "duration_seconds": 12, @@ -30415,7 +30415,7 @@ "dashboard_link": "/linux/opensource_packages/hiredis", "job_url_resolution_status": "central_exact", "package_slug": "hiredis", - "production_refreshed_at": "2026-05-14T19:37:17.343941+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.562311+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -30427,15 +30427,15 @@ }, "run": { "attempt": "1", - "id": "25877403044", + "id": "26658710721", "job_name": "test-hiredis / test-hiredis", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:38Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140693" + "timestamp": "2026-05-29T19:48:44Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456144" }, "schema_version": "2.0", "tests": { @@ -30444,40 +30444,40 @@ "duration_seconds": 0, "name": "Test 1 - Check Hiredis header exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140693#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456144#step:6:1" }, { - "duration_seconds": 9, + "duration_seconds": 8, "name": "Test 2 - Check Hiredis library exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140693#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456144#step:7:1" }, { "duration_seconds": 1, "name": "Test 3 - Compile Hiredis Redis client smoke program", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140693#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456144#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140693#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456144#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Run Hiredis Redis roundtrip", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140693#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456144#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140693#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456144#step:11:1" } ], - "duration_seconds": 10, + "duration_seconds": 9, "failed": 0, "passed": 6, "skipped": 0 @@ -30492,7 +30492,7 @@ "dashboard_link": "/linux/opensource_packages/hive", "job_url_resolution_status": "central_exact", "package_slug": "hive", - "production_refreshed_at": "2026-05-14T19:37:17.344163+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.562491+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -30506,15 +30506,15 @@ }, "run": { "attempt": "1", - "id": "25877379982", + "id": "26658688675", "job_name": "test-hive / test-hive", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:22Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056517" + "timestamp": "2026-05-29T19:48:30Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380667" }, "schema_version": "2.0", "tests": { @@ -30523,46 +30523,46 @@ "duration_seconds": 0, "name": "Test 1 - Check Hive scripts exist", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056517#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380667#step:13:1" }, { "duration_seconds": 0, "name": "Test 2 - Check exact Hive version", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056517#step:14:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380667#step:14:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Hive jar layout", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056517#step:15:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380667#step:15:1" }, { "duration_seconds": 1, "name": "Test 4 - Check Hive help commands", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056517#step:16:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380667#step:16:1" }, { "duration_seconds": 1, "name": "Test 5 - Check Beeline help and architecture", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056517#step:17:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380667#step:17:1" }, { "comparison": "Current pinned Hive version 4.0.0 passed the baseline script and jar validation on Arm64. Regression validation installed candidate version 4.2.0, and the extracted Hive distribution reported 4.2.0 while exposing the expected versioned jars, schematool help, and beeline help paths.", "current_version": "4.0.0", "decision": "next_install_validated", - "duration_seconds": 41, + "duration_seconds": 34, "latest_version": "4.2.0", "name": "Test 6 - Regression Validation", "next_installed_version": "4.2.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056517#step:18:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380667#step:18:1" } ], - "duration_seconds": 43, + "duration_seconds": 36, "failed": 0, "passed": 6, "skipped": 0 @@ -30577,7 +30577,7 @@ "dashboard_link": "/linux/opensource_packages/holoscan-sdk", "job_url_resolution_status": "central_exact", "package_slug": "holoscan-sdk", - "production_refreshed_at": "2026-05-14T19:37:17.344347+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.562663+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -30591,15 +30591,15 @@ }, "run": { "attempt": "1", - "id": "25877415436", + "id": "26658721315", "job_name": "test-holoscan-sdk / test-holoscan-sdk", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:52Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181097" + "timestamp": "2026-05-29T19:48:57Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491955" }, "schema_version": "2.0", "tests": { @@ -30608,31 +30608,31 @@ "duration_seconds": 0, "name": "Test 1 - Baseline package evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181097#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491955#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Baseline version and release alignment", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181097#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491955#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Package-specific source or docs evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181097#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491955#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Arm64 support gate", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181097#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491955#step:10:1" }, { "duration_seconds": 0, "name": "Test 5 - Run scoped Arm preflight proof", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181097#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491955#step:11:1" }, { "comparison": "Test 6 limited_cpu_smoke_validated: reran the same bounded scoped Arm source/compile/import/help/manifest preflight against the next stable candidate. This is CPU-side preflight evidence only; no GPU/CUDA driver/runtime, accelerator execution, Kubernetes cluster, or full product runtime is claimed.", @@ -30644,7 +30644,7 @@ "next_installed_version": "4.2.0", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181097#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491955#step:12:1" } ], "duration_seconds": 2, @@ -30662,7 +30662,7 @@ "dashboard_link": "/linux/opensource_packages/horizon-eda", "job_url_resolution_status": "central_exact", "package_slug": "horizon-eda", - "production_refreshed_at": "2026-05-14T19:37:17.344544+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.562832+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -30676,15 +30676,15 @@ }, "run": { "attempt": "1", - "id": "25877415436", + "id": "26658721315", "job_name": "test-horizon-eda / test-horizon-eda", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:53Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181054" + "timestamp": "2026-05-29T19:48:56Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491951" }, "schema_version": "2.0", "tests": { @@ -30693,46 +30693,46 @@ "duration_seconds": 0, "name": "Test 1 - Baseline package evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181054#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491951#step:7:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 2 - Baseline version and release alignment", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181054#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491951#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Package-specific source or docs evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181054#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491951#step:9:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 4 - Arm64 support gate", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181054#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491951#step:10:1" }, { - "duration_seconds": 22, + "duration_seconds": 16, "name": "Test 5 - Bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181054#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491951#step:11:1" }, { "comparison": "Ran the next Horizon EDA candidate's STM32 pin-conversion tooling and generated plus syntax-compiled its help catalog C++ on Arm64. Full GUI project editing remains outside this bounded preflight.", "current_version": "1.0.0-1build1", "decision": "limited_cpu_smoke_validated", - "duration_seconds": 2, + "duration_seconds": 3, "latest_version": "2.7.2", "name": "Test 6 - Regression Validation", "next_installed_version": "2.7.2", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181054#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491951#step:12:1" } ], - "duration_seconds": 3, + "duration_seconds": 4, "failed": 0, "passed": 6, "skipped": 0 @@ -30747,7 +30747,7 @@ "dashboard_link": "/linux/opensource_packages/horovod-uber", "job_url_resolution_status": "central_exact", "package_slug": "horovod-uber", - "production_refreshed_at": "2026-05-14T19:37:17.344925+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.563139+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -30760,15 +30760,15 @@ }, "run": { "attempt": "1", - "id": "25877371674", + "id": "26658681575", "job_name": "test-horovod-uber / test-horovod-uber", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:58Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031866" + "timestamp": "2026-05-29T19:48:07Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358304" }, "schema_version": "2.0", "tests": { @@ -30777,37 +30777,37 @@ "duration_seconds": 0, "name": "Test 1 - Check horovodrun exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031866#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358304#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check exact version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031866#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358304#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check horovodrun help", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031866#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358304#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify Arm64 and MPI path", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031866#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358304#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Import Horovod runner modules", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031866#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358304#step:10:1" }, { "duration_seconds": 0, "name": "Test 6 - Regression Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031866#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358304#step:11:1" } ], "duration_seconds": 0, @@ -30825,7 +30825,7 @@ "dashboard_link": "/linux/opensource_packages/hping", "job_url_resolution_status": "central_exact", "package_slug": "hping", - "production_refreshed_at": "2026-05-14T19:37:17.345119+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.563342+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -30837,15 +30837,15 @@ }, "run": { "attempt": "1", - "id": "25877371674", + "id": "26658681575", "job_name": "test-hping / test-hping", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:59Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031816" + "timestamp": "2026-05-29T19:48:07Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358371" }, "schema_version": "2.0", "tests": { @@ -30854,40 +30854,40 @@ "duration_seconds": 0, "name": "Test 1 - Check hping3 binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031816#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358371#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check package metadata version", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031816#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358371#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check runtime version/help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031816#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358371#step:8:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 4 - Verify Arm64 binary format", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031816#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358371#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional packet craft dry-run", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031816#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358371#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031816#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358371#step:11:1" } ], - "duration_seconds": 0, + "duration_seconds": 1, "failed": 0, "passed": 6, "skipped": 0 @@ -30902,7 +30902,7 @@ "dashboard_link": "/linux/opensource_packages/htop", "job_url_resolution_status": "central_exact", "package_slug": "htop", - "production_refreshed_at": "2026-05-14T19:37:17.345341+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.563539+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -30916,15 +30916,15 @@ }, "run": { "attempt": "1", - "id": "25877387746", + "id": "26658696365", "job_name": "test-htop / test-htop", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:15Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084891" + "timestamp": "2026-05-29T19:48:25Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407373" }, "schema_version": "2.0", "tests": { @@ -30933,46 +30933,46 @@ "duration_seconds": 0, "name": "Test 1 - Check htop binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084891#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407373#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check exact version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084891#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407373#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check htop help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084891#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407373#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify Arm64 binary format", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084891#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407373#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional validation with tree view", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084891#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407373#step:10:1" }, { "comparison": "Current pinned htop version 3.4.0 passed smoke tests in this run. Regression validation built candidate source release 3.4.1 on Arm64, and the resulting binary reported version 3.4.1 as a real Arm64 executable.", "current_version": "3.4.0", "decision": "next_install_validated", - "duration_seconds": 7, + "duration_seconds": 8, "latest_version": "3.4.1", "name": "Test 6 - Regression Validation", "next_installed_version": "3.4.1", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084891#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407373#step:11:1" } ], - "duration_seconds": 7, + "duration_seconds": 8, "failed": 0, "passed": 6, "skipped": 0 @@ -30987,7 +30987,7 @@ "dashboard_link": "/linux/opensource_packages/httpcomponents-client", "job_url_resolution_status": "central_exact", "package_slug": "httpcomponents-client", - "production_refreshed_at": "2026-05-14T19:37:17.345530+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.563726+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -31001,15 +31001,15 @@ }, "run": { "attempt": "1", - "id": "25877359516", + "id": "26658670904", "job_name": "test-httpcomponents-client / test-httpcomponents-client", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:46Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990099" + "timestamp": "2026-05-29T19:47:54Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321718" }, "schema_version": "2.0", "tests": { @@ -31018,46 +31018,46 @@ "duration_seconds": 0, "name": "Test 1 - Check client jars exist", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990099#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321718#step:8:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 2 - Compile Java client", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990099#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321718#step:9:1" }, { - "duration_seconds": 2, + "duration_seconds": 3, "name": "Test 3 - Run loopback HTTP request", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990099#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321718#step:10:1" }, { "duration_seconds": 0, "name": "Test 4 - Check expected client classes", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990099#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321718#step:11:1" }, { "duration_seconds": 0, "name": "Test 5 - Check dependency jars and Arm64 runner", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990099#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321718#step:12:1" }, { "comparison": "Current pinned Apache HttpComponents Client version 5.4 passed smoke tests in this run. Regression validation installed candidate version 5.6 on Arm64, and the extracted client artifact reported version 5.6 while completing a real loopback HTTP request.", "current_version": "5.4", "decision": "next_install_validated", - "duration_seconds": 4, + "duration_seconds": 3, "latest_version": "5.6", "name": "Test 6 - Regression Validation", "next_installed_version": "5.6", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990099#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321718#step:13:1" } ], - "duration_seconds": 7, + "duration_seconds": 6, "failed": 0, "passed": 6, "skipped": 0 @@ -31072,7 +31072,7 @@ "dashboard_link": "/linux/opensource_packages/httpd", "job_url_resolution_status": "central_exact", "package_slug": "httpd", - "production_refreshed_at": "2026-05-14T19:37:17.345770+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.563908+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -31085,15 +31085,15 @@ }, "run": { "attempt": "1", - "id": "25877355625", + "id": "26658667828", "job_name": "test-httpd / test-httpd", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:38Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976571" + "timestamp": "2026-05-29T19:47:50Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308834" }, "schema_version": "2.0", "tests": { @@ -31102,37 +31102,37 @@ "duration_seconds": 0, "name": "Test 1 - Check httpd binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976571#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308834#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Validate baseline version", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976571#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308834#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check config syntax", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976571#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308834#step:8:1" }, { "duration_seconds": 2, "name": "Test 4 - Start server and curl localhost", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976571#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308834#step:9:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 5 - Stop server and verify Arm64 binary", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976571#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308834#step:10:1" }, { "duration_seconds": 0, "name": "Test 6 - Regression Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976571#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308834#step:11:1" } ], "duration_seconds": 2, @@ -31150,7 +31150,7 @@ "dashboard_link": "/linux/opensource_packages/hue", "job_url_resolution_status": "central_exact", "package_slug": "hue", - "production_refreshed_at": "2026-05-14T19:37:17.345968+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.564085+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -31164,15 +31164,15 @@ }, "run": { "attempt": "1", - "id": "25877399008", + "id": "26658707245", "job_name": "test-hue / test-hue", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:31Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125653" + "timestamp": "2026-05-29T19:48:39Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445942" }, "schema_version": "2.0", "tests": { @@ -31181,46 +31181,46 @@ "duration_seconds": 0, "name": "Test 1 - Check baseline source tree", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125653#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445942#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Check release tag version", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125653#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445942#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Check build and container assets", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125653#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445942#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125653#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445942#step:10:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional source validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125653#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445942#step:11:1" }, { "comparison": "Hue candidate 4.11.0 cloned successfully on Arm64, compiled package-specific Python app modules, and exercised the Hue app registry CLI surface. This is a bounded Hue preflight, not a full Hadoop-backed deployment.", "current_version": "4.10.0", "decision": "limited_cpu_smoke_validated", - "duration_seconds": 15, + "duration_seconds": 16, "latest_version": "4.11.0", "name": "Test 6 - Regression Validation", "next_installed_version": "4.11.0", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125653#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445942#step:12:1" } ], - "duration_seconds": 15, + "duration_seconds": 16, "failed": 0, "passed": 6, "skipped": 0 @@ -31235,7 +31235,7 @@ "dashboard_link": "/linux/opensource_packages/huggingface_trasformers", "job_url_resolution_status": "central_exact", "package_slug": "huggingface_trasformers", - "production_refreshed_at": "2026-05-14T19:37:17.346188+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.564296+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -31243,19 +31243,19 @@ }, "package": { "name": "Transformers (Hugging Face)", - "version": "5.8.1" + "version": "5.9.0" }, "run": { "attempt": "1", - "id": "25877383844", + "id": "26658692522", "job_name": "test-huggingface_trasformers / test-huggingface_trasformers", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:13Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071530" + "timestamp": "2026-05-29T19:48:19Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394251" }, "schema_version": "2.0", "tests": { @@ -31264,37 +31264,37 @@ "duration_seconds": 1, "name": "Test 1 - Check module import", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071530#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394251#step:6:1" }, { "duration_seconds": 1, "name": "Test 2 - Check version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071530#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394251#step:7:1" }, { "duration_seconds": 1, "name": "Test 3 - Check configuration API", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071530#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394251#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071530#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394251#step:9:1" }, { "duration_seconds": 1, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071530#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394251#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071530#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394251#step:11:1" } ], "duration_seconds": 4, @@ -31312,7 +31312,7 @@ "dashboard_link": "/linux/opensource_packages/iceberg", "job_url_resolution_status": "central_exact", "package_slug": "iceberg", - "production_refreshed_at": "2026-05-14T19:37:17.346370+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.564500+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -31326,15 +31326,15 @@ }, "run": { "attempt": "1", - "id": "25877427741", + "id": "26658731236", "job_name": "test-iceberg / test-iceberg", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:17Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048219053" + "timestamp": "2026-05-29T19:49:11Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529736" }, "schema_version": "2.0", "tests": { @@ -31343,46 +31343,46 @@ "duration_seconds": 0, "name": "Test 1 - Baseline package evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048219053#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529736#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Baseline version and release alignment", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048219053#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529736#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Package-specific source or docs evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048219053#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529736#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Arm64 support gate", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048219053#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529736#step:10:1" }, { "duration_seconds": 0, "name": "Test 5 - Bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048219053#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529736#step:11:1" }, { "comparison": "A bounded Arm64 CPU-side source probe validated the next Apache Iceberg candidate checkout and package identity. This does not run a full Gradle build or engine integration test.", "current_version": "1.1.0", "decision": "limited_cpu_smoke_validated", - "duration_seconds": 2, + "duration_seconds": 1, "latest_version": "1.10.1", "name": "Test 6 - Regression Validation", "next_installed_version": "1.10.1", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048219053#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529736#step:12:1" } ], - "duration_seconds": 2, + "duration_seconds": 1, "failed": 0, "passed": 6, "skipped": 0 @@ -31397,7 +31397,7 @@ "dashboard_link": "/linux/opensource_packages/icu", "job_url_resolution_status": "central_exact", "package_slug": "icu", - "production_refreshed_at": "2026-05-14T19:37:17.346584+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.564682+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -31409,15 +31409,15 @@ }, "run": { "attempt": "1", - "id": "25877367704", + "id": "26658677990", "job_name": "test-icu / test-icu", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:54Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026047" + "timestamp": "2026-05-29T19:48:03Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575345940" }, "schema_version": "2.0", "tests": { @@ -31426,37 +31426,37 @@ "duration_seconds": 0, "name": "Test 1 - Check uconv binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026047#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575345940#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check uconv version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026047#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575345940#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check uconv help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026047#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575345940#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026047#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575345940#step:9:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026047#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575345940#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026047#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575345940#step:11:1" } ], "duration_seconds": 0, @@ -31474,7 +31474,7 @@ "dashboard_link": "/linux/opensource_packages/ignite", "job_url_resolution_status": "central_exact", "package_slug": "ignite", - "production_refreshed_at": "2026-05-14T19:37:17.346809+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.564856+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -31488,15 +31488,15 @@ }, "run": { "attempt": "1", - "id": "25877395502", + "id": "26658703674", "job_name": "test-ignite / test-ignite", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:26Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110180" + "timestamp": "2026-05-29T19:48:33Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433102" }, "schema_version": "2.0", "tests": { @@ -31505,31 +31505,31 @@ "duration_seconds": 0, "name": "Test 1 - Check Ignite binaries exist", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110180#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433102#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check ignite version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110180#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433102#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check ignited version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110180#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433102#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Validate Ignite CLI help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110180#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433102#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110180#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433102#step:10:1" }, { "comparison": "Current pinned Ignite version 0.9.0 passed smoke tests in this run. Regression validation downloaded the next official Arm64 release 0.10.0, and both candidate binaries reported version 0.10.0 while exposing the expected CLI and daemon help output on Arm64.", @@ -31541,7 +31541,7 @@ "next_installed_version": "0.10.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110180#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433102#step:11:1" } ], "duration_seconds": 1, @@ -31559,7 +31559,7 @@ "dashboard_link": "/linux/opensource_packages/igniteui", "job_url_resolution_status": "central_exact", "package_slug": "igniteui", - "production_refreshed_at": "2026-05-14T19:37:17.347043+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.565035+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "current_is_latest_stable", @@ -31573,15 +31573,15 @@ }, "run": { "attempt": "1", - "id": "25877406767", + "id": "26658714432", "job_name": "test-igniteui / test-igniteui", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:49Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154363" + "timestamp": "2026-05-29T19:48:54Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468589" }, "schema_version": "2.0", "tests": { @@ -31590,31 +31590,31 @@ "duration_seconds": 0, "name": "Test 1 - Artifact existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154363#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468589#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Version check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154363#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468589#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Package metadata validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154363#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468589#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154363#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468589#step:10:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 5 - Functional validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154363#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468589#step:11:1" }, { "comparison": "Baseline Ignite UI 25.1.3 parsed its shipped browser bundles and ran a jsdom/jQuery preflight on Arm64; npm did not report a newer stable candidate for Test 6.", @@ -31626,10 +31626,10 @@ "next_installed_version": "not_installed", "regression_result": "No newer stable Ignite UI version is available from npm", "status": "skipped", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154363#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468589#step:12:1" } ], - "duration_seconds": 1, + "duration_seconds": 0, "failed": 0, "passed": 5, "skipped": 1 @@ -31644,7 +31644,7 @@ "dashboard_link": "/linux/opensource_packages/impala", "job_url_resolution_status": "central_exact", "package_slug": "impala", - "production_refreshed_at": "2026-05-14T19:37:17.347250+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.565211+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "no_newer_stable_available", @@ -31658,15 +31658,15 @@ }, "run": { "attempt": "1", - "id": "25877375677", + "id": "26658685142", "job_name": "test-impala / test-impala", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:03Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044637" + "timestamp": "2026-05-29T19:48:12Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370619" }, "schema_version": "2.0", "tests": { @@ -31675,31 +31675,31 @@ "duration_seconds": 0, "name": "Test 1 - Check Impala server binaries exist", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044637#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370619#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check impala-shell version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044637#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370619#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check impala-shell help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044637#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370619#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044637#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370619#step:9:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 5 - Check impalad version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044637#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370619#step:10:1" }, { "comparison": "Current pinned Impala version 4.5.0 passed smoke tests in this run and already matches the newest stable Arm64 package release in the tested lane.", @@ -31711,7 +31711,7 @@ "next_installed_version": "not_installed", "regression_result": "No newer stable version available for Arm64 regression validation", "status": "skipped", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044637#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370619#step:11:1" } ], "duration_seconds": 0, @@ -31729,7 +31729,7 @@ "dashboard_link": "/linux/opensource_packages/in-toto", "job_url_resolution_status": "central_exact", "package_slug": "in-toto", - "production_refreshed_at": "2026-05-14T19:37:17.347432+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.565429+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -31741,15 +31741,15 @@ }, "run": { "attempt": "1", - "id": "25877363365", + "id": "26658674448", "job_name": "test-in-toto / test-in-toto", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:48Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000726" + "timestamp": "2026-05-29T19:47:56Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334898" }, "schema_version": "2.0", "tests": { @@ -31758,40 +31758,40 @@ "duration_seconds": 0, "name": "Test 1 - Check in-toto-run binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000726#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334898#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check in-toto-verify binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000726#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334898#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000726#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334898#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Check help command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000726#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334898#step:9:1" }, { - "duration_seconds": 1, + "duration_seconds": 2, "name": "Test 5 - Generate key (if possible)", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000726#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334898#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000726#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334898#step:11:1" } ], - "duration_seconds": 1, + "duration_seconds": 2, "failed": 0, "passed": 6, "skipped": 0 @@ -31806,7 +31806,7 @@ "dashboard_link": "/linux/opensource_packages/influxdb", "job_url_resolution_status": "central_exact", "package_slug": "influxdb", - "production_refreshed_at": "2026-05-14T19:37:17.347609+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.565618+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -31818,15 +31818,15 @@ }, "run": { "attempt": "1", - "id": "25877406767", + "id": "26658714432", "job_name": "test-influxdb / test-influxdb", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:44Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155598" + "timestamp": "2026-05-29T19:48:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469075" }, "schema_version": "2.0", "tests": { @@ -31835,40 +31835,40 @@ "duration_seconds": 0, "name": "Test 1 - Artifact Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155598#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469075#step:6:1" }, { "duration_seconds": 1, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155598#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469075#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Help Output Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155598#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469075#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155598#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469075#step:9:1" }, { - "duration_seconds": 4, + "duration_seconds": 5, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155598#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469075#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155598#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469075#step:11:1" } ], - "duration_seconds": 5, + "duration_seconds": 6, "failed": 0, "passed": 6, "skipped": 0 @@ -31883,7 +31883,7 @@ "dashboard_link": "/linux/opensource_packages/infracost", "job_url_resolution_status": "central_exact", "package_slug": "infracost", - "production_refreshed_at": "2026-05-14T19:37:17.347846+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.565793+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -31897,15 +31897,15 @@ }, "run": { "attempt": "1", - "id": "25877406767", + "id": "26658714432", "job_name": "test-infracost / test-infracost", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:47Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155365" + "timestamp": "2026-05-29T19:48:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469231" }, "schema_version": "2.0", "tests": { @@ -31914,31 +31914,31 @@ "duration_seconds": 0, "name": "Test 1 - Check Infracost binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155365#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469231#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155365#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469231#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155365#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469231#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155365#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469231#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155365#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469231#step:10:1" }, { "comparison": "Current pinned Infracost version 0.10.41 passed smoke tests in this run. Regression validation downloaded candidate version 0.10.42 on Arm64, and the candidate binary reported version 0.10.42 and returned help output successfully.", @@ -31950,7 +31950,7 @@ "next_installed_version": "0.10.42", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155365#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469231#step:11:1" } ], "duration_seconds": 2, @@ -31968,7 +31968,7 @@ "dashboard_link": "/linux/opensource_packages/iniParser", "job_url_resolution_status": "central_exact", "package_slug": "iniParser", - "production_refreshed_at": "2026-05-14T19:37:17.348068+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.565977+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -31980,15 +31980,15 @@ }, "run": { "attempt": "1", - "id": "25877411197", + "id": "26658717942", "job_name": "test-iniparser / test-iniparser", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:49Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175599" + "timestamp": "2026-05-29T19:48:52Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480124" }, "schema_version": "2.0", "tests": { @@ -31997,37 +31997,37 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175599#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480124#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175599#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480124#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Help Output or Configuration", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175599#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480124#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175599#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480124#step:9:1" }, { "duration_seconds": 1, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175599#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480124#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175599#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480124#step:11:1" } ], "duration_seconds": 1, @@ -32045,7 +32045,7 @@ "dashboard_link": "/linux/opensource_packages/iotop", "job_url_resolution_status": "central_exact", "package_slug": "iotop", - "production_refreshed_at": "2026-05-14T19:37:17.348269+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.566150+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -32059,15 +32059,15 @@ }, "run": { "attempt": "1", - "id": "25877415436", + "id": "26658721315", "job_name": "test-iotop / test-iotop", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:49Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180628" + "timestamp": "2026-05-29T19:48:57Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491600" }, "schema_version": "2.0", "tests": { @@ -32076,31 +32076,31 @@ "duration_seconds": 0, "name": "Test 1 - Check Iotop binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180628#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491600#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180628#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491600#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180628#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491600#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180628#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491600#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180628#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491600#step:10:1" }, { "comparison": "Current pinned Iotop version 1.18 passed smoke tests in this run. Regression validation built candidate version 1.31 on Arm64, and the candidate binary reported version 1.31 and completed a real batch-mode run successfully.", @@ -32112,7 +32112,7 @@ "next_installed_version": "1.31", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180628#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491600#step:11:1" } ], "duration_seconds": 3, @@ -32130,7 +32130,7 @@ "dashboard_link": "/linux/opensource_packages/iperf", "job_url_resolution_status": "central_exact", "package_slug": "iperf", - "production_refreshed_at": "2026-05-14T19:37:17.348460+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.566346+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -32144,15 +32144,15 @@ }, "run": { "attempt": "1", - "id": "25877379982", + "id": "26658688675", "job_name": "test-iperf / test-iperf", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:04Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056526" + "timestamp": "2026-05-29T19:48:15Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575379795" }, "schema_version": "2.0", "tests": { @@ -32161,46 +32161,46 @@ "duration_seconds": 0, "name": "Test 1 - Check Iperf binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056526#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575379795#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056526#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575379795#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056526#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575379795#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056526#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575379795#step:9:1" }, { "duration_seconds": 3, "name": "Test 5 - Functional validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056526#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575379795#step:10:1" }, { "comparison": "Current pinned Iperf version 3.16 passed smoke tests in this run. Regression validation built candidate version 3.20 on Arm64, and the candidate binary reported version 3.20 and completed a real localhost throughput test successfully.", "current_version": "3.16", "decision": "next_install_validated", - "duration_seconds": 9, + "duration_seconds": 10, "latest_version": "3.20", "name": "Test 6 - Regression Validation", "next_installed_version": "3.20", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056526#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575379795#step:11:1" } ], - "duration_seconds": 12, + "duration_seconds": 13, "failed": 0, "passed": 6, "skipped": 0 @@ -32215,7 +32215,7 @@ "dashboard_link": "/linux/opensource_packages/ipvsadm", "job_url_resolution_status": "central_exact", "package_slug": "ipvsadm", - "production_refreshed_at": "2026-05-14T19:37:17.348699+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.566523+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -32227,15 +32227,15 @@ }, "run": { "attempt": "1", - "id": "25877411197", + "id": "26658717942", "job_name": "test-ipvsadm / test-ipvsadm", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:49Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175274" + "timestamp": "2026-05-29T19:48:52Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479647" }, "schema_version": "2.0", "tests": { @@ -32244,37 +32244,37 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175274#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479647#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175274#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479647#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175274#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479647#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175274#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479647#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175274#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479647#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175274#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479647#step:11:1" } ], "duration_seconds": 0, @@ -32292,7 +32292,7 @@ "dashboard_link": "/linux/opensource_packages/ironcore", "job_url_resolution_status": "central_exact", "package_slug": "ironcore", - "production_refreshed_at": "2026-05-14T19:37:17.348935+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.566698+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -32306,15 +32306,15 @@ }, "run": { "attempt": "1", - "id": "25877435852", + "id": "26658737633", "job_name": "test-ironcore / test-ironcore", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:18Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251813" + "timestamp": "2026-05-29T19:49:20Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550164" }, "schema_version": "2.0", "tests": { @@ -32323,31 +32323,31 @@ "duration_seconds": 0, "name": "Test 1 - Download baseline source tag", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251813#step:5:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550164#step:5:1" }, { "duration_seconds": 0, "name": "Test 2 - Verify expected source layout", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251813#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550164#step:6:1" }, { "duration_seconds": 0, "name": "Test 3 - Validate Arm64 image manifests", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251813#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550164#step:7:1" }, { "duration_seconds": 0, "name": "Test 4 - Pull baseline Arm64 images", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251813#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550164#step:8:1" }, { "duration_seconds": 0, "name": "Test 5 - Inspect baseline images on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251813#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550164#step:9:1" }, { "comparison": "IronCore candidate image(s) expose linux/arm64 manifests and pull successfully.", @@ -32359,10 +32359,10 @@ "next_installed_version": "0.3.0", "regression_result": "Next image validation passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251813#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550164#step:10:1" } ], - "duration_seconds": 19, + "duration_seconds": 21, "failed": 0, "passed": 6, "skipped": 0 @@ -32377,7 +32377,7 @@ "dashboard_link": "/linux/opensource_packages/ironic", "job_url_resolution_status": "central_exact", "package_slug": "ironic", - "production_refreshed_at": "2026-05-14T19:37:17.349136+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.566881+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -32389,15 +32389,15 @@ }, "run": { "attempt": "1", - "id": "25877411197", + "id": "26658717942", "job_name": "test-ironic / test-ironic", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:49Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175610" + "timestamp": "2026-05-29T19:48:53Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479930" }, "schema_version": "2.0", "tests": { @@ -32406,37 +32406,37 @@ "duration_seconds": 0, "name": "Test 1 - Wheel install and entry points", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175610#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479930#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Version metadata exact match", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175610#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479930#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Top-level package import", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175610#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479930#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175610#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479930#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Installed package metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175610#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479930#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175610#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479930#step:11:1" } ], "duration_seconds": 0, @@ -32454,7 +32454,7 @@ "dashboard_link": "/linux/opensource_packages/irsim", "job_url_resolution_status": "central_exact", "package_slug": "irsim", - "production_refreshed_at": "2026-05-14T19:37:17.349345+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.567054+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "no_newer_stable_available", @@ -32468,15 +32468,15 @@ }, "run": { "attempt": "1", - "id": "25877427741", + "id": "26658731236", "job_name": "test-irsim / test-irsim", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:15Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218858" + "timestamp": "2026-05-29T19:49:11Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529859" }, "schema_version": "2.0", "tests": { @@ -32485,31 +32485,31 @@ "duration_seconds": 0, "name": "Test 1 - Baseline package evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218858#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529859#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Baseline version and release alignment", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218858#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529859#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Package-specific source or docs evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218858#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529859#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Arm64 support gate", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218858#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529859#step:10:1" }, { "duration_seconds": 0, "name": "Test 5 - Bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218858#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529859#step:11:1" }, { "comparison": "Current pinned IRSIM baseline 9.7.82-2 maps to upstream stable tag 9.7.82, and no newer stable upstream tag is available for a genuine next-version Arm64 validation. Tests 1-5 remain the bounded source/configure proof for this package.", @@ -32521,7 +32521,7 @@ "next_installed_version": "not_installed", "regression_result": "No newer stable release available for Test 6", "status": "skipped", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218858#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529859#step:12:1" } ], "duration_seconds": 0, @@ -32539,7 +32539,7 @@ "dashboard_link": "/linux/opensource_packages/isa-l", "job_url_resolution_status": "central_exact", "package_slug": "isa-l", - "production_refreshed_at": "2026-05-14T19:37:17.349558+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.567228+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -32553,15 +32553,15 @@ }, "run": { "attempt": "1", - "id": "25877395502", + "id": "26658703674", "job_name": "test-isa-l / test-isa-l", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:29Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110108" + "timestamp": "2026-05-29T19:48:34Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432912" }, "schema_version": "2.0", "tests": { @@ -32570,31 +32570,31 @@ "duration_seconds": 0, "name": "Test 1 - Header and Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110108#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432912#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110108#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432912#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Help Output or Configuration", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110108#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432912#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110108#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432912#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110108#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432912#step:10:1" }, { "comparison": "Current pinned ISA-L source release 2.31.1 built and passed its Arm64 smoke checks, and regression validation built next release 2.32.0 from the official source tarball, installed it into an isolated prefix, validated pkg-config metadata and igzip help output, and compiled and ran the CRC32 consumer program successfully.", @@ -32606,7 +32606,7 @@ "next_installed_version": "2.32.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110108#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432912#step:11:1" } ], "duration_seconds": 11, @@ -32624,7 +32624,7 @@ "dashboard_link": "/linux/opensource_packages/istio", "job_url_resolution_status": "central_exact", "package_slug": "istio", - "production_refreshed_at": "2026-05-14T19:37:17.349763+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.567429+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -32638,15 +32638,15 @@ }, "run": { "attempt": "1", - "id": "25877371674", + "id": "26658681575", "job_name": "test-istio / test-istio", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:58Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031862" + "timestamp": "2026-05-29T19:48:07Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358551" }, "schema_version": "2.0", "tests": { @@ -32655,46 +32655,46 @@ "duration_seconds": 0, "name": "Test 1 - Check istioctl binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031862#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358551#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031862#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358551#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031862#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358551#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Analyze configuration (empty/default)", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031862#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358551#step:9:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 5 - Validate manifest (if possible)", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031862#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358551#step:10:1" }, { "comparison": "Current pinned Istio version 1.24.0 passed smoke tests in this run. Regression validation installed candidate version 1.24.1 on Arm64, and the installed binary reported version 1.24.1.", "current_version": "1.24.0", "decision": "next_install_validated", - "duration_seconds": 0, + "duration_seconds": 2, "latest_version": "1.24.1", "name": "Test 6 - Regression Validation", "next_installed_version": "1.24.1", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031862#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358551#step:11:1" } ], - "duration_seconds": 1, + "duration_seconds": 2, "failed": 0, "passed": 6, "skipped": 0 @@ -32709,7 +32709,7 @@ "dashboard_link": "/linux/opensource_packages/itp", "job_url_resolution_status": "central_exact", "package_slug": "itp", - "production_refreshed_at": "2026-05-14T19:37:17.350062+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.567700+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -32721,15 +32721,15 @@ }, "run": { "attempt": "1", - "id": "25877423406", + "id": "26658727918", "job_name": "test-itp / test-itp", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:05Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210309" + "timestamp": "2026-05-29T19:49:06Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515888" }, "schema_version": "2.0", "tests": { @@ -32738,37 +32738,37 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210309#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515888#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210309#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515888#step:7:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 3 - Check Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210309#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515888#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210309#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515888#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210309#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515888#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210309#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515888#step:11:1" } ], "duration_seconds": 0, @@ -32786,7 +32786,7 @@ "dashboard_link": "/linux/opensource_packages/iverilog", "job_url_resolution_status": "central_exact", "package_slug": "iverilog", - "production_refreshed_at": "2026-05-14T19:37:17.350274+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.567880+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -32798,15 +32798,15 @@ }, "run": { "attempt": "1", - "id": "25877427741", + "id": "26658731236", "job_name": "test-iverilog / test-iverilog", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:14Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218739" + "timestamp": "2026-05-29T19:49:10Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529693" }, "schema_version": "2.0", "tests": { @@ -32815,40 +32815,40 @@ "duration_seconds": 0, "name": "Test 1 - Check iverilog and vvp binaries", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218739#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529693#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Check iverilog version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218739#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529693#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Check iverilog help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218739#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529693#step:9:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 4 - Compile a minimal Verilog design", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218739#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529693#step:10:1" }, { "duration_seconds": 0, "name": "Test 5 - Run compiled Verilog with vvp", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218739#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529693#step:11:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218739#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529693#step:12:1" } ], - "duration_seconds": 0, + "duration_seconds": 1, "failed": 0, "passed": 6, "skipped": 0 @@ -32863,7 +32863,7 @@ "dashboard_link": "/linux/opensource_packages/jaeger", "job_url_resolution_status": "central_exact", "package_slug": "jaeger", - "production_refreshed_at": "2026-05-14T19:37:17.350474+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.568053+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -32877,15 +32877,15 @@ }, "run": { "attempt": "1", - "id": "25877367704", + "id": "26658677990", "job_name": "test-jaeger / test-jaeger", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:56Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026693" + "timestamp": "2026-05-29T19:48:03Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347574" }, "schema_version": "2.0", "tests": { @@ -32894,46 +32894,46 @@ "duration_seconds": 0, "name": "Test 1 - Check jaeger binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026693#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347574#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026693#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347574#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026693#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347574#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026693#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347574#step:9:1" }, { "duration_seconds": 2, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026693#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347574#step:10:1" }, { "comparison": "Current pinned Jaeger version v2.14.0 passed smoke tests in this run. Regression validation installed candidate version v2.14.1 on Arm64, and the staged binary reported version v2.14.1.", "current_version": "v2.14.0", "decision": "next_install_validated", - "duration_seconds": 1, + "duration_seconds": 2, "latest_version": "v2.14.1", "name": "Test 6 - Regression Validation", "next_installed_version": "v2.14.1", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026693#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347574#step:11:1" } ], - "duration_seconds": 3, + "duration_seconds": 4, "failed": 0, "passed": 6, "skipped": 0 @@ -32948,7 +32948,7 @@ "dashboard_link": "/linux/opensource_packages/janusgraph", "job_url_resolution_status": "central_exact", "package_slug": "janusgraph", - "production_refreshed_at": "2026-05-14T19:37:17.350682+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.568229+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "no_newer_stable_available", @@ -32962,15 +32962,15 @@ }, "run": { "attempt": "1", - "id": "25877375677", + "id": "26658685142", "job_name": "test-janusgraph / test-janusgraph", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:02Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044835" + "timestamp": "2026-05-29T19:48:12Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370598" }, "schema_version": "2.0", "tests": { @@ -32979,31 +32979,31 @@ "duration_seconds": 0, "name": "Test 1 - Artifact Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044835#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370598#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044835#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370598#step:7:1" }, { "duration_seconds": 3, "name": "Test 3 - Help Output Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044835#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370598#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044835#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370598#step:9:1" }, { - "duration_seconds": 12, + "duration_seconds": 11, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044835#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370598#step:10:1" }, { "comparison": "Current pinned JanusGraph version 1.1.0 already matches the newest public stable JanusGraph release stream, so there is no newer stable upstream candidate for a genuine Test 6 upgrade check.", @@ -33015,10 +33015,10 @@ "next_installed_version": "1.1.0", "regression_result": "No newer stable release available for Test 6", "status": "skipped", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044835#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370598#step:11:1" } ], - "duration_seconds": 15, + "duration_seconds": 14, "failed": 0, "passed": 5, "skipped": 1 @@ -33033,7 +33033,7 @@ "dashboard_link": "/linux/opensource_packages/java-openjdk", "job_url_resolution_status": "central_exact", "package_slug": "java-openjdk", - "production_refreshed_at": "2026-05-14T19:37:17.350903+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.568445+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -33045,15 +33045,15 @@ }, "run": { "attempt": "1", - "id": "25877387746", + "id": "26658696365", "job_name": "test-java-openjdk / test-java-openjdk", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:15Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083627" + "timestamp": "2026-05-29T19:48:24Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575406491" }, "schema_version": "2.0", "tests": { @@ -33062,37 +33062,37 @@ "duration_seconds": 0, "name": "Test 1 - Check java binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083627#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575406491#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check java version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083627#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575406491#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check java help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083627#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575406491#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083627#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575406491#step:9:1" }, { "duration_seconds": 1, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083627#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575406491#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083627#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575406491#step:11:1" } ], "duration_seconds": 1, @@ -33110,7 +33110,7 @@ "dashboard_link": "/linux/opensource_packages/jemalloc", "job_url_resolution_status": "central_exact", "package_slug": "jemalloc", - "production_refreshed_at": "2026-05-14T19:37:17.351127+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.568623+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -33122,15 +33122,15 @@ }, "run": { "attempt": "1", - "id": "25877427741", + "id": "26658731236", "job_name": "test-jemalloc / test-jemalloc", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:05Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218446" + "timestamp": "2026-05-29T19:49:11Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529423" }, "schema_version": "2.0", "tests": { @@ -33139,37 +33139,37 @@ "duration_seconds": 0, "name": "Test 1 - Check header installation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218446#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529423#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218446#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529423#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check shared library registration", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218446#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529423#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218446#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529423#step:9:1" }, { "duration_seconds": 1, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218446#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529423#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218446#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529423#step:11:1" } ], "duration_seconds": 1, @@ -33187,7 +33187,7 @@ "dashboard_link": "/linux/opensource_packages/jenkins", "job_url_resolution_status": "central_exact", "package_slug": "jenkins", - "production_refreshed_at": "2026-05-14T19:37:17.351338+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.568794+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -33199,15 +33199,15 @@ }, "run": { "attempt": "1", - "id": "25877406767", + "id": "26658714432", "job_name": "test-jenkins / test-jenkins", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:43Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154422" + "timestamp": "2026-05-29T19:48:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468629" }, "schema_version": "2.0", "tests": { @@ -33216,40 +33216,40 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154422#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468629#step:6:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154422#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468629#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154422#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468629#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154422#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468629#step:9:1" }, { - "duration_seconds": 9, + "duration_seconds": 8, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154422#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468629#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154422#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468629#step:11:1" } ], - "duration_seconds": 10, + "duration_seconds": 8, "failed": 0, "passed": 6, "skipped": 0 @@ -33264,7 +33264,7 @@ "dashboard_link": "/linux/opensource_packages/jetty", "job_url_resolution_status": "central_exact", "package_slug": "jetty", - "production_refreshed_at": "2026-05-14T19:37:17.351538+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.568964+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -33276,15 +33276,15 @@ }, "run": { "attempt": "1", - "id": "25877411197", + "id": "26658717942", "job_name": "test-jetty / test-jetty", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:50Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175711" + "timestamp": "2026-05-29T19:48:53Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479786" }, "schema_version": "2.0", "tests": { @@ -33293,40 +33293,40 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175711#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479786#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175711#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479786#step:7:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 3 - Check Help Output or Configuration", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175711#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479786#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175711#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479786#step:9:1" }, { "duration_seconds": 2, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175711#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479786#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175711#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479786#step:11:1" } ], - "duration_seconds": 3, + "duration_seconds": 2, "failed": 0, "passed": 6, "skipped": 0 @@ -33341,7 +33341,7 @@ "dashboard_link": "/linux/opensource_packages/jitsi", "job_url_resolution_status": "central_exact", "package_slug": "jitsi", - "production_refreshed_at": "2026-05-14T19:37:17.351735+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.569130+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -33353,15 +33353,15 @@ }, "run": { "attempt": "1", - "id": "25877395502", + "id": "26658703674", "job_name": "test-jitsi / test-jitsi", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:25Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110050" + "timestamp": "2026-05-29T19:48:34Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433140" }, "schema_version": "2.0", "tests": { @@ -33370,40 +33370,40 @@ "duration_seconds": 0, "name": "Test 1 - Artifact Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110050#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433140#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Image Metadata Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110050#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433140#step:7:1" }, { "duration_seconds": 1, "name": "Test 3 - JVB Script Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110050#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433140#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110050#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433140#step:9:1" }, { - "duration_seconds": 15, + "duration_seconds": 16, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110050#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433140#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110050#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433140#step:11:1" } ], - "duration_seconds": 16, + "duration_seconds": 17, "failed": 0, "passed": 6, "skipped": 0 @@ -33418,7 +33418,7 @@ "dashboard_link": "/linux/opensource_packages/jmeter", "job_url_resolution_status": "central_exact", "package_slug": "jmeter", - "production_refreshed_at": "2026-05-14T19:37:17.351958+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.569321+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -33432,15 +33432,15 @@ }, "run": { "attempt": "1", - "id": "25877363365", + "id": "26658674448", "job_name": "test-jmeter / test-jmeter", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:47Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000074" + "timestamp": "2026-05-29T19:47:56Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333727" }, "schema_version": "2.0", "tests": { @@ -33449,31 +33449,31 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000074#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333727#step:7:1" }, { "duration_seconds": 1, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000074#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333727#step:8:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 3 - Help Or Configuration Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000074#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333727#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000074#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333727#step:10:1" }, { - "duration_seconds": 2, + "duration_seconds": 3, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000074#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333727#step:11:1" }, { "comparison": "Current pinned JMeter version 5.6.2 passed smoke tests in this run. Regression validation downloaded candidate Apache JMeter 5.6.3 on Arm64, the candidate reported version 5.6.3, and the candidate smoke plan executed successfully.", @@ -33485,7 +33485,7 @@ "next_installed_version": "5.6.3", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000074#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333727#step:12:1" } ], "duration_seconds": 13, @@ -33503,7 +33503,7 @@ "dashboard_link": "/linux/opensource_packages/joomla", "job_url_resolution_status": "central_exact", "package_slug": "joomla", - "production_refreshed_at": "2026-05-14T19:37:17.352160+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.569519+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -33515,15 +33515,15 @@ }, "run": { "attempt": "1", - "id": "25877403044", + "id": "26658710721", "job_name": "test-joomla / test-joomla", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:39Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140826" + "timestamp": "2026-05-29T19:48:44Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456225" }, "schema_version": "2.0", "tests": { @@ -33532,37 +33532,37 @@ "duration_seconds": 0, "name": "Test 1 - Artifact Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140826#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456225#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140826#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456225#step:7:1" }, { "duration_seconds": 1, "name": "Test 3 - Configuration Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140826#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456225#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140826#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456225#step:9:1" }, { "duration_seconds": 15, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140826#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456225#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140826#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456225#step:11:1" } ], "duration_seconds": 16, @@ -33580,7 +33580,7 @@ "dashboard_link": "/linux/opensource_packages/journalbeat", "job_url_resolution_status": "central_exact", "package_slug": "journalbeat", - "production_refreshed_at": "2026-05-14T19:37:17.352359+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.569698+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -33594,15 +33594,15 @@ }, "run": { "attempt": "1", - "id": "25877411197", + "id": "26658717942", "job_name": "test-journalbeat / test-journalbeat", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:50Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175472" + "timestamp": "2026-05-29T19:48:52Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479528" }, "schema_version": "2.0", "tests": { @@ -33611,46 +33611,46 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175472#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479528#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175472#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479528#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Help Output or Configuration", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175472#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479528#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175472#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479528#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175472#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479528#step:10:1" }, { "comparison": "Current pinned Journalbeat version 7.12.0 passed smoke tests in this run. Regression validation downloaded, extracted, and executed the candidate Arm64 artifact for version 7.15.2 successfully.", "current_version": "7.12.0", "decision": "next_install_validated", - "duration_seconds": 2, + "duration_seconds": 0, "latest_version": "7.15.2", "name": "Test 6 - Regression Validation", "next_installed_version": "7.15.2", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175472#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479528#step:11:1" } ], - "duration_seconds": 2, + "duration_seconds": 0, "failed": 0, "passed": 6, "skipped": 0 @@ -33665,7 +33665,7 @@ "dashboard_link": "/linux/opensource_packages/juju", "job_url_resolution_status": "central_exact", "package_slug": "juju", - "production_refreshed_at": "2026-05-14T19:37:17.352562+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.569873+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -33679,15 +33679,15 @@ }, "run": { "attempt": "1", - "id": "25877399008", + "id": "26658707245", "job_name": "test-juju / test-juju", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:32Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126440" + "timestamp": "2026-05-29T19:48:38Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445732" }, "schema_version": "2.0", "tests": { @@ -33696,46 +33696,46 @@ "duration_seconds": 0, "name": "Test 1 - Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126440#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445732#step:6:1" }, { "duration_seconds": 3, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126440#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445732#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Help Output Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126440#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445732#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126440#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445732#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126440#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445732#step:10:1" }, { "comparison": "Current pinned Juju version 3.6.4 passed smoke tests in this run. Regression validation downloaded and extracted the candidate Arm64 artifact from https://launchpad.net/juju/3.6/3.6.5/+download/juju-3.6.5-linux-arm64.tar.xz successfully, and the installed candidate binary reported version 3.6.5.", "current_version": "3.6.4", "decision": "next_install_validated", - "duration_seconds": 21, + "duration_seconds": 7, "latest_version": "3.6.5", "name": "Test 6 - Regression Validation", "next_installed_version": "3.6.5", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126440#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445732#step:11:1" } ], - "duration_seconds": 24, + "duration_seconds": 10, "failed": 0, "passed": 6, "skipped": 0 @@ -33750,7 +33750,7 @@ "dashboard_link": "/linux/opensource_packages/julia", "job_url_resolution_status": "central_exact", "package_slug": "julia", - "production_refreshed_at": "2026-05-14T19:37:17.352793+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.570058+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -33764,15 +33764,15 @@ }, "run": { "attempt": "1", - "id": "25877395502", + "id": "26658703674", "job_name": "test-julia / test-julia", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:26Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109484" + "timestamp": "2026-05-29T19:48:33Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432848" }, "schema_version": "2.0", "tests": { @@ -33781,46 +33781,46 @@ "duration_seconds": 0, "name": "Test 1 - Check julia binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109484#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432848#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109484#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432848#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109484#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432848#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Run simple Julia code", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109484#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432848#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Perform calculation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109484#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432848#step:10:1" }, { "comparison": "Current pinned Julia version 1.11.4 passed smoke tests in this run. Regression validation installed candidate version 1.11.5 on Arm64, and the installed binary reported version 1.11.5.", "current_version": "1.11.4", "decision": "next_install_validated", - "duration_seconds": 14, + "duration_seconds": 11, "latest_version": "1.11.5", "name": "Test 6 - Regression Validation", "next_installed_version": "1.11.5", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109484#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432848#step:11:1" } ], - "duration_seconds": 13, + "duration_seconds": 9, "failed": 0, "passed": 6, "skipped": 0 @@ -33835,7 +33835,7 @@ "dashboard_link": "/linux/opensource_packages/k3os", "job_url_resolution_status": "central_exact", "package_slug": "k3os", - "production_refreshed_at": "2026-05-14T19:37:17.352984+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.570237+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -33849,15 +33849,15 @@ }, "run": { "attempt": "1", - "id": "25877399008", + "id": "26658707245", "job_name": "test-k3os / test-k3os", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:32Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126107" + "timestamp": "2026-05-29T19:48:39Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445506" }, "schema_version": "2.0", "tests": { @@ -33866,46 +33866,46 @@ "duration_seconds": 0, "name": "Test 1 - Check Arm64 Release Artifacts Exist", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126107#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445506#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Release Version Mapping", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126107#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445506#step:7:1" }, { "duration_seconds": 3, "name": "Test 3 - Check Artifact Inspection Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126107#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445506#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126107#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445506#step:9:1" }, { - "duration_seconds": 25, + "duration_seconds": 26, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126107#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445506#step:10:1" }, { "comparison": "Current pinned K3os release v0.21.5-k3s2r0 passed smoke tests in this run. Regression validation downloaded candidate release v0.21.5-k3s2r1 on Arm64, and the staged release artifacts matched version 0.21.5-k3s2r1.", "current_version": "0.21.5-k3s2r0", "decision": "next_install_validated", - "duration_seconds": 7, + "duration_seconds": 8, "latest_version": "0.21.5-k3s2r1", "name": "Test 6 - Regression Validation", "next_installed_version": "0.21.5-k3s2r1", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126107#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445506#step:11:1" } ], - "duration_seconds": 35, + "duration_seconds": 37, "failed": 0, "passed": 6, "skipped": 0 @@ -33920,7 +33920,7 @@ "dashboard_link": "/linux/opensource_packages/k3s", "job_url_resolution_status": "central_exact", "package_slug": "k3s", - "production_refreshed_at": "2026-05-14T19:37:17.353184+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.570450+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -33932,15 +33932,15 @@ }, "run": { "attempt": "1", - "id": "25877383844", + "id": "26658692522", "job_name": "test-k3s / test-k3s", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:11Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071329" + "timestamp": "2026-05-29T19:48:21Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394701" }, "schema_version": "2.0", "tests": { @@ -33949,37 +33949,37 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071329#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394701#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071329#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394701#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071329#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394701#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071329#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394701#step:9:1" }, { "duration_seconds": 3, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071329#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394701#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071329#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394701#step:11:1" } ], "duration_seconds": 3, @@ -33997,7 +33997,7 @@ "dashboard_link": "/linux/opensource_packages/k8s-device-plugin", "job_url_resolution_status": "central_exact", "package_slug": "k8s-device-plugin", - "production_refreshed_at": "2026-05-14T19:37:17.353394+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.570637+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -34011,15 +34011,15 @@ }, "run": { "attempt": "1", - "id": "25877427741", + "id": "26658731236", "job_name": "test-k8s-device-plugin / test-k8s-device-plugin", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:09Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218865" + "timestamp": "2026-05-29T19:49:14Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529412" }, "schema_version": "2.0", "tests": { @@ -34028,46 +34028,46 @@ "duration_seconds": 0, "name": "Test 1 - Baseline package evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218865#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529412#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Baseline version and release alignment", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218865#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529412#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Package-specific source or docs evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218865#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529412#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Arm64 support gate", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218865#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529412#step:10:1" }, { "duration_seconds": 1, "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218865#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529412#step:11:1" }, { "comparison": "Test 6 reran the scoped NVIDIA device plugin Arm preflight against the next stable source tag: Go package discovery, plugin entrypoint source checks, and Kubernetes DaemonSet/device-resource manifest validation. Full scheduling, kubelet registration, and GPU runtime require a Kubernetes cluster with NVIDIA GPUs.", "current_version": "0.10.0", "decision": "limited_cpu_smoke_validated", - "duration_seconds": 9, - "latest_version": "0.19.1", + "duration_seconds": 7, + "latest_version": "0.19.2", "name": "Test 6 - Regression Validation", - "next_installed_version": "0.19.1", + "next_installed_version": "0.19.2", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218865#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529412#step:12:1" } ], - "duration_seconds": 10, + "duration_seconds": 8, "failed": 0, "passed": 6, "skipped": 0 @@ -34082,7 +34082,7 @@ "dashboard_link": "/linux/opensource_packages/kaezip", "job_url_resolution_status": "central_exact", "package_slug": "kaezip", - "production_refreshed_at": "2026-05-14T19:37:17.353621+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.570826+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "no_newer_stable_available", @@ -34096,15 +34096,15 @@ }, "run": { "attempt": "1", - "id": "25877363365", + "id": "26658674448", "job_name": "test-kaezip / test-kaezip", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:47Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000813" + "timestamp": "2026-05-29T19:47:57Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334441" }, "schema_version": "2.0", "tests": { @@ -34113,31 +34113,31 @@ "duration_seconds": 0, "name": "Test 1 - Check source tree contents", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000813#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334441#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check baseline version metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000813#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334441#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Validate install plan", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000813#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334441#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000813#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334441#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000813#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334441#step:10:1" }, { "comparison": "Current pinned KAEzip version 1.3.11 already matches the newest public stable KAEzip release. Tests 1-5 validate the real Arm64 source-tree and install-plan path, but there is no newer stable upstream candidate for a genuine Test 6 upgrade check.", @@ -34149,7 +34149,7 @@ "next_installed_version": "1.3.11", "regression_result": "No newer stable release available for Test 6", "status": "skipped", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000813#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334441#step:11:1" } ], "duration_seconds": 0, @@ -34167,7 +34167,7 @@ "dashboard_link": "/linux/opensource_packages/kafka", "job_url_resolution_status": "central_exact", "package_slug": "kafka", - "production_refreshed_at": "2026-05-14T19:37:17.354267+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.571418+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -34181,15 +34181,15 @@ }, "run": { "attempt": "1", - "id": "25877355625", + "id": "26658667828", "job_name": "test-kafka / test-kafka", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:37Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047975615" + "timestamp": "2026-05-29T19:47:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575307976" }, "schema_version": "2.0", "tests": { @@ -34198,46 +34198,46 @@ "duration_seconds": 0, "name": "Test 1 - Check kafka scripts exist", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047975615#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575307976#step:6:1" }, { - "duration_seconds": 2, + "duration_seconds": 3, "name": "Test 2 - Prepare KRaft metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047975615#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575307976#step:7:1" }, { - "duration_seconds": 5, + "duration_seconds": 6, "name": "Test 3 - Start Kafka Server", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047975615#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575307976#step:8:1" }, { "duration_seconds": 2, "name": "Test 4 - Create a topic", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047975615#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575307976#step:9:1" }, { "duration_seconds": 1, "name": "Test 5 - List topics", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047975615#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575307976#step:10:1" }, { "comparison": "Current pinned Kafka version 4.1.2 passed smoke tests in this run. Regression validation installed candidate version 4.2.0 on Arm64, and the extracted distribution reported version 4.2.0.", "current_version": "4.1.2", "decision": "next_install_validated", - "duration_seconds": 9, + "duration_seconds": 5, "latest_version": "4.2.0", "name": "Test 6 - Regression Validation", "next_installed_version": "4.2.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047975615#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575307976#step:11:1" } ], - "duration_seconds": 19, + "duration_seconds": 17, "failed": 0, "passed": 6, "skipped": 0 @@ -34252,7 +34252,7 @@ "dashboard_link": "/linux/opensource_packages/kafka-connect", "job_url_resolution_status": "central_exact", "package_slug": "kafka-connect", - "production_refreshed_at": "2026-05-14T19:37:17.353848+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.571017+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -34266,15 +34266,15 @@ }, "run": { "attempt": "1", - "id": "25877435852", + "id": "26658737633", "job_name": "test-kafka-connect / test-kafka-connect", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:16Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251762" + "timestamp": "2026-05-29T19:49:23Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550046" }, "schema_version": "2.0", "tests": { @@ -34283,31 +34283,31 @@ "duration_seconds": 0, "name": "Test 1 - Download Kafka baseline distribution", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251762#step:5:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550046#step:5:1" }, { "duration_seconds": 0, "name": "Test 2 - Verify Connect scripts", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251762#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550046#step:6:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Connect CLI help", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251762#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550046#step:7:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify Connect configuration files", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251762#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550046#step:8:1" }, { "duration_seconds": 0, "name": "Test 5 - Verify Connect libraries on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251762#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550046#step:9:1" }, { "comparison": "Kafka Connect candidate Kafka 4.2.0 archive downloaded and component scripts were present on Arm64.", @@ -34319,10 +34319,10 @@ "next_installed_version": "4.2.0", "regression_result": "Next Kafka component validation passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251762#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550046#step:10:1" } ], - "duration_seconds": 11, + "duration_seconds": 4, "failed": 0, "passed": 6, "skipped": 0 @@ -34337,7 +34337,7 @@ "dashboard_link": "/linux/opensource_packages/kafka-mirrormaker", "job_url_resolution_status": "central_exact", "package_slug": "kafka-mirrormaker", - "production_refreshed_at": "2026-05-14T19:37:17.354060+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.571204+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -34351,15 +34351,15 @@ }, "run": { "attempt": "1", - "id": "25877435852", + "id": "26658737633", "job_name": "test-kafka-mirrormaker / test-kafka-mirrormaker", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:15Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252045" + "timestamp": "2026-05-29T19:49:22Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549894" }, "schema_version": "2.0", "tests": { @@ -34368,31 +34368,31 @@ "duration_seconds": 0, "name": "Test 1 - Download Kafka baseline distribution", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252045#step:5:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549894#step:5:1" }, { "duration_seconds": 0, "name": "Test 2 - Verify MirrorMaker script", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252045#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549894#step:6:1" }, { "duration_seconds": 0, "name": "Test 3 - Check MirrorMaker CLI help", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252045#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549894#step:7:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify MirrorMaker libraries", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252045#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549894#step:8:1" }, { "duration_seconds": 0, "name": "Test 5 - Verify MirrorMaker references on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252045#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549894#step:9:1" }, { "comparison": "Kafka MirrorMaker candidate Kafka 4.2.0 archive downloaded and component scripts were present on Arm64.", @@ -34404,10 +34404,10 @@ "next_installed_version": "4.2.0", "regression_result": "Next Kafka component validation passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252045#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549894#step:10:1" } ], - "duration_seconds": 12, + "duration_seconds": 14, "failed": 0, "passed": 6, "skipped": 0 @@ -34422,7 +34422,7 @@ "dashboard_link": "/linux/opensource_packages/kafkacat", "job_url_resolution_status": "central_exact", "package_slug": "kafkacat", - "production_refreshed_at": "2026-05-14T19:37:17.354475+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.571607+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -34436,15 +34436,15 @@ }, "run": { "attempt": "1", - "id": "25877383844", + "id": "26658692522", "job_name": "test-kafkacat / test-kafkacat", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:11Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048070683" + "timestamp": "2026-05-29T19:48:19Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575393100" }, "schema_version": "2.0", "tests": { @@ -34453,31 +34453,31 @@ "duration_seconds": 0, "name": "Test 1 - Check kcat binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048070683#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575393100#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check kcat version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048070683#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575393100#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048070683#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575393100#step:8:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 4 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048070683#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575393100#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048070683#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575393100#step:10:1" }, { "comparison": "Current pinned Kafkacat version 1.6.0 passed smoke tests in this run. Regression validation built candidate version 1.7.0 from upstream source on Arm64, confirmed the binary reports the expected version, and reached the producer connection path in a bounded dry-run (rc=1).", @@ -34489,10 +34489,10 @@ "next_installed_version": "1.7.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048070683#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575393100#step:11:1" } ], - "duration_seconds": 3, + "duration_seconds": 2, "failed": 0, "passed": 6, "skipped": 0 @@ -34507,7 +34507,7 @@ "dashboard_link": "/linux/opensource_packages/kangas", "job_url_resolution_status": "central_exact", "package_slug": "kangas", - "production_refreshed_at": "2026-05-14T19:37:17.354683+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.571790+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -34519,15 +34519,15 @@ }, "run": { "attempt": "1", - "id": "25877392111", + "id": "26658699892", "job_name": "test-kangas / test-kangas", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:23Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095762" + "timestamp": "2026-05-29T19:48:31Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421118" }, "schema_version": "2.0", "tests": { @@ -34536,37 +34536,37 @@ "duration_seconds": 0, "name": "Test 1 - Check Kangas CLI exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095762#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421118#step:6:1" }, { "duration_seconds": 1, "name": "Test 2 - Check Kangas version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095762#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421118#step:7:1" }, { "duration_seconds": 1, "name": "Test 3 - Check Kangas Python import", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095762#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421118#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095762#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421118#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095762#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421118#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095762#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421118#step:11:1" } ], "duration_seconds": 2, @@ -34584,7 +34584,7 @@ "dashboard_link": "/linux/opensource_packages/karmada", "job_url_resolution_status": "central_exact", "package_slug": "karmada", - "production_refreshed_at": "2026-05-14T19:37:17.355015+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.572056+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -34598,15 +34598,15 @@ }, "run": { "attempt": "1", - "id": "25877419588", + "id": "26658724696", "job_name": "test-karmada / test-karmada", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:58Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048191569" + "timestamp": "2026-05-29T19:49:01Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503377" }, "schema_version": "2.0", "tests": { @@ -34615,31 +34615,31 @@ "duration_seconds": 0, "name": "Test 1 - Check karmadactl binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048191569#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503377#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048191569#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503377#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048191569#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503377#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048191569#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503377#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048191569#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503377#step:10:1" }, { "comparison": "Current pinned version 1.13.0 passed smoke tests in this run. Regression validation then verified the newer stable Arm64 candidate 1.13.1 successfully.", @@ -34651,7 +34651,7 @@ "next_installed_version": "1.13.1", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048191569#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503377#step:11:1" } ], "duration_seconds": 1, @@ -34669,7 +34669,7 @@ "dashboard_link": "/linux/opensource_packages/kasmvnc", "job_url_resolution_status": "central_exact", "package_slug": "kasmvnc", - "production_refreshed_at": "2026-05-14T19:37:17.355236+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.572264+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -34683,15 +34683,15 @@ }, "run": { "attempt": "1", - "id": "25877427741", + "id": "26658731236", "job_name": "test-kasmvnc / test-kasmvnc", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:14Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218775" + "timestamp": "2026-05-29T19:49:11Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529790" }, "schema_version": "2.0", "tests": { @@ -34700,46 +34700,46 @@ "duration_seconds": 0, "name": "Test 1 - Baseline package evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218775#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529790#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Baseline version and release alignment", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218775#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529790#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Package-specific source or docs evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218775#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529790#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Arm64 support gate", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218775#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529790#step:10:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 5 - Bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218775#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529790#step:11:1" }, { "comparison": "Test 6 installed the next KasmVNC Arm64 Debian package candidate, verified package architecture and the extracted AArch64 X server, then ran X server version plus kasmvncserver help. No full VNC client session, desktop workload, or WAN remoting claim is made.", "current_version": "0.9.3 Beta", "decision": "limited_cpu_smoke_validated", - "duration_seconds": 27, + "duration_seconds": 19, "latest_version": "1.4.0", "name": "Test 6 - Regression Validation", "next_installed_version": "1.4.0", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218775#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529790#step:12:1" } ], - "duration_seconds": 28, + "duration_seconds": 18, "failed": 0, "passed": 6, "skipped": 0 @@ -34754,7 +34754,7 @@ "dashboard_link": "/linux/opensource_packages/kata", "job_url_resolution_status": "central_exact", "package_slug": "kata", - "production_refreshed_at": "2026-05-14T19:37:17.355428+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.572464+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -34768,63 +34768,63 @@ }, "run": { "attempt": "1", - "id": "25877415436", + "id": "26658721315", "job_name": "test-kata / test-kata", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:54Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180698" + "timestamp": "2026-05-29T19:48:58Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491802" }, "schema_version": "2.0", "tests": { "details": [ { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 1 - Check kata-runtime binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180698#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491802#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180698#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491802#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180698#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491802#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180698#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491802#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180698#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491802#step:10:1" }, { "comparison": "Current pinned Kata version 3.15.0 passed smoke tests in this run. Regression validation installed candidate version 3.16.0 on Arm64, the extracted kata-runtime binary reported version 3.16.0, and the candidate env output exposed a QEMU emulator path on Arm64.", "current_version": "3.15.0", "decision": "next_install_validated", - "duration_seconds": 9, + "duration_seconds": 13, "latest_version": "3.16.0", "name": "Test 6 - Regression Validation", "next_installed_version": "3.16.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180698#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491802#step:11:1" } ], - "duration_seconds": 9, + "duration_seconds": 13, "failed": 0, "passed": 6, "skipped": 0 @@ -34839,7 +34839,7 @@ "dashboard_link": "/linux/opensource_packages/katsu", "job_url_resolution_status": "central_exact", "package_slug": "katsu", - "production_refreshed_at": "2026-05-14T19:37:17.355609+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.572644+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -34851,57 +34851,57 @@ }, "run": { "attempt": "1", - "id": "25877359516", + "id": "26658670904", "job_name": "test-katsu / test-katsu", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:44Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991699" + "timestamp": "2026-05-29T19:47:53Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321914" }, "schema_version": "2.0", "tests": { "details": [ { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 1 - Check katsu package", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991699#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321914#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check katsu help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991699#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321914#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991699#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321914#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991699#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321914#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation (Python Import)", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991699#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321914#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991699#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321914#step:11:1" } ], - "duration_seconds": 1, + "duration_seconds": 0, "failed": 0, "passed": 6, "skipped": 0 @@ -34916,7 +34916,7 @@ "dashboard_link": "/linux/opensource_packages/keda", "job_url_resolution_status": "central_exact", "package_slug": "keda", - "production_refreshed_at": "2026-05-14T19:37:17.355846+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.572813+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -34928,15 +34928,15 @@ }, "run": { "attempt": "1", - "id": "25877375677", + "id": "26658685142", "job_name": "test-keda / test-keda", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:03Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044756" + "timestamp": "2026-05-29T19:48:11Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370450" }, "schema_version": "2.0", "tests": { @@ -34945,37 +34945,37 @@ "duration_seconds": 0, "name": "Test 1 - Artifact Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044756#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370450#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044756#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370450#step:7:1" }, { "duration_seconds": 1, "name": "Test 3 - Help Output Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044756#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370450#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044756#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370450#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044756#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370450#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044756#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370450#step:11:1" } ], "duration_seconds": 1, @@ -34993,7 +34993,7 @@ "dashboard_link": "/linux/opensource_packages/keepalived", "job_url_resolution_status": "central_exact", "package_slug": "keepalived", - "production_refreshed_at": "2026-05-14T19:37:17.356045+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.572981+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -35005,15 +35005,15 @@ }, "run": { "attempt": "1", - "id": "25877371674", + "id": "26658681575", "job_name": "test-keepalived / test-keepalived", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:59Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048030967" + "timestamp": "2026-05-29T19:48:07Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358578" }, "schema_version": "2.0", "tests": { @@ -35022,37 +35022,37 @@ "duration_seconds": 0, "name": "Test 1 - Check keepalived binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048030967#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358578#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048030967#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358578#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048030967#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358578#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Check configuration validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048030967#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358578#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Check service status (if possible)", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048030967#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358578#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048030967#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358578#step:11:1" } ], "duration_seconds": 0, @@ -35070,7 +35070,7 @@ "dashboard_link": "/linux/opensource_packages/keptn", "job_url_resolution_status": "central_exact", "package_slug": "keptn", - "production_refreshed_at": "2026-05-14T19:37:17.356227+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.573149+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -35084,15 +35084,15 @@ }, "run": { "attempt": "1", - "id": "25877411197", + "id": "26658717942", "job_name": "test-keptn / test-keptn", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:49Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175295" + "timestamp": "2026-05-29T19:48:52Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478662" }, "schema_version": "2.0", "tests": { @@ -35101,31 +35101,31 @@ "duration_seconds": 0, "name": "Test 1 - Check keptn binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175295#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478662#step:6:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 2 - Check version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175295#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478662#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175295#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478662#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175295#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478662#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175295#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478662#step:10:1" }, { "comparison": "Current pinned Keptn CLI version 1.4.4 passed smoke tests in this run. Regression validation downloaded the candidate Arm64 artifact from https://github.com/keptn/keptn/releases/download/1.4.5/keptn-1.4.5-linux-arm64.tar.gz successfully, and the candidate binary reported version 1.4.5 on Arm64.", @@ -35137,10 +35137,10 @@ "next_installed_version": "1.4.5", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175295#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478662#step:11:1" } ], - "duration_seconds": 1, + "duration_seconds": 2, "failed": 0, "passed": 6, "skipped": 0 @@ -35155,7 +35155,7 @@ "dashboard_link": "/linux/opensource_packages/keras", "job_url_resolution_status": "central_exact", "package_slug": "keras", - "production_refreshed_at": "2026-05-14T19:37:17.356405+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.573347+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -35167,15 +35167,15 @@ }, "run": { "attempt": "1", - "id": "25877359516", + "id": "26658670904", "job_name": "test-keras / test-keras", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:45Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991192" + "timestamp": "2026-05-29T19:47:53Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321676" }, "schema_version": "2.0", "tests": { @@ -35184,37 +35184,37 @@ "duration_seconds": 2, "name": "Test 1 - Check import", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991192#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321676#step:6:1" }, { - "duration_seconds": 1, + "duration_seconds": 2, "name": "Test 2 - Check backend", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991192#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321676#step:7:1" }, { - "duration_seconds": 2, + "duration_seconds": 1, "name": "Test 3 - Create simple model", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991192#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321676#step:8:1" }, { "duration_seconds": 2, "name": "Test 4 - Train simple model (dummy data)", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991192#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321676#step:9:1" }, { "duration_seconds": 2, "name": "Test 5 - Save and load model", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991192#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321676#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991192#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321676#step:11:1" } ], "duration_seconds": 9, @@ -35232,7 +35232,7 @@ "dashboard_link": "/linux/opensource_packages/keycloak", "job_url_resolution_status": "central_exact", "package_slug": "keycloak", - "production_refreshed_at": "2026-05-14T19:37:17.356612+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.573523+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -35246,15 +35246,15 @@ }, "run": { "attempt": "1", - "id": "25877379982", + "id": "26658688675", "job_name": "test-keycloak / test-keycloak", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:06Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057252" + "timestamp": "2026-05-29T19:48:15Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380465" }, "schema_version": "2.0", "tests": { @@ -35263,43 +35263,43 @@ "duration_seconds": 0, "name": "Test 1 - Check kc.sh script exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057252#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380465#step:6:1" }, { "duration_seconds": 1, "name": "Test 2 - Check version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057252#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380465#step:7:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 3 - Check help command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057252#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380465#step:8:1" }, { "duration_seconds": 20, "name": "Test 4 - Start Keycloak in dev mode", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057252#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380465#step:9:1" }, { "duration_seconds": 1, "name": "Test 5 - Check HTTP response", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057252#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380465#step:10:1" }, { "comparison": "Current pinned Keycloak version 26.1.4 passed smoke tests in this run. Regression validation installed candidate version 26.1.5 on Arm64, and the installed server reported version 26.1.5.", "current_version": "26.1.4", "decision": "next_install_validated", - "duration_seconds": 5, + "duration_seconds": 6, "latest_version": "26.1.5", "name": "Test 6 - Regression Validation", "next_installed_version": "26.1.5", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057252#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380465#step:11:1" } ], "duration_seconds": 28, @@ -35317,7 +35317,7 @@ "dashboard_link": "/linux/opensource_packages/keydb", "job_url_resolution_status": "central_exact", "package_slug": "keydb", - "production_refreshed_at": "2026-05-14T19:37:17.356875+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.573708+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -35331,63 +35331,63 @@ }, "run": { "attempt": "1", - "id": "25877363365", + "id": "26658674448", "job_name": "test-keydb / test-keydb", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:47Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000836" + "timestamp": "2026-05-29T19:47:56Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333787" }, "schema_version": "2.0", "tests": { "details": [ { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 1 - Check KeyDB binaries exist", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000836#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333787#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000836#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333787#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000836#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333787#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000836#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333787#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000836#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333787#step:10:1" }, { "comparison": "Current pinned KeyDB version 6.3.3 passed smoke tests in this run. Regression validation rebuilt source tag v6.3.4 on Arm64, and the candidate keydb-server binary reported version 6.3.4 and passed a real ping/set/get smoke.", "current_version": "6.3.3", "decision": "next_install_validated", - "duration_seconds": 66, + "duration_seconds": 65, "latest_version": "6.3.4", "name": "Test 6 - Regression Validation", "next_installed_version": "6.3.4", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000836#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333787#step:11:1" } ], - "duration_seconds": 66, + "duration_seconds": 65, "failed": 0, "passed": 6, "skipped": 0 @@ -35402,7 +35402,7 @@ "dashboard_link": "/linux/opensource_packages/keystone", "job_url_resolution_status": "central_exact", "package_slug": "keystone", - "production_refreshed_at": "2026-05-14T19:37:17.357082+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.573890+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -35414,15 +35414,15 @@ }, "run": { "attempt": "1", - "id": "25877406767", + "id": "26658714432", "job_name": "test-keystone / test-keystone", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:43Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155431" + "timestamp": "2026-05-29T19:48:48Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469443" }, "schema_version": "2.0", "tests": { @@ -35431,37 +35431,37 @@ "duration_seconds": 0, "name": "Test 1 - Check keystone-manage binary", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155431#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469443#step:6:1" }, { "duration_seconds": 2, "name": "Test 2 - Check version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155431#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469443#step:7:1" }, { - "duration_seconds": 2, + "duration_seconds": 1, "name": "Test 3 - Check help command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155431#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469443#step:8:1" }, { - "duration_seconds": 1, + "duration_seconds": 2, "name": "Test 4 - Basic configuration check (db_sync)", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155431#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469443#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Check python import", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155431#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469443#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155431#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469443#step:11:1" } ], "duration_seconds": 5, @@ -35479,7 +35479,7 @@ "dashboard_link": "/linux/opensource_packages/kicad", "job_url_resolution_status": "central_exact", "package_slug": "kicad", - "production_refreshed_at": "2026-05-14T19:37:17.357289+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.574067+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -35491,15 +35491,15 @@ }, "run": { "attempt": "1", - "id": "25877427741", + "id": "26658731236", "job_name": "test-kicad / test-kicad", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:04Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218883" + "timestamp": "2026-05-29T19:49:11Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529806" }, "schema_version": "2.0", "tests": { @@ -35508,40 +35508,40 @@ "duration_seconds": 0, "name": "Test 1 - Baseline package evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218883#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529806#step:7:1" }, { - "duration_seconds": 2, + "duration_seconds": 0, "name": "Test 2 - Installed runtime version", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218883#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529806#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - kicad-cli help", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218883#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529806#step:9:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 4 - Arm64 support gate", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218883#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529806#step:10:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 5 - Bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218883#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529806#step:11:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218883#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529806#step:12:1" } ], - "duration_seconds": 3, + "duration_seconds": 1, "failed": 0, "passed": 6, "skipped": 0 @@ -35556,7 +35556,7 @@ "dashboard_link": "/linux/opensource_packages/klayout", "job_url_resolution_status": "central_exact", "package_slug": "klayout", - "production_refreshed_at": "2026-05-14T19:37:17.357494+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.574271+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -35568,15 +35568,15 @@ }, "run": { "attempt": "1", - "id": "25877427741", + "id": "26658731236", "job_name": "test-klayout / test-klayout", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:12Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218751" + "timestamp": "2026-05-29T19:49:17Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529473" }, "schema_version": "2.0", "tests": { @@ -35585,37 +35585,37 @@ "duration_seconds": 0, "name": "Test 1 - Package-manager install evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218751#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529473#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Installed Arm64 package metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218751#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529473#step:7:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 3 - CLI version starts on Arm", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218751#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529473#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Arm64 runner gate", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218751#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529473#step:9:1" }, { - "duration_seconds": 2, + "duration_seconds": 1, "name": "Test 5 - KLayout batch layout smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218751#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529473#step:10:1" }, { "duration_seconds": 0, "name": "Test 6 - Regression validation applicability", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218751#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529473#step:11:1" } ], "duration_seconds": 2, @@ -35633,7 +35633,7 @@ "dashboard_link": "/linux/opensource_packages/kmerfreq", "job_url_resolution_status": "central_exact", "package_slug": "kmerfreq", - "production_refreshed_at": "2026-05-14T19:37:17.357696+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.574468+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "no_newer_stable_available", @@ -35647,15 +35647,15 @@ }, "run": { "attempt": "1", - "id": "25877419588", + "id": "26658724696", "job_name": "test-kmerfreq / test-kmerfreq", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:58Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192632" + "timestamp": "2026-05-29T19:49:02Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503970" }, "schema_version": "2.0", "tests": { @@ -35664,31 +35664,31 @@ "duration_seconds": 0, "name": "Test 1 - Check kmerfreq binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192632#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503970#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check help/usage", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192632#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503970#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Run on dummy data", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192632#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503970#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Check output content", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192632#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503970#step:9:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 5 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192632#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503970#step:10:1" }, { "comparison": "KmerFreq has no formal published releases or versioned stable tags beyond the source snapshot tested in this workflow, so there is no honest newer Test 6 upgrade target.", @@ -35700,7 +35700,7 @@ "next_installed_version": "90fca00", "regression_result": "No newer stable release available for Test 6", "status": "skipped", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192632#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503970#step:11:1" } ], "duration_seconds": 0, @@ -35718,7 +35718,7 @@ "dashboard_link": "/linux/opensource_packages/knative", "job_url_resolution_status": "central_exact", "package_slug": "knative", - "production_refreshed_at": "2026-05-14T19:37:17.357928+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.574652+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -35730,15 +35730,15 @@ }, "run": { "attempt": "1", - "id": "25877406767", + "id": "26658714432", "job_name": "test-knative / test-knative", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:43Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155507" + "timestamp": "2026-05-29T19:48:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469265" }, "schema_version": "2.0", "tests": { @@ -35747,40 +35747,40 @@ "duration_seconds": 0, "name": "Test 1 - Check kn binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155507#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469265#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155507#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469265#step:7:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155507#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469265#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Check completion output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155507#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469265#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155507#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469265#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155507#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469265#step:11:1" } ], - "duration_seconds": 1, + "duration_seconds": 0, "failed": 0, "passed": 6, "skipped": 0 @@ -35795,7 +35795,7 @@ "dashboard_link": "/linux/opensource_packages/kobert", "job_url_resolution_status": "central_exact", "package_slug": "kobert", - "production_refreshed_at": "2026-05-14T19:37:17.358129+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.574832+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -35807,57 +35807,57 @@ }, "run": { "attempt": "1", - "id": "25877399008", + "id": "26658707245", "job_name": "test-kobert / test-kobert", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:40Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125290" + "timestamp": "2026-05-29T19:48:47Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445744" }, "schema_version": "2.0", "tests": { "details": [ { - "duration_seconds": 5, + "duration_seconds": 4, "name": "Test 1 - Check top-level import", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125290#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445744#step:7:1" }, { "duration_seconds": 4, "name": "Test 2 - Check exported utility helpers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125290#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445744#step:8:1" }, { - "duration_seconds": 5, + "duration_seconds": 4, "name": "Test 3 - Download tokenizer asset", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125290#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445744#step:9:1" }, { "duration_seconds": 4, "name": "Test 4 - Check PyTorch integration", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125290#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445744#step:10:1" }, { "duration_seconds": 0, "name": "Test 5 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125290#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445744#step:11:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125290#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445744#step:12:1" } ], - "duration_seconds": 18, + "duration_seconds": 16, "failed": 0, "passed": 6, "skipped": 0 @@ -35872,7 +35872,7 @@ "dashboard_link": "/linux/opensource_packages/kolla", "job_url_resolution_status": "central_exact", "package_slug": "kolla", - "production_refreshed_at": "2026-05-14T19:37:17.358310+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.575014+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -35884,54 +35884,54 @@ }, "run": { "attempt": "1", - "id": "25877371674", + "id": "26658681575", "job_name": "test-kolla / test-kolla", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:59Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031765" + "timestamp": "2026-05-29T19:48:07Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358434" }, "schema_version": "2.0", "tests": { "details": [ { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 1 - Check kolla-build binary", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031765#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358434#step:6:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 2 - Check version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031765#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358434#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031765#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358434#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031765#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358434#step:9:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031765#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358434#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031765#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358434#step:11:1" } ], "duration_seconds": 1, @@ -35949,7 +35949,7 @@ "dashboard_link": "/linux/opensource_packages/krb5", "job_url_resolution_status": "central_exact", "package_slug": "krb5", - "production_refreshed_at": "2026-05-14T19:37:17.358486+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.575196+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -35961,15 +35961,15 @@ }, "run": { "attempt": "1", - "id": "25877423406", + "id": "26658727918", "job_name": "test-krb5 / test-krb5", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:05Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209885" + "timestamp": "2026-05-29T19:49:07Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516152" }, "schema_version": "2.0", "tests": { @@ -35978,37 +35978,37 @@ "duration_seconds": 0, "name": "Test 1 - Check kinit binary", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209885#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516152#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check klist binary", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209885#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516152#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209885#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516152#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Check help command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209885#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516152#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Check klist execution (empty cache)", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209885#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516152#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209885#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516152#step:11:1" } ], "duration_seconds": 0, @@ -36026,7 +36026,7 @@ "dashboard_link": "/linux/opensource_packages/kube-bench", "job_url_resolution_status": "central_exact", "package_slug": "kube-bench", - "production_refreshed_at": "2026-05-14T19:37:17.358708+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.575415+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -36040,15 +36040,15 @@ }, "run": { "attempt": "1", - "id": "25877375677", + "id": "26658685142", "job_name": "test-kube-bench / test-kube-bench", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:02Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043931" + "timestamp": "2026-05-29T19:48:10Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369888" }, "schema_version": "2.0", "tests": { @@ -36057,43 +36057,43 @@ "duration_seconds": 0, "name": "Test 1 - Artifact Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043931#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369888#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043931#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369888#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043931#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369888#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043931#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369888#step:9:1" }, { - "duration_seconds": 1, + "duration_seconds": 2, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043931#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369888#step:10:1" }, { "comparison": "Current pinned version 0.10.4 passed smoke tests in this run. Regression validation then verified the newer stable Arm64 candidate 0.10.5 successfully.", "current_version": "0.10.4", "decision": "next_install_validated", - "duration_seconds": 1, + "duration_seconds": 0, "latest_version": "0.10.5", "name": "Test 6 - Regression Validation", "next_installed_version": "0.10.5", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043931#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369888#step:11:1" } ], "duration_seconds": 2, @@ -36111,7 +36111,7 @@ "dashboard_link": "/linux/opensource_packages/kube-router", "job_url_resolution_status": "central_exact", "package_slug": "kube-router", - "production_refreshed_at": "2026-05-14T19:37:17.358954+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.575605+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -36125,15 +36125,15 @@ }, "run": { "attempt": "1", - "id": "25877379982", + "id": "26658688675", "job_name": "test-kube-router / test-kube-router", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:05Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057162" + "timestamp": "2026-05-29T19:48:15Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380779" }, "schema_version": "2.0", "tests": { @@ -36142,46 +36142,46 @@ "duration_seconds": 0, "name": "Test 1 - Check kube-router binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057162#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380779#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057162#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380779#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057162#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380779#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Check metrics flag parsing", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057162#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380779#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057162#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380779#step:10:1" }, { "comparison": "Current pinned kube-router version 2.6.0 passed smoke tests in this run. Regression validation downloaded the candidate Arm64 artifact from https://github.com/cloudnativelabs/kube-router/releases/download/v2.6.1/kube-router_2.6.1_linux_arm64.tar.gz successfully, and the candidate binary reported version 2.6.1 on Arm64.", "current_version": "2.6.0", "decision": "next_install_validated", - "duration_seconds": 1, + "duration_seconds": 2, "latest_version": "2.6.1", "name": "Test 6 - Regression Validation", "next_installed_version": "2.6.1", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057162#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380779#step:11:1" } ], - "duration_seconds": 1, + "duration_seconds": 2, "failed": 0, "passed": 6, "skipped": 0 @@ -36196,7 +36196,7 @@ "dashboard_link": "/linux/opensource_packages/kubeedge", "job_url_resolution_status": "central_exact", "package_slug": "kubeedge", - "production_refreshed_at": "2026-05-14T19:37:17.359158+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.575787+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -36210,15 +36210,15 @@ }, "run": { "attempt": "1", - "id": "25877367704", + "id": "26658677990", "job_name": "test-kubeedge / test-kubeedge", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:56Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026961" + "timestamp": "2026-05-29T19:48:08Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347217" }, "schema_version": "2.0", "tests": { @@ -36227,31 +36227,31 @@ "duration_seconds": 0, "name": "Test 1 - Check keadm binary", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026961#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347217#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026961#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347217#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026961#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347217#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Check init command help", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026961#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347217#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Check join command help", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026961#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347217#step:10:1" }, { "comparison": "Current pinned KubeEdge version 1.20.0 passed smoke tests in this run. Regression validation downloaded the candidate Arm64 artifact from https://github.com/kubeedge/kubeedge/releases/download/v1.21.0/keadm-v1.21.0-linux-arm64.tar.gz successfully, and the candidate binary reported version 1.21.0 on Arm64.", @@ -36263,7 +36263,7 @@ "next_installed_version": "1.21.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026961#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347217#step:11:1" } ], "duration_seconds": 3, @@ -36281,7 +36281,7 @@ "dashboard_link": "/linux/opensource_packages/kubeflow", "job_url_resolution_status": "central_exact", "package_slug": "kubeflow", - "production_refreshed_at": "2026-05-14T19:37:17.359361+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.575973+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -36293,15 +36293,15 @@ }, "run": { "attempt": "1", - "id": "25877423406", + "id": "26658727918", "job_name": "test-kubeflow / test-kubeflow", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:08Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210345" + "timestamp": "2026-05-29T19:49:07Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516245" }, "schema_version": "2.0", "tests": { @@ -36310,37 +36310,37 @@ "duration_seconds": 0, "name": "Test 1 - Check kfp import", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210345#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516245#step:6:1" }, { "duration_seconds": 1, "name": "Test 2 - Check kfp CLI", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210345#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516245#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check kfp version via CLI", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210345#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516245#step:8:1" }, { "duration_seconds": 1, "name": "Test 4 - Download Kubeflow Manifests (Verification)", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210345#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516245#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210345#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516245#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210345#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516245#step:11:1" } ], "duration_seconds": 2, @@ -36358,7 +36358,7 @@ "dashboard_link": "/linux/opensource_packages/kubernetes", "job_url_resolution_status": "central_exact", "package_slug": "kubernetes", - "production_refreshed_at": "2026-05-14T19:37:17.359559+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.576155+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -36370,15 +36370,15 @@ }, "run": { "attempt": "1", - "id": "25877375677", + "id": "26658685142", "job_name": "test-kubernetes / test-kubernetes", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:01Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044787" + "timestamp": "2026-05-29T19:48:11Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370500" }, "schema_version": "2.0", "tests": { @@ -36387,37 +36387,37 @@ "duration_seconds": 0, "name": "Test 1 - Check kubectl binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044787#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370500#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044787#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370500#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044787#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370500#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Check cluster-info graceful failure", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044787#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370500#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044787#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370500#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044787#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370500#step:11:1" } ], "duration_seconds": 0, @@ -36435,7 +36435,7 @@ "dashboard_link": "/linux/opensource_packages/kubevela", "job_url_resolution_status": "central_exact", "package_slug": "kubevela", - "production_refreshed_at": "2026-05-14T19:37:17.359878+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.576454+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -36449,15 +36449,15 @@ }, "run": { "attempt": "1", - "id": "25877427741", + "id": "26658731236", "job_name": "test-kubevela / test-kubevela", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:05Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218868" + "timestamp": "2026-05-29T19:49:14Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529317" }, "schema_version": "2.0", "tests": { @@ -36466,31 +36466,31 @@ "duration_seconds": 0, "name": "Test 1 - Check vela binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218868#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529317#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218868#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529317#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218868#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529317#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Check completion output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218868#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529317#step:9:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218868#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529317#step:10:1" }, { "comparison": "Current pinned KubeVela version 1.10.0 passed smoke tests in this run. Regression validation downloaded the candidate Arm64 archive from https://github.com/kubevela/kubevela/releases/download/v1.10.1/kubectl-vela-v1.10.1-linux-arm64.tar.gz successfully, and the candidate binary reported version 1.10.1 on Arm64.", @@ -36502,10 +36502,10 @@ "next_installed_version": "1.10.1", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218868#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529317#step:11:1" } ], - "duration_seconds": 1, + "duration_seconds": 2, "failed": 0, "passed": 6, "skipped": 0 @@ -36520,7 +36520,7 @@ "dashboard_link": "/linux/opensource_packages/kubevirt", "job_url_resolution_status": "central_exact", "package_slug": "kubevirt", - "production_refreshed_at": "2026-05-14T19:37:17.360071+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.576639+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -36532,15 +36532,15 @@ }, "run": { "attempt": "1", - "id": "25877387746", + "id": "26658696365", "job_name": "test-kubevirt / test-kubevirt", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:17Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084623" + "timestamp": "2026-05-29T19:48:25Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407353" }, "schema_version": "2.0", "tests": { @@ -36549,37 +36549,37 @@ "duration_seconds": 0, "name": "Test 1 - Check virtctl binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084623#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407353#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084623#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407353#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084623#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407353#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Check image-upload help", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084623#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407353#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084623#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407353#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084623#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407353#step:11:1" } ], "duration_seconds": 0, @@ -36597,7 +36597,7 @@ "dashboard_link": "/linux/opensource_packages/kubewarden-audit-scanner", "job_url_resolution_status": "central_exact", "package_slug": "kubewarden-audit-scanner", - "production_refreshed_at": "2026-05-14T19:37:17.360314+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.576816+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -36611,15 +36611,15 @@ }, "run": { "attempt": "1", - "id": "25877387746", + "id": "26658696365", "job_name": "test-kubewarden-audit-scanner / test-kubewarden-audit-scanner", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:15Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084577" + "timestamp": "2026-05-29T19:48:24Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407665" }, "schema_version": "2.0", "tests": { @@ -36628,46 +36628,46 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084577#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407665#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084577#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407665#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084577#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407665#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084577#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407665#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084577#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407665#step:10:1" }, { "comparison": "Current pinned Kubewarden Audit Scanner version (devel) passed smoke tests in this run. Regression validation rebuilt candidate version 1.25.0 on Arm64, and the installed binary reported version 1.25.0.", "current_version": "(devel)", "decision": "next_install_validated", - "duration_seconds": 57, + "duration_seconds": 59, "latest_version": "1.25.0", "name": "Test 6 - Regression Validation", "next_installed_version": "1.25.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084577#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407665#step:11:1" } ], - "duration_seconds": 57, + "duration_seconds": 59, "failed": 0, "passed": 6, "skipped": 0 @@ -36682,7 +36682,7 @@ "dashboard_link": "/linux/opensource_packages/kubewarden-controller", "job_url_resolution_status": "central_exact", "package_slug": "kubewarden-controller", - "production_refreshed_at": "2026-05-14T19:37:17.360522+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.577003+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -36694,15 +36694,15 @@ }, "run": { "attempt": "1", - "id": "25877392111", + "id": "26658699892", "job_name": "test-kubewarden-controller / test-kubewarden-controller", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:23Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095684" + "timestamp": "2026-05-29T19:48:30Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421176" }, "schema_version": "2.0", "tests": { @@ -36711,37 +36711,37 @@ "duration_seconds": 0, "name": "Test 1 - Artifact Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095684#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421176#step:6:1" }, { "duration_seconds": 1, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095684#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421176#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Help Output Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095684#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421176#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095684#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421176#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095684#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421176#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095684#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421176#step:11:1" } ], "duration_seconds": 1, @@ -36759,7 +36759,7 @@ "dashboard_link": "/linux/opensource_packages/kubewarden-kwctl", "job_url_resolution_status": "central_exact", "package_slug": "kubewarden-kwctl", - "production_refreshed_at": "2026-05-14T19:37:17.360723+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.577183+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -36773,15 +36773,15 @@ }, "run": { "attempt": "1", - "id": "25877387746", + "id": "26658696365", "job_name": "test-kubewarden-kwctl / test-kubewarden-kwctl", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:15Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084601" + "timestamp": "2026-05-29T19:48:24Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407537" }, "schema_version": "2.0", "tests": { @@ -36790,46 +36790,46 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084601#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407537#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084601#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407537#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084601#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407537#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084601#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407537#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084601#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407537#step:10:1" }, { "comparison": "Current pinned kwctl version 1.29.0 passed smoke tests in this run. Regression validation installed candidate version 1.29.1 on Arm64, and the installed binary reported version 1.29.1.", "current_version": "1.29.0", "decision": "next_install_validated", - "duration_seconds": 1, + "duration_seconds": 0, "latest_version": "1.29.1", "name": "Test 6 - Regression Validation", "next_installed_version": "1.29.1", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084601#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407537#step:11:1" } ], - "duration_seconds": 1, + "duration_seconds": 0, "failed": 0, "passed": 6, "skipped": 0 @@ -36844,7 +36844,7 @@ "dashboard_link": "/linux/opensource_packages/kubewarden-policy-server", "job_url_resolution_status": "central_exact", "package_slug": "kubewarden-policy-server", - "production_refreshed_at": "2026-05-14T19:37:17.360941+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.577396+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -36856,15 +36856,15 @@ }, "run": { "attempt": "1", - "id": "25877415436", + "id": "26658721315", "job_name": "test-kubewarden-policy-server / test-kubewarden-policy-server", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:50Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180679" + "timestamp": "2026-05-29T19:48:56Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491664" }, "schema_version": "2.0", "tests": { @@ -36873,37 +36873,37 @@ "duration_seconds": 0, "name": "Test 1 - Artifact Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180679#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491664#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180679#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491664#step:7:1" }, { "duration_seconds": 1, "name": "Test 3 - Help Output Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180679#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491664#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180679#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491664#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180679#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491664#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180679#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491664#step:11:1" } ], "duration_seconds": 1, @@ -36921,7 +36921,7 @@ "dashboard_link": "/linux/opensource_packages/kvm", "job_url_resolution_status": "central_exact", "package_slug": "kvm", - "production_refreshed_at": "2026-05-14T19:37:17.361164+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.577573+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -36933,15 +36933,15 @@ }, "run": { "attempt": "1", - "id": "25877423406", + "id": "26658727918", "job_name": "test-kvm / test-kvm", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:02Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209730" + "timestamp": "2026-05-29T19:49:05Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516085" }, "schema_version": "2.0", "tests": { @@ -36950,37 +36950,37 @@ "duration_seconds": 0, "name": "Test 1 - Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209730#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516085#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209730#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516085#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Help Output Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209730#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516085#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209730#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516085#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209730#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516085#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209730#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516085#step:11:1" } ], "duration_seconds": 0, @@ -36998,7 +36998,7 @@ "dashboard_link": "/linux/opensource_packages/kylin", "job_url_resolution_status": "central_exact", "package_slug": "kylin", - "production_refreshed_at": "2026-05-14T19:37:17.361358+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.577743+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -37012,15 +37012,15 @@ }, "run": { "attempt": "1", - "id": "25877379982", + "id": "26658688675", "job_name": "test-kylin / test-kylin", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:05Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057266" + "timestamp": "2026-05-29T19:48:15Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380600" }, "schema_version": "2.0", "tests": { @@ -37029,46 +37029,46 @@ "duration_seconds": 0, "name": "Test 1 - Check Kylin scripts exist", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057266#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380600#step:6:1" }, { "duration_seconds": 4, "name": "Test 2 - Check release version mapping", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057266#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380600#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Kylin help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057266#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380600#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057266#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380600#step:9:1" }, { - "duration_seconds": 6, + "duration_seconds": 5, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057266#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380600#step:10:1" }, { "comparison": "Current pinned Kylin version 5.0.0 passed smoke tests in this run. Regression validation downloaded and extracted candidate version 5.0.2 on Arm64 successfully, and the candidate scripts completed the expected bounded usage and environment-check paths.", "current_version": "5.0.0", "decision": "next_install_validated", - "duration_seconds": 13, + "duration_seconds": 24, "latest_version": "5.0.2", "name": "Test 6 - Regression Validation", "next_installed_version": "5.0.2", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057266#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380600#step:11:1" } ], - "duration_seconds": 22, + "duration_seconds": 33, "failed": 0, "passed": 6, "skipped": 0 @@ -37083,7 +37083,7 @@ "dashboard_link": "/linux/opensource_packages/kyuubi", "job_url_resolution_status": "central_exact", "package_slug": "kyuubi", - "production_refreshed_at": "2026-05-14T19:37:17.361560+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.577926+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -37097,15 +37097,15 @@ }, "run": { "attempt": "1", - "id": "25877399008", + "id": "26658707245", "job_name": "test-kyuubi / test-kyuubi", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:36Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125692" + "timestamp": "2026-05-29T19:48:38Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445376" }, "schema_version": "2.0", "tests": { @@ -37114,46 +37114,46 @@ "duration_seconds": 0, "name": "Test 1 - Check Kyuubi binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125692#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445376#step:6:1" }, { "duration_seconds": 1, "name": "Test 2 - Check Kyuubi release version mapping", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125692#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445376#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Kyuubi help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125692#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445376#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125692#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445376#step:9:1" }, { "duration_seconds": 3, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125692#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445376#step:10:1" }, { "comparison": "Current pinned Kyuubi release 1.10.3 passed smoke tests in this run. Regression validation downloaded and extracted candidate version 1.11.0 on Arm64 successfully, and the candidate distribution exposed the expected help output.", "current_version": "1.10.3", "decision": "next_install_validated", - "duration_seconds": 17, + "duration_seconds": 9, "latest_version": "1.11.0", "name": "Test 6 - Regression Validation", "next_installed_version": "1.11.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125692#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445376#step:11:1" } ], - "duration_seconds": 21, + "duration_seconds": 13, "failed": 0, "passed": 6, "skipped": 0 @@ -37168,7 +37168,7 @@ "dashboard_link": "/linux/opensource_packages/kyverno", "job_url_resolution_status": "central_exact", "package_slug": "kyverno", - "production_refreshed_at": "2026-05-14T19:37:17.361783+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.578101+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -37182,63 +37182,63 @@ }, "run": { "attempt": "1", - "id": "25877379982", + "id": "26658688675", "job_name": "test-kyverno / test-kyverno", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:05Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057379" + "timestamp": "2026-05-29T19:48:15Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380833" }, "schema_version": "2.0", "tests": { "details": [ { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057379#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380833#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057379#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380833#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057379#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380833#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057379#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380833#step:9:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057379#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380833#step:10:1" }, { "comparison": "Current pinned version 1.13.0 passed smoke tests in this run. Regression validation then verified the newer stable Arm64 candidate 1.13.1 successfully.", "current_version": "1.13.0", "decision": "next_install_validated", - "duration_seconds": 1, + "duration_seconds": 2, "latest_version": "1.13.1", "name": "Test 6 - Regression Validation", "next_installed_version": "1.13.1", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057379#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380833#step:11:1" } ], - "duration_seconds": 1, + "duration_seconds": 3, "failed": 0, "passed": 6, "skipped": 0 @@ -37253,7 +37253,7 @@ "dashboard_link": "/linux/opensource_packages/lammps", "job_url_resolution_status": "central_exact", "package_slug": "lammps", - "production_refreshed_at": "2026-05-14T19:37:17.362002+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.578290+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -37265,15 +37265,15 @@ }, "run": { "attempt": "1", - "id": "25877423406", + "id": "26658727918", "job_name": "test-lammps / test-lammps", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:01Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210137" + "timestamp": "2026-05-29T19:49:07Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516136" }, "schema_version": "2.0", "tests": { @@ -37282,40 +37282,40 @@ "duration_seconds": 0, "name": "Test 1 - Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210137#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516136#step:6:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210137#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516136#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Help Output Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210137#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516136#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210137#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516136#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210137#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516136#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210137#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516136#step:11:1" } ], - "duration_seconds": 0, + "duration_seconds": 1, "failed": 0, "passed": 6, "skipped": 0 @@ -37330,7 +37330,7 @@ "dashboard_link": "/linux/opensource_packages/langchain", "job_url_resolution_status": "central_exact", "package_slug": "langchain", - "production_refreshed_at": "2026-05-14T19:37:17.362186+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.578465+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -37338,19 +37338,19 @@ }, "package": { "name": "LangChain", - "version": "1.3.0" + "version": "1.3.2" }, "run": { "attempt": "1", - "id": "25877383844", + "id": "26658692522", "job_name": "test-langchain / test-langchain", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:12Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071437" + "timestamp": "2026-05-29T19:48:21Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394736" }, "schema_version": "2.0", "tests": { @@ -37359,40 +37359,40 @@ "duration_seconds": 0, "name": "Test 1 - Check Module Import", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071437#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394736#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071437#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394736#step:7:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 3 - Check Package Metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071437#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394736#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071437#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394736#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071437#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394736#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071437#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394736#step:11:1" } ], - "duration_seconds": 1, + "duration_seconds": 0, "failed": 0, "passed": 6, "skipped": 0 @@ -37407,7 +37407,7 @@ "dashboard_link": "/linux/opensource_packages/langflow", "job_url_resolution_status": "central_exact", "package_slug": "langflow", - "production_refreshed_at": "2026-05-14T19:37:17.362402+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.578635+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -37421,15 +37421,15 @@ }, "run": { "attempt": "1", - "id": "25877427741", + "id": "26658731236", "job_name": "test-langflow / test-langflow", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:08Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218970" + "timestamp": "2026-05-29T19:49:14Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529761" }, "schema_version": "2.0", "tests": { @@ -37438,31 +37438,31 @@ "duration_seconds": 1, "name": "Test 1 - Package installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218970#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529761#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Version metadata matches baseline", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218970#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529761#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Installed files metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218970#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529761#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218970#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529761#step:10:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218970#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529761#step:11:1" }, { "comparison": "Current pinned package version 0.0.31 passed smoke tests in this run, and the newer stable PyPI candidate 0.0.32 installed successfully on Arm64.", @@ -37474,7 +37474,7 @@ "next_installed_version": "0.0.32", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218970#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529761#step:12:1" } ], "duration_seconds": 28, @@ -37492,7 +37492,7 @@ "dashboard_link": "/linux/opensource_packages/lapack", "job_url_resolution_status": "central_exact", "package_slug": "lapack", - "production_refreshed_at": "2026-05-14T19:37:17.362632+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.578813+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -37504,15 +37504,15 @@ }, "run": { "attempt": "1", - "id": "25877379982", + "id": "26658688675", "job_name": "test-lapack / test-lapack", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:05Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057246" + "timestamp": "2026-05-29T19:48:15Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380798" }, "schema_version": "2.0", "tests": { @@ -37521,37 +37521,37 @@ "duration_seconds": 0, "name": "Test 1 - Check Library Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057246#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380798#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057246#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380798#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Build Configuration", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057246#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380798#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057246#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380798#step:9:1" }, { "duration_seconds": 1, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057246#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380798#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057246#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380798#step:11:1" } ], "duration_seconds": 1, @@ -37569,7 +37569,7 @@ "dashboard_link": "/linux/opensource_packages/lepton-eda", "job_url_resolution_status": "central_exact", "package_slug": "lepton-eda", - "production_refreshed_at": "2026-05-14T19:37:17.362855+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.578992+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -37581,15 +37581,15 @@ }, "run": { "attempt": "1", - "id": "25877427741", + "id": "26658731236", "job_name": "test-lepton-eda / test-lepton-eda", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:09Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218755" + "timestamp": "2026-05-29T19:49:11Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529798" }, "schema_version": "2.0", "tests": { @@ -37598,40 +37598,40 @@ "duration_seconds": 0, "name": "Test 1 - Package-manager install evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218755#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529798#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Installed Arm64 package metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218755#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529798#step:7:1" }, { - "duration_seconds": 28, + "duration_seconds": 27, "name": "Test 3 - CLI version starts on Arm", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218755#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529798#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Arm64 runner gate", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218755#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529798#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Headless runtime smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218755#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529798#step:10:1" }, { "duration_seconds": 0, "name": "Test 6 - Regression validation applicability", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218755#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529798#step:11:1" } ], - "duration_seconds": 28, + "duration_seconds": 27, "failed": 0, "passed": 6, "skipped": 0 @@ -37646,7 +37646,7 @@ "dashboard_link": "/linux/opensource_packages/leveldb", "job_url_resolution_status": "central_exact", "package_slug": "leveldb", - "production_refreshed_at": "2026-05-14T19:37:17.363052+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.579181+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -37658,54 +37658,54 @@ }, "run": { "attempt": "1", - "id": "25877392111", + "id": "26658699892", "job_name": "test-leveldb / test-leveldb", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:23Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096551" + "timestamp": "2026-05-29T19:48:30Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420861" }, "schema_version": "2.0", "tests": { "details": [ { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 1 - Check Header Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096551#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420861#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096551#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420861#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Configuration or Linkage", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096551#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420861#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096551#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420861#step:9:1" }, { "duration_seconds": 1, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096551#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420861#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096551#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420861#step:11:1" } ], "duration_seconds": 1, @@ -37723,7 +37723,7 @@ "dashboard_link": "/linux/opensource_packages/libXext", "job_url_resolution_status": "central_exact", "package_slug": "libXext", - "production_refreshed_at": "2026-05-14T19:37:17.363249+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.579394+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -37735,15 +37735,15 @@ }, "run": { "attempt": "1", - "id": "25877419588", + "id": "26658724696", "job_name": "test-libxext / test-libxext", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:59Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192403" + "timestamp": "2026-05-29T19:49:01Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504196" }, "schema_version": "2.0", "tests": { @@ -37752,40 +37752,40 @@ "duration_seconds": 0, "name": "Test 1 - Check header installation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192403#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504196#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192403#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504196#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check pkg-config flags", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192403#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504196#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192403#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504196#step:9:1" }, { - "duration_seconds": 1, + "duration_seconds": 2, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192403#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504196#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192403#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504196#step:11:1" } ], - "duration_seconds": 1, + "duration_seconds": 2, "failed": 0, "passed": 6, "skipped": 0 @@ -37800,7 +37800,7 @@ "dashboard_link": "/linux/opensource_packages/libaom", "job_url_resolution_status": "central_exact", "package_slug": "libaom", - "production_refreshed_at": "2026-05-14T19:37:17.363453+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.579577+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -37812,54 +37812,54 @@ }, "run": { "attempt": "1", - "id": "25877359516", + "id": "26658670904", "job_name": "test-libaom / test-libaom", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:44Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991138" + "timestamp": "2026-05-29T19:47:53Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321649" }, "schema_version": "2.0", "tests": { "details": [ { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 1 - Check Libaom library exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991138#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321649#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Libaom header files", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991138#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321649#step:7:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 3 - Verify Architecture Linkage", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991138#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321649#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991138#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321649#step:9:1" }, { "duration_seconds": 1, "name": "Test 5 - Functional Validation (C Compilation Test)", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991138#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321649#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991138#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321649#step:11:1" } ], "duration_seconds": 2, @@ -37877,7 +37877,7 @@ "dashboard_link": "/linux/opensource_packages/libconfig", "job_url_resolution_status": "central_exact", "package_slug": "libconfig", - "production_refreshed_at": "2026-05-14T19:37:17.363669+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.579757+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -37889,15 +37889,15 @@ }, "run": { "attempt": "1", - "id": "25877427741", + "id": "26658731236", "job_name": "test-libconfig / test-libconfig", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:06Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217750" + "timestamp": "2026-05-29T19:49:10Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575528437" }, "schema_version": "2.0", "tests": { @@ -37906,37 +37906,37 @@ "duration_seconds": 0, "name": "Test 1 - Check header files exist", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217750#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575528437#step:6:1" }, { "duration_seconds": 1, "name": "Test 2 - Compile C example", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217750#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575528437#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Run compiled example", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217750#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575528437#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217750#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575528437#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217750#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575528437#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217750#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575528437#step:11:1" } ], "duration_seconds": 1, @@ -37954,7 +37954,7 @@ "dashboard_link": "/linux/opensource_packages/libdrm", "job_url_resolution_status": "central_exact", "package_slug": "libdrm", - "production_refreshed_at": "2026-05-14T19:37:17.363875+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.579940+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -37966,15 +37966,15 @@ }, "run": { "attempt": "1", - "id": "25877419588", + "id": "26658724696", "job_name": "test-libdrm / test-libdrm", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:08Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192656" + "timestamp": "2026-05-29T19:49:01Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504033" }, "schema_version": "2.0", "tests": { @@ -37983,37 +37983,37 @@ "duration_seconds": 0, "name": "Test 1 - Check header installation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192656#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504033#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192656#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504033#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check pkg-config flags", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192656#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504033#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192656#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504033#step:9:1" }, { "duration_seconds": 1, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192656#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504033#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192656#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504033#step:11:1" } ], "duration_seconds": 1, @@ -38031,7 +38031,7 @@ "dashboard_link": "/linux/opensource_packages/libev", "job_url_resolution_status": "central_exact", "package_slug": "libev", - "production_refreshed_at": "2026-05-14T19:37:17.364080+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.580113+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -38043,15 +38043,15 @@ }, "run": { "attempt": "1", - "id": "25877406767", + "id": "26658714432", "job_name": "test-libev / test-libev", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:44Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155531" + "timestamp": "2026-05-29T19:48:48Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469267" }, "schema_version": "2.0", "tests": { @@ -38060,40 +38060,40 @@ "duration_seconds": 0, "name": "Test 1 - Check headers and library are present", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155531#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469267#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check package version", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155531#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469267#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check API surface", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155531#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469267#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155531#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469267#step:9:1" }, { "duration_seconds": 1, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155531#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469267#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155531#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469267#step:11:1" } ], - "duration_seconds": 0, + "duration_seconds": 1, "failed": 0, "passed": 6, "skipped": 0 @@ -38108,7 +38108,7 @@ "dashboard_link": "/linux/opensource_packages/libevent", "job_url_resolution_status": "central_exact", "package_slug": "libevent", - "production_refreshed_at": "2026-05-14T19:37:17.364295+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.580319+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -38120,15 +38120,15 @@ }, "run": { "attempt": "1", - "id": "25877423406", + "id": "26658727918", "job_name": "test-libevent / test-libevent", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:01Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210190" + "timestamp": "2026-05-29T19:49:05Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515029" }, "schema_version": "2.0", "tests": { @@ -38137,37 +38137,37 @@ "duration_seconds": 0, "name": "Test 1 - Check header installation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210190#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515029#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210190#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515029#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check pkg-config flags", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210190#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515029#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210190#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515029#step:9:1" }, { "duration_seconds": 1, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210190#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515029#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210190#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515029#step:11:1" } ], "duration_seconds": 1, @@ -38185,7 +38185,7 @@ "dashboard_link": "/linux/opensource_packages/libfastcommon", "job_url_resolution_status": "central_exact", "package_slug": "libfastcommon", - "production_refreshed_at": "2026-05-14T19:37:17.364504+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.580498+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "no_newer_stable_available", @@ -38199,48 +38199,48 @@ }, "run": { "attempt": "1", - "id": "25877383844", + "id": "26658692522", "job_name": "test-libfastcommon / test-libfastcommon", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:12Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071242" + "timestamp": "2026-05-29T19:48:20Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394324" }, "schema_version": "2.0", "tests": { "details": [ { - "duration_seconds": 26, + "duration_seconds": 29, "name": "Test 1 - Check Library Artifacts", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071242#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394324#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Provenance", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071242#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394324#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Header Configuration", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071242#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394324#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071242#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394324#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071242#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394324#step:10:1" }, { "comparison": "Current pinned Libfastcommon version 1.0.84 already matches the newest stable upstream release, so there is no newer Arm64 candidate to validate for Test 6.", @@ -38252,10 +38252,10 @@ "next_installed_version": "1.0.84", "regression_result": "No newer stable release available for Test 6", "status": "skipped", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071242#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394324#step:11:1" } ], - "duration_seconds": 26, + "duration_seconds": 29, "failed": 0, "passed": 5, "skipped": 1 @@ -38270,7 +38270,7 @@ "dashboard_link": "/linux/opensource_packages/libgav1", "job_url_resolution_status": "central_exact", "package_slug": "libgav1", - "production_refreshed_at": "2026-05-14T19:37:17.364837+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.580773+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -38282,15 +38282,15 @@ }, "run": { "attempt": "1", - "id": "25877423406", + "id": "26658727918", "job_name": "test-libgav1 / test-libgav1", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:05Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210333" + "timestamp": "2026-05-29T19:49:05Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515963" }, "schema_version": "2.0", "tests": { @@ -38299,40 +38299,40 @@ "duration_seconds": 0, "name": "Test 1 - Check header installation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210333#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515963#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210333#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515963#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check pkg-config flags", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210333#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515963#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210333#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515963#step:9:1" }, { - "duration_seconds": 2, + "duration_seconds": 1, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210333#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515963#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210333#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515963#step:11:1" } ], - "duration_seconds": 2, + "duration_seconds": 1, "failed": 0, "passed": 6, "skipped": 0 @@ -38347,7 +38347,7 @@ "dashboard_link": "/linux/opensource_packages/libhelium", "job_url_resolution_status": "central_exact", "package_slug": "libhelium", - "production_refreshed_at": "2026-05-14T19:37:17.365063+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.580964+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -38361,15 +38361,15 @@ }, "run": { "attempt": "1", - "id": "25877375677", + "id": "26658685142", "job_name": "test-libhelium / test-libhelium", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:04Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045223" + "timestamp": "2026-05-29T19:48:11Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370891" }, "schema_version": "2.0", "tests": { @@ -38378,31 +38378,31 @@ "duration_seconds": 0, "name": "Test 1 - Artifact Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045223#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370891#step:6:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045223#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370891#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Configuration Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045223#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370891#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045223#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370891#step:9:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045223#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370891#step:10:1" }, { "comparison": "Current pinned Libhelium version 1.1.0 passed smoke tests in this run. Regression validation installed candidate version 1.1.1 on Arm64, and the installed artifact reported version 1.", @@ -38414,7 +38414,7 @@ "next_installed_version": "1", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045223#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370891#step:11:1" } ], "duration_seconds": 12, @@ -38432,7 +38432,7 @@ "dashboard_link": "/linux/opensource_packages/libjpeg", "job_url_resolution_status": "central_exact", "package_slug": "libjpeg", - "production_refreshed_at": "2026-05-14T19:37:17.365281+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.581146+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -38444,15 +38444,15 @@ }, "run": { "attempt": "1", - "id": "25877423406", + "id": "26658727918", "job_name": "test-libjpeg / test-libjpeg", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:08Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209907" + "timestamp": "2026-05-29T19:49:05Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575514988" }, "schema_version": "2.0", "tests": { @@ -38461,40 +38461,40 @@ "duration_seconds": 0, "name": "Test 1 - Check header installation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209907#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575514988#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209907#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575514988#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check shared library registration", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209907#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575514988#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209907#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575514988#step:9:1" }, { - "duration_seconds": 4, + "duration_seconds": 1, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209907#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575514988#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209907#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575514988#step:11:1" } ], - "duration_seconds": 4, + "duration_seconds": 1, "failed": 0, "passed": 6, "skipped": 0 @@ -38509,7 +38509,7 @@ "dashboard_link": "/linux/opensource_packages/libmpc", "job_url_resolution_status": "central_exact", "package_slug": "libmpc", - "production_refreshed_at": "2026-05-14T19:37:17.365453+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.581343+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -38521,15 +38521,15 @@ }, "run": { "attempt": "1", - "id": "25877383844", + "id": "26658692522", "job_name": "test-libmpc / test-libmpc", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:12Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048070561" + "timestamp": "2026-05-29T19:48:20Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575393122" }, "schema_version": "2.0", "tests": { @@ -38538,37 +38538,37 @@ "duration_seconds": 0, "name": "Test 1 - Check Library Artifacts", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048070561#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575393122#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048070561#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575393122#step:7:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 3 - Check Header Configuration", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048070561#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575393122#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048070561#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575393122#step:9:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048070561#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575393122#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048070561#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575393122#step:11:1" } ], "duration_seconds": 1, @@ -38586,7 +38586,7 @@ "dashboard_link": "/linux/opensource_packages/libopus", "job_url_resolution_status": "central_exact", "package_slug": "libopus", - "production_refreshed_at": "2026-05-14T19:37:17.365654+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.581535+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -38600,15 +38600,15 @@ }, "run": { "attempt": "1", - "id": "25877403044", + "id": "26658710721", "job_name": "test-libopus / test-libopus", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:36Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140738" + "timestamp": "2026-05-29T19:48:44Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456279" }, "schema_version": "2.0", "tests": { @@ -38617,46 +38617,46 @@ "duration_seconds": 0, "name": "Test 1 - Check headers and library artifacts exist", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140738#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456279#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140738#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456279#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check API surface", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140738#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456279#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140738#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456279#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140738#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456279#step:10:1" }, { "comparison": "Libopus baseline version 1.5.1 passed smoke tests in this run. Regression validation rebuilt candidate version 1.5.2 on Arm64, the installed artifact reported version 1.5.2, and the isolated encoder smoke program succeeded.", "current_version": "1.5.1", "decision": "next_install_validated", - "duration_seconds": 32, + "duration_seconds": 33, "latest_version": "1.5.2", "name": "Test 6 - Regression Validation", "next_installed_version": "1.5.2", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140738#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456279#step:11:1" } ], - "duration_seconds": 32, + "duration_seconds": 33, "failed": 0, "passed": 6, "skipped": 0 @@ -38671,7 +38671,7 @@ "dashboard_link": "/linux/opensource_packages/liboqs", "job_url_resolution_status": "central_exact", "package_slug": "liboqs", - "production_refreshed_at": "2026-05-14T19:37:17.365883+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.581717+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -38685,15 +38685,15 @@ }, "run": { "attempt": "1", - "id": "25877383844", + "id": "26658692522", "job_name": "test-liboqs / test-liboqs", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:11Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071400" + "timestamp": "2026-05-29T19:48:19Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394299" }, "schema_version": "2.0", "tests": { @@ -38702,46 +38702,46 @@ "duration_seconds": 0, "name": "Test 1 - Check Header Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071400#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394299#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071400#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394299#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Configuration or Linkage", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071400#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394299#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071400#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394299#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071400#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394299#step:10:1" }, { "comparison": "LibOQS baseline version 0.12.0 passed smoke tests in this run. Regression validation rebuilt candidate version 0.13.0 on Arm64, the installed headers reported version 0.13.0, and the isolated post-quantum smoke program succeeded.", "current_version": "0.12.0", "decision": "next_install_validated", - "duration_seconds": 41, + "duration_seconds": 42, "latest_version": "0.13.0", "name": "Test 6 - Regression Validation", "next_installed_version": "0.13.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071400#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394299#step:11:1" } ], - "duration_seconds": 41, + "duration_seconds": 42, "failed": 0, "passed": 6, "skipped": 0 @@ -38756,7 +38756,7 @@ "dashboard_link": "/linux/opensource_packages/libpcap", "job_url_resolution_status": "central_exact", "package_slug": "libpcap", - "production_refreshed_at": "2026-05-14T19:37:17.366098+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.581906+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -38768,15 +38768,15 @@ }, "run": { "attempt": "1", - "id": "25877395502", + "id": "26658703674", "job_name": "test-libpcap / test-libpcap", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:26Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110099" + "timestamp": "2026-05-29T19:48:34Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433033" }, "schema_version": "2.0", "tests": { @@ -38785,37 +38785,37 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110099#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433033#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110099#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433033#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110099#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433033#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110099#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433033#step:9:1" }, { "duration_seconds": 1, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110099#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433033#step:10:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110099#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433033#step:11:1" } ], "duration_seconds": 1, @@ -38833,7 +38833,7 @@ "dashboard_link": "/linux/opensource_packages/librecad", "job_url_resolution_status": "central_exact", "package_slug": "librecad", - "production_refreshed_at": "2026-05-14T19:37:17.366280+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.582082+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -38847,15 +38847,15 @@ }, "run": { "attempt": "1", - "id": "25877427741", + "id": "26658731236", "job_name": "test-librecad / test-librecad", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:11Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218978" + "timestamp": "2026-05-29T19:49:14Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529619" }, "schema_version": "2.0", "tests": { @@ -38864,46 +38864,46 @@ "duration_seconds": 0, "name": "Test 1 - Baseline package evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218978#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529619#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Baseline version and release alignment", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218978#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529619#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Package-specific source or docs evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218978#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529619#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Arm64 support gate", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218978#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529619#step:10:1" }, { "duration_seconds": 5, "name": "Test 5 - Bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218978#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529619#step:11:1" }, { "comparison": "Downloaded the next LibreCAD aarch64 AppImage candidate, verified Arm64 ELF contents, and started the GUI with Qt offscreen rendering on Arm64. No drawing workflow is claimed.", "current_version": "2.2.1.1", "decision": "limited_cpu_smoke_validated", - "duration_seconds": 26, + "duration_seconds": 22, "latest_version": "2.2.1.5", "name": "Test 6 - Regression Validation", "next_installed_version": "2.2.1.5", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218978#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529619#step:12:1" } ], - "duration_seconds": 26, + "duration_seconds": 22, "failed": 0, "passed": 6, "skipped": 0 @@ -38918,7 +38918,7 @@ "dashboard_link": "/linux/opensource_packages/libreoffice", "job_url_resolution_status": "central_exact", "package_slug": "libreoffice", - "production_refreshed_at": "2026-05-14T19:37:17.366461+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.582285+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -38930,15 +38930,15 @@ }, "run": { "attempt": "1", - "id": "25877383844", + "id": "26658692522", "job_name": "test-libreoffice / test-libreoffice", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:11Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071316" + "timestamp": "2026-05-29T19:48:18Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394705" }, "schema_version": "2.0", "tests": { @@ -38947,37 +38947,37 @@ "duration_seconds": 0, "name": "Test 1 - Check libreoffice binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071316#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394705#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check libreoffice version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071316#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394705#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check libreoffice help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071316#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394705#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071316#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394705#step:9:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071316#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394705#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071316#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394705#step:11:1" } ], "duration_seconds": 0, @@ -38995,7 +38995,7 @@ "dashboard_link": "/linux/opensource_packages/librepcb", "job_url_resolution_status": "central_exact", "package_slug": "librepcb", - "production_refreshed_at": "2026-05-14T19:37:17.366683+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.582471+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -39003,19 +39003,19 @@ }, "package": { "name": "LibrePCB", - "version": "2.0.1-2" + "version": "2.1.0-1" }, "run": { "attempt": "1", - "id": "25877427741", + "id": "26658731236", "job_name": "test-librepcb / test-librepcb", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:05Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218935" + "timestamp": "2026-05-29T19:49:14Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529355" }, "schema_version": "2.0", "tests": { @@ -39024,37 +39024,37 @@ "duration_seconds": 0, "name": "Test 1 - Package-manager install evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218935#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529355#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Installed Arm64 snap metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218935#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529355#step:7:1" }, { "duration_seconds": 2, "name": "Test 3 - CLI version starts on Arm", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218935#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529355#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Arm64 runner gate", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218935#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529355#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Headless runtime smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218935#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529355#step:10:1" }, { "duration_seconds": 0, "name": "Test 6 - Regression validation applicability", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218935#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529355#step:11:1" } ], "duration_seconds": 2, @@ -39072,7 +39072,7 @@ "dashboard_link": "/linux/opensource_packages/libunwind", "job_url_resolution_status": "central_exact", "package_slug": "libunwind", - "production_refreshed_at": "2026-05-14T19:37:17.366922+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.582645+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -39084,57 +39084,57 @@ }, "run": { "attempt": "1", - "id": "25877359516", + "id": "26658670904", "job_name": "test-libunwind / test-libunwind", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:44Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991025" + "timestamp": "2026-05-29T19:47:53Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321839" }, "schema_version": "2.0", "tests": { "details": [ { - "duration_seconds": 26, + "duration_seconds": 8, "name": "Test 1 - Check Libunwind library exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991025#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321839#step:6:1" }, { - "duration_seconds": 2, + "duration_seconds": 1, "name": "Test 2 - Check Libunwind header files", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991025#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321839#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Verify Architecture Linkage", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991025#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321839#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991025#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321839#step:9:1" }, { - "duration_seconds": 2, + "duration_seconds": 1, "name": "Test 5 - Functional Validation (C Compilation Test)", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991025#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321839#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991025#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321839#step:11:1" } ], - "duration_seconds": 30, + "duration_seconds": 10, "failed": 0, "passed": 6, "skipped": 0 @@ -39149,7 +39149,7 @@ "dashboard_link": "/linux/opensource_packages/libuv", "job_url_resolution_status": "central_exact", "package_slug": "libuv", - "production_refreshed_at": "2026-05-14T19:37:17.367122+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.582814+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -39161,15 +39161,15 @@ }, "run": { "attempt": "1", - "id": "25877363365", + "id": "26658674448", "job_name": "test-libuv / test-libuv", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:47Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001013" + "timestamp": "2026-05-29T19:47:56Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334889" }, "schema_version": "2.0", "tests": { @@ -39178,40 +39178,40 @@ "duration_seconds": 0, "name": "Test 1 - Check libuv library exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001013#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334889#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check libuv headers exist", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001013#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334889#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check libuv pkg-config", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001013#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334889#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001013#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334889#step:9:1" }, { - "duration_seconds": 2, + "duration_seconds": 1, "name": "Test 5 - Functional Validation (Compile tiny program)", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001013#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334889#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001013#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334889#step:11:1" } ], - "duration_seconds": 2, + "duration_seconds": 1, "failed": 0, "passed": 6, "skipped": 0 @@ -39226,7 +39226,7 @@ "dashboard_link": "/linux/opensource_packages/libvirt", "job_url_resolution_status": "central_exact", "package_slug": "libvirt", - "production_refreshed_at": "2026-05-14T19:37:17.367305+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.582982+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -39238,15 +39238,15 @@ }, "run": { "attempt": "1", - "id": "25877387746", + "id": "26658696365", "job_name": "test-libvirt / test-libvirt", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:20Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084441" + "timestamp": "2026-05-29T19:48:25Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407674" }, "schema_version": "2.0", "tests": { @@ -39255,37 +39255,37 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084441#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407674#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084441#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407674#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084441#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407674#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084441#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407674#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084441#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407674#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084441#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407674#step:11:1" } ], "duration_seconds": 0, @@ -39303,7 +39303,7 @@ "dashboard_link": "/linux/opensource_packages/libvpx", "job_url_resolution_status": "central_exact", "package_slug": "libvpx", - "production_refreshed_at": "2026-05-14T19:37:17.367507+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.583148+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -39315,15 +39315,15 @@ }, "run": { "attempt": "1", - "id": "25877403044", + "id": "26658710721", "job_name": "test-libvpx / test-libvpx", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:37Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140713" + "timestamp": "2026-05-29T19:48:42Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456084" }, "schema_version": "2.0", "tests": { @@ -39332,37 +39332,37 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140713#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456084#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140713#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456084#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Help Output or Configuration", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140713#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456084#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140713#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456084#step:9:1" }, { "duration_seconds": 1, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140713#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456084#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140713#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456084#step:11:1" } ], "duration_seconds": 1, @@ -39380,7 +39380,7 @@ "dashboard_link": "/linux/opensource_packages/libx264", "job_url_resolution_status": "central_exact", "package_slug": "libx264", - "production_refreshed_at": "2026-05-14T19:37:17.367686+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.583350+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -39392,15 +39392,15 @@ }, "run": { "attempt": "1", - "id": "25877367704", + "id": "26658677990", "job_name": "test-libx264 / test-libx264", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:55Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026729" + "timestamp": "2026-05-29T19:48:03Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347557" }, "schema_version": "2.0", "tests": { @@ -39409,37 +39409,37 @@ "duration_seconds": 0, "name": "Test 1 - Check x264 binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026729#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347557#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check x264 version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026729#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347557#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check x264 help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026729#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347557#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026729#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347557#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026729#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347557#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026729#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347557#step:11:1" } ], "duration_seconds": 0, @@ -39457,7 +39457,7 @@ "dashboard_link": "/linux/opensource_packages/libx265", "job_url_resolution_status": "central_exact", "package_slug": "libx265", - "production_refreshed_at": "2026-05-14T19:37:17.367922+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.583532+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -39471,15 +39471,15 @@ }, "run": { "attempt": "1", - "id": "25877371674", + "id": "26658681575", "job_name": "test-libx265 / test-libx265", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:59Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031039" + "timestamp": "2026-05-29T19:48:07Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357257" }, "schema_version": "2.0", "tests": { @@ -39488,31 +39488,31 @@ "duration_seconds": 0, "name": "Test 1 - Check x265 binary and headers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031039#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357257#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check x265 version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031039#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357257#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check x265 help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031039#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357257#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031039#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357257#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031039#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357257#step:10:1" }, { "comparison": "libx265 baseline version 3.6 passed smoke tests in this run. Regression validation rebuilt candidate version 4.0 on Arm64, the installed encoder reported version 4.0, and the isolated HEVC encode smoke succeeded.", @@ -39524,7 +39524,7 @@ "next_installed_version": "4.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031039#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357257#step:11:1" } ], "duration_seconds": 38, @@ -39542,7 +39542,7 @@ "dashboard_link": "/linux/opensource_packages/libxcb", "job_url_resolution_status": "central_exact", "package_slug": "libxcb", - "production_refreshed_at": "2026-05-14T19:37:17.368140+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.583720+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -39554,15 +39554,15 @@ }, "run": { "attempt": "1", - "id": "25877419588", + "id": "26658724696", "job_name": "test-libxcb / test-libxcb", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:59Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192525" + "timestamp": "2026-05-29T19:49:02Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504080" }, "schema_version": "2.0", "tests": { @@ -39571,40 +39571,40 @@ "duration_seconds": 0, "name": "Test 1 - Check header installation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192525#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504080#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192525#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504080#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check pkg-config flags", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192525#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504080#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192525#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504080#step:9:1" }, { - "duration_seconds": 2, + "duration_seconds": 1, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192525#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504080#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192525#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504080#step:11:1" } ], - "duration_seconds": 2, + "duration_seconds": 1, "failed": 0, "passed": 6, "skipped": 0 @@ -39619,7 +39619,7 @@ "dashboard_link": "/linux/opensource_packages/libxml2", "job_url_resolution_status": "central_exact", "package_slug": "libxml2", - "production_refreshed_at": "2026-05-14T19:37:17.368348+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.583902+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -39631,15 +39631,15 @@ }, "run": { "attempt": "1", - "id": "25877375677", + "id": "26658685142", "job_name": "test-libxml2 / test-libxml2", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:02Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044731" + "timestamp": "2026-05-29T19:48:11Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370539" }, "schema_version": "2.0", "tests": { @@ -39648,40 +39648,40 @@ "duration_seconds": 0, "name": "Test 1 - Artifact Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044731#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370539#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044731#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370539#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044731#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370539#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044731#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370539#step:9:1" }, { - "duration_seconds": 2, + "duration_seconds": 1, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044731#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370539#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044731#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370539#step:11:1" } ], - "duration_seconds": 2, + "duration_seconds": 1, "failed": 0, "passed": 6, "skipped": 0 @@ -39696,7 +39696,7 @@ "dashboard_link": "/linux/opensource_packages/liferay", "job_url_resolution_status": "central_exact", "package_slug": "liferay", - "production_refreshed_at": "2026-05-14T19:37:17.368550+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.584084+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -39708,15 +39708,15 @@ }, "run": { "attempt": "1", - "id": "25877415436", + "id": "26658721315", "job_name": "test-liferay / test-liferay", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:50Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179708" + "timestamp": "2026-05-29T19:48:55Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575490859" }, "schema_version": "2.0", "tests": { @@ -39725,37 +39725,37 @@ "duration_seconds": 0, "name": "Test 1 - Check liferay binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179708#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575490859#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179708#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575490859#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179708#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575490859#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179708#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575490859#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179708#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575490859#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179708#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575490859#step:11:1" } ], "duration_seconds": 0, @@ -39773,7 +39773,7 @@ "dashboard_link": "/linux/opensource_packages/lightgbm", "job_url_resolution_status": "central_exact", "package_slug": "lightgbm", - "production_refreshed_at": "2026-05-14T19:37:17.368763+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.584271+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -39785,54 +39785,54 @@ }, "run": { "attempt": "1", - "id": "25877371674", + "id": "26658681575", "job_name": "test-lightgbm / test-lightgbm", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:58Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031883" + "timestamp": "2026-05-29T19:48:08Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358608" }, "schema_version": "2.0", "tests": { "details": [ { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 1 - Import LightGBM", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031883#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358608#step:6:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031883#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358608#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Module Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031883#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358608#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031883#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358608#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031883#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358608#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031883#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358608#step:11:1" } ], "duration_seconds": 1, @@ -39850,7 +39850,7 @@ "dashboard_link": "/linux/opensource_packages/lighttpd", "job_url_resolution_status": "central_exact", "package_slug": "lighttpd", - "production_refreshed_at": "2026-05-14T19:37:17.368976+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.584460+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -39862,15 +39862,15 @@ }, "run": { "attempt": "1", - "id": "25877383844", + "id": "26658692522", "job_name": "test-lighttpd / test-lighttpd", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:13Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048070578" + "timestamp": "2026-05-29T19:48:20Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575393190" }, "schema_version": "2.0", "tests": { @@ -39879,37 +39879,37 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048070578#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575393190#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048070578#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575393190#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048070578#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575393190#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048070578#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575393190#step:9:1" }, { "duration_seconds": 2, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048070578#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575393190#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048070578#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575393190#step:11:1" } ], "duration_seconds": 2, @@ -39927,7 +39927,7 @@ "dashboard_link": "/linux/opensource_packages/lima", "job_url_resolution_status": "central_exact", "package_slug": "lima", - "production_refreshed_at": "2026-05-14T19:37:17.369182+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.584640+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -39941,15 +39941,15 @@ }, "run": { "attempt": "1", - "id": "25877427741", + "id": "26658731236", "job_name": "test-lima / test-lima", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:11Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218846" + "timestamp": "2026-05-29T19:49:12Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529691" }, "schema_version": "2.0", "tests": { @@ -39958,31 +39958,31 @@ "duration_seconds": 0, "name": "Test 1 - Baseline package evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218846#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529691#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Baseline version and release alignment", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218846#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529691#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Package-specific source or docs evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218846#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529691#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Arm64 support gate", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218846#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529691#step:10:1" }, { "duration_seconds": 1, "name": "Test 5 - Bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218846#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529691#step:11:1" }, { "comparison": "Test 6 downloaded the next Lima Linux-aarch64 release asset, verified limactl as AArch64, ran version/help, and exercised the non-VM limactl list path against an empty Lima home. No VM launch, guest boot, or container runtime claim is made.", @@ -39994,7 +39994,7 @@ "next_installed_version": "2.1.1", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218846#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529691#step:12:1" } ], "duration_seconds": 3, @@ -40012,7 +40012,7 @@ "dashboard_link": "/linux/opensource_packages/lime", "job_url_resolution_status": "central_exact", "package_slug": "lime", - "production_refreshed_at": "2026-05-14T19:37:17.369394+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.584832+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -40026,48 +40026,48 @@ }, "run": { "attempt": "1", - "id": "25877427741", + "id": "26658731236", "job_name": "test-lime / test-lime", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:12Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048219121" + "timestamp": "2026-05-29T19:49:11Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529563" }, "schema_version": "2.0", "tests": { "details": [ { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 1 - Package installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048219121#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529563#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Version metadata matches baseline", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048219121#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529563#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Installed files metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048219121#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529563#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048219121#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529563#step:10:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048219121#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529563#step:11:1" }, { "comparison": "Current pinned package version 0.1.1.1 passed smoke tests in this run, and the newer stable PyPI candidate 0.1.1.2 installed successfully on Arm64.", @@ -40079,10 +40079,10 @@ "next_installed_version": "0.1.1.2", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048219121#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529563#step:12:1" } ], - "duration_seconds": 16, + "duration_seconds": 15, "failed": 0, "passed": 6, "skipped": 0 @@ -40097,7 +40097,7 @@ "dashboard_link": "/linux/opensource_packages/linkerd", "job_url_resolution_status": "central_exact", "package_slug": "linkerd", - "production_refreshed_at": "2026-05-14T19:37:17.369685+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.585099+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -40109,15 +40109,15 @@ }, "run": { "attempt": "1", - "id": "25877406767", + "id": "26658714432", "job_name": "test-linkerd / test-linkerd", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:44Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154511" + "timestamp": "2026-05-29T19:48:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468594" }, "schema_version": "2.0", "tests": { @@ -40126,37 +40126,37 @@ "duration_seconds": 0, "name": "Test 1 - Check Linkerd binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154511#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468594#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154511#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468594#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154511#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468594#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154511#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468594#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154511#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468594#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154511#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468594#step:11:1" } ], "duration_seconds": 0, @@ -40174,7 +40174,7 @@ "dashboard_link": "/linux/opensource_packages/linstor-server", "job_url_resolution_status": "central_exact", "package_slug": "linstor-server", - "production_refreshed_at": "2026-05-14T19:37:17.369916+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.585291+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -40188,15 +40188,15 @@ }, "run": { "attempt": "1", - "id": "25877387746", + "id": "26658696365", "job_name": "test-linstor-server / test-linstor-server", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:15Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083655" + "timestamp": "2026-05-29T19:48:25Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407841" }, "schema_version": "2.0", "tests": { @@ -40205,46 +40205,46 @@ "duration_seconds": 0, "name": "Test 1 - Check recursive build artifacts", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083655#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407841#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check exact version metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083655#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407841#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Controller distribution help", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083655#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407841#step:8:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083655#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407841#step:9:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 5 - Check Satellite distribution help", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083655#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407841#step:10:1" }, { - "comparison": "Current LINSTOR baseline commit 87a659de4 passed Tests 1-5, and the next newer default-branch commit ff59f6933 built successfully with controller and satellite distributions on Arm64.", + "comparison": "Current LINSTOR baseline commit 87a659de4 passed Tests 1-5, and the next newer default-branch commit ca3970a6b built successfully with controller and satellite distributions on Arm64.", "current_version": "1.33.1-101-87a659de4", "decision": "next_install_validated", - "duration_seconds": 97, - "latest_version": "master-ff59f6933", + "duration_seconds": 102, + "latest_version": "master-ca3970a6b", "name": "Test 6 - Regression Validation", - "next_installed_version": "1.33.1-183-ff59f6933", + "next_installed_version": "1.34.0-rc.1", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083655#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407841#step:11:1" } ], - "duration_seconds": 97, + "duration_seconds": 103, "failed": 0, "passed": 6, "skipped": 0 @@ -40259,7 +40259,7 @@ "dashboard_link": "/linux/opensource_packages/linuxkit", "job_url_resolution_status": "central_exact", "package_slug": "linuxkit", - "production_refreshed_at": "2026-05-14T19:37:17.370141+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.585494+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -40273,15 +40273,15 @@ }, "run": { "attempt": "1", - "id": "25877419588", + "id": "26658724696", "job_name": "test-linuxkit / test-linuxkit", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:55Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192423" + "timestamp": "2026-05-29T19:49:01Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504176" }, "schema_version": "2.0", "tests": { @@ -40290,31 +40290,31 @@ "duration_seconds": 0, "name": "Test 1 - Check linuxkit binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192423#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504176#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check linuxkit version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192423#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504176#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check linuxkit help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192423#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504176#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192423#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504176#step:9:1" }, { - "duration_seconds": 12, + "duration_seconds": 17, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192423#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504176#step:10:1" }, { "comparison": "Current pinned version 1.5.3 passed smoke tests in this run. Regression validation then verified the newer stable Arm64 candidate 1.6.0 successfully.", @@ -40326,10 +40326,10 @@ "next_installed_version": "1.6.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192423#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504176#step:11:1" } ], - "duration_seconds": 13, + "duration_seconds": 18, "failed": 0, "passed": 6, "skipped": 0 @@ -40344,7 +40344,7 @@ "dashboard_link": "/linux/opensource_packages/litespeed_openlitespeed", "job_url_resolution_status": "central_exact", "package_slug": "litespeed_openlitespeed", - "production_refreshed_at": "2026-05-14T19:37:17.370349+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.585693+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -40358,15 +40358,15 @@ }, "run": { "attempt": "1", - "id": "25877411197", + "id": "26658717942", "job_name": "test-litespeed_openlitespeed / test-litespeed_openlitespeed", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:52Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175313" + "timestamp": "2026-05-29T19:48:52Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479791" }, "schema_version": "2.0", "tests": { @@ -40375,31 +40375,31 @@ "duration_seconds": 0, "name": "Test 1 - Check OpenLiteSpeed binaries exist", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175313#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479791#step:6:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 2 - Check version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175313#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479791#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check configuration exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175313#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479791#step:8:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175313#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479791#step:9:1" }, { - "duration_seconds": 6, + "duration_seconds": 3, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175313#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479791#step:10:1" }, { "comparison": "Current pinned OpenLiteSpeed version 1.7.17 passed smoke tests in this run. Regression validation installed the newer Arm64 upstream tarball v1.7.18.1, and the upgraded server started successfully on port 8088 with version 1.7.18.", @@ -40411,10 +40411,10 @@ "next_installed_version": "1.7.18", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175313#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479791#step:11:1" } ], - "duration_seconds": 13, + "duration_seconds": 11, "failed": 0, "passed": 6, "skipped": 0 @@ -40429,7 +40429,7 @@ "dashboard_link": "/linux/opensource_packages/litex", "job_url_resolution_status": "central_exact", "package_slug": "litex", - "production_refreshed_at": "2026-05-14T19:37:17.370556+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.585871+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -40443,15 +40443,15 @@ }, "run": { "attempt": "1", - "id": "25877427741", + "id": "26658731236", "job_name": "test-litex / test-litex", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:11Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218880" + "timestamp": "2026-05-29T19:49:10Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529843" }, "schema_version": "2.0", "tests": { @@ -40460,43 +40460,43 @@ "duration_seconds": 0, "name": "Test 1 - Baseline package evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218880#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529843#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Baseline version and release alignment", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218880#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529843#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Package-specific source or docs evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218880#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529843#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Arm64 support gate", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218880#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529843#step:10:1" }, { "duration_seconds": 0, "name": "Test 5 - Bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218880#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529843#step:11:1" }, { "comparison": "A bounded Arm64 CPU-side Python compile probe validated the next LiteX source checkout. This does not install LiteX or exercise FPGA toolchain flows.", "current_version": "2022.12", "decision": "limited_cpu_smoke_validated", "duration_seconds": 1, - "latest_version": "2025.12", + "latest_version": "2026.04", "name": "Test 6 - Regression Validation", - "next_installed_version": "2025.12", + "next_installed_version": "2026.04", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218880#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529843#step:12:1" } ], "duration_seconds": 1, @@ -40514,7 +40514,7 @@ "dashboard_link": "/linux/opensource_packages/litmus", "job_url_resolution_status": "central_exact", "package_slug": "litmus", - "production_refreshed_at": "2026-05-14T19:37:17.370763+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.586053+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -40526,15 +40526,15 @@ }, "run": { "attempt": "1", - "id": "25877419588", + "id": "26658724696", "job_name": "test-litmus / test-litmus", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:57Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192211" + "timestamp": "2026-05-29T19:49:02Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504114" }, "schema_version": "2.0", "tests": { @@ -40543,37 +40543,37 @@ "duration_seconds": 0, "name": "Test 1 - Check release manifest and image pulls", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192211#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504114#step:6:1" }, { "duration_seconds": 1, "name": "Test 2 - Check chaos operator runtime probe", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192211#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504114#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check chaos runner runtime probe", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192211#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504114#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192211#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504114#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Check portal image references and architecture", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192211#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504114#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192211#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504114#step:11:1" } ], "duration_seconds": 1, @@ -40591,7 +40591,7 @@ "dashboard_link": "/linux/opensource_packages/llama-index", "job_url_resolution_status": "central_exact", "package_slug": "llama-index", - "production_refreshed_at": "2026-05-14T19:37:17.370971+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.586233+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -40599,58 +40599,58 @@ }, "package": { "name": "LLama-Index", - "version": "0.14.21" + "version": "0.14.22" }, "run": { "attempt": "1", - "id": "25877403044", + "id": "26658710721", "job_name": "test-llama-index / test-llama-index", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:40Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140563" + "timestamp": "2026-05-29T19:48:43Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456197" }, "schema_version": "2.0", "tests": { "details": [ { - "duration_seconds": 2, + "duration_seconds": 1, "name": "Test 1 - Check module import", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140563#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456197#step:6:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 2 - Check version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140563#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456197#step:7:1" }, { "duration_seconds": 1, "name": "Test 3 - Check API surface", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140563#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456197#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140563#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456197#step:9:1" }, { "duration_seconds": 1, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140563#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456197#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140563#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456197#step:11:1" } ], "duration_seconds": 4, @@ -40668,7 +40668,7 @@ "dashboard_link": "/linux/opensource_packages/llamaindex", "job_url_resolution_status": "central_exact", "package_slug": "llamaindex", - "production_refreshed_at": "2026-05-14T19:37:17.371180+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.586437+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -40676,19 +40676,19 @@ }, "package": { "name": "LlamaIndex Core", - "version": "0.14.21" + "version": "0.14.22" }, "run": { "attempt": "1", - "id": "25877367704", + "id": "26658677990", "job_name": "test-llamaindex / test-llamaindex", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:55Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026689" + "timestamp": "2026-05-29T19:48:06Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346917" }, "schema_version": "2.0", "tests": { @@ -40697,37 +40697,37 @@ "duration_seconds": 0, "name": "Test 1 - Check pip package metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026689#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346917#step:6:1" }, { "duration_seconds": 2, "name": "Test 2 - Check core import and version", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026689#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346917#step:7:1" }, { "duration_seconds": 1, "name": "Test 3 - Check core module import", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026689#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346917#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026689#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346917#step:9:1" }, { "duration_seconds": 1, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026689#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346917#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026689#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346917#step:11:1" } ], "duration_seconds": 4, @@ -40745,7 +40745,7 @@ "dashboard_link": "/linux/opensource_packages/llm-d", "job_url_resolution_status": "central_exact", "package_slug": "llm-d", - "production_refreshed_at": "2026-05-14T19:37:17.371402+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.586617+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -40759,15 +40759,15 @@ }, "run": { "attempt": "1", - "id": "25877427741", + "id": "26658731236", "job_name": "test-llm-d / test-llm-d", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:05Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218738" + "timestamp": "2026-05-29T19:49:14Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529616" }, "schema_version": "2.0", "tests": { @@ -40776,43 +40776,43 @@ "duration_seconds": 0, "name": "Test 1 - Check package-specific baseline markers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218738#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529616#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218738#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529616#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218738#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529616#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218738#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529616#step:10:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218738#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529616#step:11:1" }, { "comparison": "Test 6 reran the scoped llm-d Arm preflight against the next stable source tag: Python tooling compile checks plus Kubernetes/inference documentation and source evidence. Full model serving, gateways, and cluster inference runtime require Kubernetes and model-serving infrastructure.", "current_version": "0.3.1", "decision": "limited_cpu_smoke_validated", - "duration_seconds": 1, + "duration_seconds": 2, "latest_version": "0.7.0", "name": "Test 6 - Regression Validation", "next_installed_version": "0.7.0", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218738#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529616#step:12:1" } ], "duration_seconds": 2, @@ -40830,7 +40830,7 @@ "dashboard_link": "/linux/opensource_packages/llvm", "job_url_resolution_status": "central_exact", "package_slug": "llvm", - "production_refreshed_at": "2026-05-14T19:37:17.371599+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.586796+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -40842,15 +40842,15 @@ }, "run": { "attempt": "1", - "id": "25877395502", + "id": "26658703674", "job_name": "test-llvm / test-llvm", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:25Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109507" + "timestamp": "2026-05-29T19:48:34Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432861" }, "schema_version": "2.0", "tests": { @@ -40859,37 +40859,37 @@ "duration_seconds": 0, "name": "Test 1 - Check llvm-config binary", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109507#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432861#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check clang binary", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109507#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432861#step:7:1" }, { - "duration_seconds": 2, + "duration_seconds": 3, "name": "Test 3 - Compile simple C program", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109507#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432861#step:8:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 4 - Check llvm-as (assembler)", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109507#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432861#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Check llvm-dis (disassembler)", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109507#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432861#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109507#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432861#step:11:1" } ], "duration_seconds": 3, @@ -40907,7 +40907,7 @@ "dashboard_link": "/linux/opensource_packages/llvm_flang", "job_url_resolution_status": "central_exact", "package_slug": "llvm_flang", - "production_refreshed_at": "2026-05-14T19:37:17.371822+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.586964+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -40919,15 +40919,15 @@ }, "run": { "attempt": "1", - "id": "25877395502", + "id": "26658703674", "job_name": "test-llvm_flang / test-llvm-flang", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:26Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110026" + "timestamp": "2026-05-29T19:48:34Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433270" }, "schema_version": "2.0", "tests": { @@ -40936,37 +40936,37 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110026#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433270#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110026#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433270#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Help Output or Configuration", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110026#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433270#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110026#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433270#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110026#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433270#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110026#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433270#step:11:1" } ], "duration_seconds": 0, @@ -40984,7 +40984,7 @@ "dashboard_link": "/linux/opensource_packages/lmbench", "job_url_resolution_status": "central_exact", "package_slug": "lmbench", - "production_refreshed_at": "2026-05-14T19:37:17.372052+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.587132+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -40996,15 +40996,15 @@ }, "run": { "attempt": "1", - "id": "25877379982", + "id": "26658688675", "job_name": "test-lmbench / test-lmbench", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:05Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057213" + "timestamp": "2026-05-29T19:48:15Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380869" }, "schema_version": "2.0", "tests": { @@ -41013,40 +41013,40 @@ "duration_seconds": 0, "name": "Test 1 - Check Benchmark Binaries", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057213#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380869#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057213#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380869#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Suite Configuration", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057213#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380869#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057213#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380869#step:9:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057213#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380869#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057213#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380869#step:11:1" } ], - "duration_seconds": 1, + "duration_seconds": 0, "failed": 0, "passed": 6, "skipped": 0 @@ -41061,7 +41061,7 @@ "dashboard_link": "/linux/opensource_packages/log4cplus", "job_url_resolution_status": "central_exact", "package_slug": "log4cplus", - "production_refreshed_at": "2026-05-14T19:37:17.372261+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.587325+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -41075,15 +41075,15 @@ }, "run": { "attempt": "1", - "id": "25877406767", + "id": "26658714432", "job_name": "test-log4cplus / test-log4cplus", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:42Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154580" + "timestamp": "2026-05-29T19:48:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468638" }, "schema_version": "2.0", "tests": { @@ -41092,46 +41092,46 @@ "duration_seconds": 0, "name": "Test 1 - Header and Library Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154580#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468638#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154580#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468638#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Configuration Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154580#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468638#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154580#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468638#step:9:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154580#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468638#step:10:1" }, { "comparison": "Current pinned Log4cplus version 2.1.1 passed smoke tests in this run. Regression validation installed candidate version 2.1.2 on Arm64, and the pkg-config plus compiled smoke both passed with the expected version.", "current_version": "2.1.1", "decision": "next_install_validated", - "duration_seconds": 41, + "duration_seconds": 39, "latest_version": "2.1.2", "name": "Test 6 - Regression Validation", "next_installed_version": "2.1.2", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154580#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468638#step:11:1" } ], - "duration_seconds": 41, + "duration_seconds": 40, "failed": 0, "passed": 6, "skipped": 0 @@ -41146,7 +41146,7 @@ "dashboard_link": "/linux/opensource_packages/log4cpp", "job_url_resolution_status": "central_exact", "package_slug": "log4cpp", - "production_refreshed_at": "2026-05-14T19:37:17.372458+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.587505+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -41158,15 +41158,15 @@ }, "run": { "attempt": "1", - "id": "25877403044", + "id": "26658710721", "job_name": "test-log4cpp / test-log4cpp", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:40Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140820" + "timestamp": "2026-05-29T19:48:44Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456106" }, "schema_version": "2.0", "tests": { @@ -41175,40 +41175,40 @@ "duration_seconds": 0, "name": "Test 1 - Check headers and library are present", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140820#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456106#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check package version", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140820#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456106#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check API surface", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140820#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456106#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140820#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456106#step:9:1" }, { - "duration_seconds": 3, + "duration_seconds": 2, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140820#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456106#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140820#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456106#step:11:1" } ], - "duration_seconds": 3, + "duration_seconds": 2, "failed": 0, "passed": 6, "skipped": 0 @@ -41223,7 +41223,7 @@ "dashboard_link": "/linux/opensource_packages/logstash", "job_url_resolution_status": "central_exact", "package_slug": "logstash", - "production_refreshed_at": "2026-05-14T19:37:17.372667+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.587672+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -41237,15 +41237,15 @@ }, "run": { "attempt": "1", - "id": "25877363365", + "id": "26658674448", "job_name": "test-logstash / test-logstash", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:47Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001133" + "timestamp": "2026-05-29T19:47:57Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334953" }, "schema_version": "2.0", "tests": { @@ -41254,46 +41254,46 @@ "duration_seconds": 0, "name": "Test 1 - Check Logstash binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001133#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334953#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Logstash version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001133#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334953#step:7:1" }, { "duration_seconds": 8, "name": "Test 3 - Check Logstash help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001133#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334953#step:8:1" }, { - "duration_seconds": 9, + "duration_seconds": 8, "name": "Test 4 - Check Logstash config test", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001133#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334953#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Check package architecture", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001133#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334953#step:10:1" }, { "comparison": "Baseline 8.19.12 passed tests 1-5, and candidate 8.19.13 passed install, version, help, architecture, and config validation in Test 6.", "current_version": "8.19.12", "decision": "next_install_validated", - "duration_seconds": 52, + "duration_seconds": 50, "latest_version": "8.19.13", "name": "Test 6 - Regression Validation", "next_installed_version": "8.19.13", "regression_result": "Next stable Logstash candidate installed and validated successfully on Arm64.", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001133#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334953#step:11:1" } ], - "duration_seconds": 17, + "duration_seconds": 16, "failed": 0, "passed": 6, "skipped": 0 @@ -41308,7 +41308,7 @@ "dashboard_link": "/linux/opensource_packages/logzio", "job_url_resolution_status": "central_exact", "package_slug": "logzio", - "production_refreshed_at": "2026-05-14T19:37:17.372932+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.587848+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -41320,57 +41320,57 @@ }, "run": { "attempt": "1", - "id": "25877367704", + "id": "26658677990", "job_name": "test-logzio / test-logzio", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:55Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026731" + "timestamp": "2026-05-29T19:48:03Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347247" }, "schema_version": "2.0", "tests": { "details": [ { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 1 - Import Logzio handler module", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026731#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347247#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Format a LogRecord payload", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026731#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347247#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Emit through handler without network", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026731#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347247#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Preserve structured extra fields", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026731#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347247#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Flush handler sender", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026731#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347247#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026731#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347247#step:11:1" } ], - "duration_seconds": 0, + "duration_seconds": 1, "failed": 0, "passed": 6, "skipped": 0 @@ -41385,7 +41385,7 @@ "dashboard_link": "/linux/opensource_packages/longhorn", "job_url_resolution_status": "central_exact", "package_slug": "longhorn", - "production_refreshed_at": "2026-05-14T19:37:17.373135+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.588027+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -41397,15 +41397,15 @@ }, "run": { "attempt": "1", - "id": "25877367704", + "id": "26658677990", "job_name": "test-longhorn / test-longhorn", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:56Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026932" + "timestamp": "2026-05-29T19:48:02Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347460" }, "schema_version": "2.0", "tests": { @@ -41414,37 +41414,37 @@ "duration_seconds": 0, "name": "Test 1 - Check longhornctl binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026932#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347460#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026932#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347460#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026932#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347460#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026932#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347460#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026932#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347460#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026932#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347460#step:11:1" } ], "duration_seconds": 0, @@ -41462,7 +41462,7 @@ "dashboard_link": "/linux/opensource_packages/lsyncd", "job_url_resolution_status": "central_exact", "package_slug": "lsyncd", - "production_refreshed_at": "2026-05-14T19:37:17.373318+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.588201+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -41476,15 +41476,15 @@ }, "run": { "attempt": "1", - "id": "25877387746", + "id": "26658696365", "job_name": "test-lsyncd / test-lsyncd", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:16Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084517" + "timestamp": "2026-05-29T19:48:24Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407953" }, "schema_version": "2.0", "tests": { @@ -41493,31 +41493,31 @@ "duration_seconds": 0, "name": "Test 1 - Check lsyncd binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084517#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407953#step:6:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 2 - Check version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084517#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407953#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084517#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407953#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084517#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407953#step:9:1" }, { "duration_seconds": 10, "name": "Test 5 - Functional validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084517#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407953#step:10:1" }, { "comparison": "Current pinned Lsyncd version 2.3.0 passed smoke tests in this run. Regression validation built candidate version 2.3.1 on Arm64, the candidate binary reported version 2.3.1, and a real local rsync sync completed successfully.", @@ -41529,10 +41529,10 @@ "next_installed_version": "2.3.1", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084517#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407953#step:11:1" } ], - "duration_seconds": 21, + "duration_seconds": 22, "failed": 0, "passed": 6, "skipped": 0 @@ -41547,7 +41547,7 @@ "dashboard_link": "/linux/opensource_packages/lua", "job_url_resolution_status": "central_exact", "package_slug": "lua", - "production_refreshed_at": "2026-05-14T19:37:17.373524+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.588410+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -41559,15 +41559,15 @@ }, "run": { "attempt": "1", - "id": "25877399008", + "id": "26658707245", "job_name": "test-lua / test-lua", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:31Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125760" + "timestamp": "2026-05-29T19:48:38Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445453" }, "schema_version": "2.0", "tests": { @@ -41576,37 +41576,37 @@ "duration_seconds": 0, "name": "Test 1 - Check lua binary", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125760#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445453#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125760#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445453#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Run simple script", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125760#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445453#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Check math library", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125760#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445453#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Check interactive mode (dry run)", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125760#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445453#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125760#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445453#step:11:1" } ], "duration_seconds": 0, @@ -41624,7 +41624,7 @@ "dashboard_link": "/linux/opensource_packages/luajit", "job_url_resolution_status": "central_exact", "package_slug": "luajit", - "production_refreshed_at": "2026-05-14T19:37:17.373762+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.588597+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -41636,15 +41636,15 @@ }, "run": { "attempt": "1", - "id": "25877395502", + "id": "26658703674", "job_name": "test-luajit / test-luajit", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:26Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109448" + "timestamp": "2026-05-29T19:48:33Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432893" }, "schema_version": "2.0", "tests": { @@ -41653,37 +41653,37 @@ "duration_seconds": 0, "name": "Test 1 - Check LuaJIT binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109448#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432893#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109448#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432893#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109448#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432893#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109448#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432893#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109448#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432893#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109448#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432893#step:11:1" } ], "duration_seconds": 0, @@ -41701,7 +41701,7 @@ "dashboard_link": "/linux/opensource_packages/lucene", "job_url_resolution_status": "central_exact", "package_slug": "lucene", - "production_refreshed_at": "2026-05-14T19:37:17.373973+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.588781+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -41713,15 +41713,15 @@ }, "run": { "attempt": "1", - "id": "25877379982", + "id": "26658688675", "job_name": "test-lucene / test-lucene", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:12Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056565" + "timestamp": "2026-05-29T19:48:21Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575379728" }, "schema_version": "2.0", "tests": { @@ -41730,40 +41730,40 @@ "duration_seconds": 0, "name": "Test 1 - Artifact Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056565#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575379728#step:7:1" }, { - "duration_seconds": 3, + "duration_seconds": 4, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056565#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575379728#step:8:1" }, { - "duration_seconds": 7, + "duration_seconds": 6, "name": "Test 3 - Configuration Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056565#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575379728#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056565#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575379728#step:10:1" }, { - "duration_seconds": 2, + "duration_seconds": 1, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056565#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575379728#step:11:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056565#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575379728#step:12:1" } ], - "duration_seconds": 12, + "duration_seconds": 11, "failed": 0, "passed": 6, "skipped": 0 @@ -41778,7 +41778,7 @@ "dashboard_link": "/linux/opensource_packages/luigi", "job_url_resolution_status": "central_exact", "package_slug": "luigi", - "production_refreshed_at": "2026-05-14T19:37:17.374182+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.588965+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -41792,15 +41792,15 @@ }, "run": { "attempt": "1", - "id": "25877435852", + "id": "26658737633", "job_name": "test-luigi / test-luigi", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:15Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251745" + "timestamp": "2026-05-29T19:49:21Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550018" }, "schema_version": "2.0", "tests": { @@ -41809,31 +41809,31 @@ "duration_seconds": 0, "name": "Test 1 - Download Luigi baseline source", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251745#step:5:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550018#step:5:1" }, { "duration_seconds": 0, "name": "Test 2 - Verify expected source layout", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251745#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550018#step:6:1" }, { "duration_seconds": 0, "name": "Test 3 - Check core package metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251745#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550018#step:7:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251745#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550018#step:8:1" }, { "duration_seconds": 0, "name": "Test 5 - Search source/docs functional markers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251745#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550018#step:9:1" }, { "comparison": "Luigi candidate v2.29.0 source archive downloaded and validated on the Arm64 runner.", @@ -41845,7 +41845,7 @@ "next_installed_version": "v2.29.0", "regression_result": "Next source validation passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251745#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550018#step:10:1" } ], "duration_seconds": 2, @@ -41863,7 +41863,7 @@ "dashboard_link": "/linux/opensource_packages/lxcfs", "job_url_resolution_status": "central_exact", "package_slug": "lxcfs", - "production_refreshed_at": "2026-05-14T19:37:17.374395+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.589164+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -41877,15 +41877,15 @@ }, "run": { "attempt": "1", - "id": "25877415436", + "id": "26658721315", "job_name": "test-lxcfs / test-lxcfs", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:50Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180657" + "timestamp": "2026-05-29T19:48:56Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491897" }, "schema_version": "2.0", "tests": { @@ -41894,46 +41894,46 @@ "duration_seconds": 0, "name": "Test 1 - Check lxcfs binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180657#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491897#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180657#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491897#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180657#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491897#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180657#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491897#step:9:1" }, { - "duration_seconds": 1, + "duration_seconds": 2, "name": "Test 5 - Functional validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180657#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491897#step:10:1" }, { "comparison": "Current pinned LXCFS version 6.0.3 passed smoke tests in this run. Regression validation built and staged candidate version 6.0.4 on Arm64, the candidate binary reported version 6.0.4, and a real FUSE mount exposed virtualized /proc data successfully.", "current_version": "6.0.3", "decision": "next_install_validated", - "duration_seconds": 4, + "duration_seconds": 3, "latest_version": "6.0.4", "name": "Test 6 - Regression Validation", "next_installed_version": "6.0.4", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180657#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491897#step:11:1" } ], - "duration_seconds": 5, + "duration_seconds": 4, "failed": 0, "passed": 6, "skipped": 0 @@ -41948,7 +41948,7 @@ "dashboard_link": "/linux/opensource_packages/lxd", "job_url_resolution_status": "central_exact", "package_slug": "lxd", - "production_refreshed_at": "2026-05-14T19:37:17.374690+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.589469+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -41956,19 +41956,19 @@ }, "package": { "name": "Canonical LXD", - "version": "6.7" + "version": "6.8" }, "run": { "attempt": "1", - "id": "25877392111", + "id": "26658699892", "job_name": "test-lxd / test-lxd", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:22Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096584" + "timestamp": "2026-05-29T19:48:30Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420752" }, "schema_version": "2.0", "tests": { @@ -41977,40 +41977,40 @@ "duration_seconds": 0, "name": "Test 1 - Check Binaries Exist", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096584#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420752#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096584#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420752#step:7:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 3 - Initialize (Dry Run)", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096584#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420752#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096584#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420752#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096584#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420752#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096584#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420752#step:11:1" } ], - "duration_seconds": 1, + "duration_seconds": 0, "failed": 0, "passed": 6, "skipped": 0 @@ -42025,7 +42025,7 @@ "dashboard_link": "/linux/opensource_packages/lz4", "job_url_resolution_status": "central_exact", "package_slug": "lz4", - "production_refreshed_at": "2026-05-14T19:37:17.374925+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.589654+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -42039,15 +42039,15 @@ }, "run": { "attempt": "1", - "id": "25877387746", + "id": "26658696365", "job_name": "test-lz4 / test-lz4", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:16Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084953" + "timestamp": "2026-05-29T19:48:26Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407680" }, "schema_version": "2.0", "tests": { @@ -42056,43 +42056,43 @@ "duration_seconds": 0, "name": "Test 1 - Check lz4 binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084953#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407680#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084953#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407680#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084953#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407680#step:8:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 4 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084953#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407680#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084953#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407680#step:10:1" }, { "comparison": "Current pinned Lz4 version 1.9.4 passed smoke tests in this run. Regression validation built candidate version 1.10.0 on Arm64, the candidate binary reported version 1.10.0, and a real compression/decompression round-trip completed successfully.", "current_version": "1.9.4", "decision": "next_install_validated", - "duration_seconds": 8, + "duration_seconds": 9, "latest_version": "1.10.0", "name": "Test 6 - Regression Validation", "next_installed_version": "1.10.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084953#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407680#step:11:1" } ], "duration_seconds": 9, @@ -42110,7 +42110,7 @@ "dashboard_link": "/linux/opensource_packages/lzip", "job_url_resolution_status": "central_exact", "package_slug": "lzip", - "production_refreshed_at": "2026-05-14T19:37:17.375139+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.589833+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -42124,15 +42124,15 @@ }, "run": { "attempt": "1", - "id": "25877406767", + "id": "26658714432", "job_name": "test-lzip / test-lzip", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:45Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154529" + "timestamp": "2026-05-29T19:48:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469195" }, "schema_version": "2.0", "tests": { @@ -42141,46 +42141,46 @@ "duration_seconds": 0, "name": "Test 1 - Check lzip binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154529#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469195#step:6:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 2 - Check version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154529#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469195#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154529#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469195#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154529#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469195#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154529#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469195#step:10:1" }, { "comparison": "Current pinned Lzip version 1.15 passed smoke tests in this run. Regression validation built candidate version 1.26 on Arm64, the candidate binary reported version 1.26, and a real compression/decompression round-trip completed successfully.", "current_version": "1.15", "decision": "next_install_validated", - "duration_seconds": 5, + "duration_seconds": 3, "latest_version": "1.26", "name": "Test 6 - Regression Validation", "next_installed_version": "1.26", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154529#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469195#step:11:1" } ], - "duration_seconds": 5, + "duration_seconds": 3, "failed": 0, "passed": 6, "skipped": 0 @@ -42195,7 +42195,7 @@ "dashboard_link": "/linux/opensource_packages/m4", "job_url_resolution_status": "central_exact", "package_slug": "m4", - "production_refreshed_at": "2026-05-14T19:37:17.375350+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.590020+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -42207,15 +42207,15 @@ }, "run": { "attempt": "1", - "id": "25877367704", + "id": "26658677990", "job_name": "test-m4 / test-m4", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:55Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027050" + "timestamp": "2026-05-29T19:48:02Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347291" }, "schema_version": "2.0", "tests": { @@ -42224,37 +42224,37 @@ "duration_seconds": 0, "name": "Test 1 - Check m4 binary", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027050#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347291#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027050#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347291#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027050#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347291#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Simple macro expansion", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027050#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347291#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Built-in macro (syscmd)", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027050#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347291#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027050#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347291#step:11:1" } ], "duration_seconds": 0, @@ -42272,7 +42272,7 @@ "dashboard_link": "/linux/opensource_packages/maas", "job_url_resolution_status": "central_exact", "package_slug": "maas", - "production_refreshed_at": "2026-05-14T19:37:17.375549+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.590193+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -42284,15 +42284,15 @@ }, "run": { "attempt": "1", - "id": "25877406767", + "id": "26658714432", "job_name": "test-maas / test-maas", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:44Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155432" + "timestamp": "2026-05-29T19:48:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469307" }, "schema_version": "2.0", "tests": { @@ -42301,40 +42301,40 @@ "duration_seconds": 0, "name": "Test 1 - Check MAAS CLI exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155432#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469307#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check installed MAAS version metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155432#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469307#step:7:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 3 - Check MAAS help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155432#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469307#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155432#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469307#step:9:1" }, { "duration_seconds": 1, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155432#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469307#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155432#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469307#step:11:1" } ], - "duration_seconds": 2, + "duration_seconds": 1, "failed": 0, "passed": 6, "skipped": 0 @@ -42349,7 +42349,7 @@ "dashboard_link": "/linux/opensource_packages/macs2", "job_url_resolution_status": "central_exact", "package_slug": "macs2", - "production_refreshed_at": "2026-05-14T19:37:17.375735+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.590396+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -42361,15 +42361,15 @@ }, "run": { "attempt": "1", - "id": "25877392111", + "id": "26658699892", "job_name": "test-macs2 / test-macs2", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:32Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096534" + "timestamp": "2026-05-29T19:48:39Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421065" }, "schema_version": "2.0", "tests": { @@ -42378,37 +42378,37 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096534#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421065#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096534#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421065#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096534#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421065#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096534#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421065#step:10:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096534#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421065#step:11:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096534#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421065#step:12:1" } ], "duration_seconds": 0, @@ -42426,7 +42426,7 @@ "dashboard_link": "/linux/opensource_packages/madoguchi", "job_url_resolution_status": "central_exact", "package_slug": "madoguchi", - "production_refreshed_at": "2026-05-14T19:37:17.375965+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.590579+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -42440,15 +42440,15 @@ }, "run": { "attempt": "1", - "id": "25877359516", + "id": "26658670904", "job_name": "test-madoguchi / test-madoguchi", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:25Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991341" + "timestamp": "2026-05-29T19:48:35Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321788" }, "schema_version": "2.0", "tests": { @@ -42457,46 +42457,46 @@ "duration_seconds": 0, "name": "Test 1 - Check madoguchi binary", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991341#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321788#step:8:1" }, { "duration_seconds": 0, "name": "Test 2 - Verify binary linkage", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991341#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321788#step:9:1" }, { "duration_seconds": 0, "name": "Test 3 - Check source tree contents", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991341#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321788#step:10:1" }, { - "duration_seconds": 2, + "duration_seconds": 1, "name": "Test 4 - Start server briefly", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991341#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321788#step:11:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991341#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321788#step:12:1" }, { "comparison": "Madoguchi baseline v0.5.4 built from source and passed /health runtime validation on Arm64, and candidate v0.6.0 also built successfully and returned the expected /health version on Arm64.", "current_version": "v0.5.4", "decision": "next_install_validated", - "duration_seconds": 174, + "duration_seconds": 179, "latest_version": "v0.6.0", "name": "Test 6 - Regression Validation", "next_installed_version": "v0.6.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991341#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321788#step:13:1" } ], - "duration_seconds": 176, + "duration_seconds": 180, "failed": 0, "passed": 6, "skipped": 0 @@ -42511,7 +42511,7 @@ "dashboard_link": "/linux/opensource_packages/magento", "job_url_resolution_status": "central_exact", "package_slug": "magento", - "production_refreshed_at": "2026-05-14T19:37:17.376180+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.590758+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -42525,15 +42525,15 @@ }, "run": { "attempt": "1", - "id": "25877387746", + "id": "26658696365", "job_name": "test-magento / test-magento", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:15Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084498" + "timestamp": "2026-05-29T19:48:24Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407275" }, "schema_version": "2.0", "tests": { @@ -42542,31 +42542,31 @@ "duration_seconds": 0, "name": "Test 1 - Check Magento source layout", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084498#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407275#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check exact baseline version", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084498#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407275#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Magento CLI help", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084498#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407275#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084498#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407275#step:9:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 5 - Functional validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084498#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407275#step:10:1" }, { "comparison": "Current pinned Magento version 2.4.7-p4 passed smoke tests in this run. Regression validation installed candidate version 2.4.8 on Arm64, Composer completed successfully, and the candidate Magento CLI reported version 2.4.8.", @@ -42578,10 +42578,10 @@ "next_installed_version": "2.4.8", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084498#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407275#step:11:1" } ], - "duration_seconds": 26, + "duration_seconds": 25, "failed": 0, "passed": 6, "skipped": 0 @@ -42596,7 +42596,7 @@ "dashboard_link": "/linux/opensource_packages/magic", "job_url_resolution_status": "central_exact", "package_slug": "magic", - "production_refreshed_at": "2026-05-14T19:37:17.376358+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.590931+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -42608,15 +42608,15 @@ }, "run": { "attempt": "1", - "id": "25877427741", + "id": "26658731236", "job_name": "test-magic / test-magic", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:12Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218438" + "timestamp": "2026-05-29T19:49:11Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529535" }, "schema_version": "2.0", "tests": { @@ -42625,40 +42625,40 @@ "duration_seconds": 0, "name": "Test 1 - Package-manager install evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218438#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529535#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Installed Arm64 package metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218438#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529535#step:7:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 3 - CLI version starts on Arm", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218438#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529535#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Arm64 runner gate", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218438#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529535#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Headless runtime smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218438#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529535#step:10:1" }, { "duration_seconds": 0, "name": "Test 6 - Regression validation applicability", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218438#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529535#step:11:1" } ], - "duration_seconds": 0, + "duration_seconds": 1, "failed": 0, "passed": 6, "skipped": 0 @@ -42673,7 +42673,7 @@ "dashboard_link": "/linux/opensource_packages/manipulapy", "job_url_resolution_status": "central_exact", "package_slug": "manipulapy", - "production_refreshed_at": "2026-05-14T19:37:17.376584+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.591100+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -42687,15 +42687,15 @@ }, "run": { "attempt": "1", - "id": "25877427741", + "id": "26658731236", "job_name": "test-manipulapy / test-manipulapy", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:09Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218787" + "timestamp": "2026-05-29T19:49:12Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529720" }, "schema_version": "2.0", "tests": { @@ -42704,43 +42704,43 @@ "duration_seconds": 0, "name": "Test 1 - Package installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218787#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529720#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Version metadata matches baseline", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218787#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529720#step:8:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 3 - Installed files metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218787#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529720#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218787#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529720#step:10:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218787#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529720#step:11:1" }, { "comparison": "Current pinned package version 1.0.0 passed smoke tests in this run, and the newer stable PyPI candidate 1.0.0.1 installed successfully on Arm64.", "current_version": "1.0.0", "decision": "next_install_validated", - "duration_seconds": 18, + "duration_seconds": 17, "latest_version": "1.0.0.1", "name": "Test 6 - Regression Validation", "next_installed_version": "1.0.0.1", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218787#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529720#step:12:1" } ], "duration_seconds": 18, @@ -42758,7 +42758,7 @@ "dashboard_link": "/linux/opensource_packages/mariadb", "job_url_resolution_status": "central_exact", "package_slug": "mariadb", - "production_refreshed_at": "2026-05-14T19:37:17.376801+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.591292+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -42770,15 +42770,15 @@ }, "run": { "attempt": "1", - "id": "25877395502", + "id": "26658703674", "job_name": "test-mariadb / test-mariadb", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:25Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110087" + "timestamp": "2026-05-29T19:48:34Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432901" }, "schema_version": "2.0", "tests": { @@ -42787,37 +42787,37 @@ "duration_seconds": 0, "name": "Test 1 - Check mariadb binary", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110087#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432901#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110087#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432901#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check service status", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110087#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432901#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Connect and run query", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110087#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432901#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Create database", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110087#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432901#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110087#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432901#step:11:1" } ], "duration_seconds": 0, @@ -42835,7 +42835,7 @@ "dashboard_link": "/linux/opensource_packages/mattermost", "job_url_resolution_status": "central_exact", "package_slug": "mattermost", - "production_refreshed_at": "2026-05-14T19:37:17.377016+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.591482+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -42849,15 +42849,15 @@ }, "run": { "attempt": "1", - "id": "25877392111", + "id": "26658699892", "job_name": "test-mattermost / test-mattermost", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:23Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096399" + "timestamp": "2026-05-29T19:48:29Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420644" }, "schema_version": "2.0", "tests": { @@ -42866,46 +42866,46 @@ "duration_seconds": 0, "name": "Test 1 - Check mattermost binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096399#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420644#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check exact baseline version", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096399#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420644#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096399#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420644#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096399#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420644#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096399#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420644#step:10:1" }, { "comparison": "Current pinned Mattermost version 10.4.0 passed smoke tests in this run. Regression validation installed candidate version 10.4.1 on Arm64, and the candidate binary reported version 10.4.1 while passing the real help and plugin-help checks.", "current_version": "10.4.0", "decision": "next_install_validated", - "duration_seconds": 24, + "duration_seconds": 3, "latest_version": "10.4.1", "name": "Test 6 - Regression Validation", "next_installed_version": "10.4.1", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096399#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420644#step:11:1" } ], - "duration_seconds": 24, + "duration_seconds": 3, "failed": 0, "passed": 6, "skipped": 0 @@ -42920,7 +42920,7 @@ "dashboard_link": "/linux/opensource_packages/maven", "job_url_resolution_status": "central_exact", "package_slug": "maven", - "production_refreshed_at": "2026-05-14T19:37:17.377219+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.591660+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -42934,15 +42934,15 @@ }, "run": { "attempt": "1", - "id": "25877406767", + "id": "26658714432", "job_name": "test-maven / test-maven", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:45Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155560" + "timestamp": "2026-05-29T19:48:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469223" }, "schema_version": "2.0", "tests": { @@ -42951,31 +42951,31 @@ "duration_seconds": 0, "name": "Test 1 - Check mvn binary", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155560#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469223#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155560#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469223#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155560#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469223#step:9:1" }, { - "duration_seconds": 10, + "duration_seconds": 8, "name": "Test 4 - Create simple project (archetype)", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155560#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469223#step:10:1" }, { - "duration_seconds": 15, + "duration_seconds": 9, "name": "Test 5 - Build project", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155560#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469223#step:11:1" }, { "comparison": "Baseline 3.9.0 and next 3.9.1 both passed smoke validation; no regression observed in this workflow scope.", @@ -42987,10 +42987,10 @@ "next_installed_version": "3.9.1", "regression_result": "Validated baseline Maven against the next newer stable release with successful install and build smoke checks.", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155560#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469223#step:12:1" } ], - "duration_seconds": 27, + "duration_seconds": 19, "failed": 0, "passed": 6, "skipped": 0 @@ -43005,7 +43005,7 @@ "dashboard_link": "/linux/opensource_packages/mayastor", "job_url_resolution_status": "central_exact", "package_slug": "mayastor", - "production_refreshed_at": "2026-05-14T19:37:17.377424+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.591847+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -43019,15 +43019,15 @@ }, "run": { "attempt": "1", - "id": "25877403044", + "id": "26658710721", "job_name": "test-mayastor / test-mayastor", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:37Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140715" + "timestamp": "2026-05-29T19:48:43Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456313" }, "schema_version": "2.0", "tests": { @@ -43036,31 +43036,31 @@ "duration_seconds": 0, "name": "Test 1 - Check kubectl-mayastor binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140715#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456313#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140715#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456313#step:7:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 3 - Check embedded release tag provenance", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140715#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456313#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140715#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456313#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140715#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456313#step:10:1" }, { "comparison": "Current pinned Mayastor release tag 2.7.4 passed smoke tests in this run. Regression validation downloaded the candidate Arm64 kubectl-mayastor asset https://github.com/openebs/mayastor/releases/download/v2.7.5/kubectl-mayastor-aarch64-linux-musl.tar.gz, confirmed the embedded release tag 2.7.5, and verified that the candidate binary reached real help output and kubeconfig-graceful-failure paths on Arm64.", @@ -43072,7 +43072,7 @@ "next_installed_version": "2.7.5", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140715#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456313#step:11:1" } ], "duration_seconds": 1, @@ -43090,7 +43090,7 @@ "dashboard_link": "/linux/opensource_packages/mdl-sdk", "job_url_resolution_status": "central_exact", "package_slug": "mdl-sdk", - "production_refreshed_at": "2026-05-14T19:37:17.377626+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.592031+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -43104,15 +43104,15 @@ }, "run": { "attempt": "1", - "id": "25877427741", + "id": "26658731236", "job_name": "test-mdl-sdk / test-mdl-sdk", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:05Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218649" + "timestamp": "2026-05-29T19:49:11Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529753" }, "schema_version": "2.0", "tests": { @@ -43121,46 +43121,46 @@ "duration_seconds": 0, "name": "Test 1 - Check package-specific baseline markers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218649#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529753#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218649#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529753#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218649#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529753#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218649#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529753#step:10:1" }, { - "duration_seconds": 5, + "duration_seconds": 2, "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218649#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529753#step:11:1" }, { "comparison": "Test 6 limited_cpu_smoke_validated: cloned the next MDL SDK source candidate on Arm64, compiled Python examples, and syntax-compiled a C++ translation unit against mi/mdl_sdk.h. This is SDK header/example preflight evidence only; no full renderer/runtime execution is claimed.", "current_version": "2021", "decision": "limited_cpu_smoke_validated", - "duration_seconds": 10, + "duration_seconds": 11, "latest_version": "2025.0.5", "name": "Test 6 - Regression Validation", "next_installed_version": "2025.0.5", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218649#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529753#step:12:1" } ], - "duration_seconds": 15, + "duration_seconds": 13, "failed": 0, "passed": 6, "skipped": 0 @@ -43175,7 +43175,7 @@ "dashboard_link": "/linux/opensource_packages/mediamtx", "job_url_resolution_status": "central_exact", "package_slug": "mediamtx", - "production_refreshed_at": "2026-05-14T19:37:17.377844+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.592213+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -43189,15 +43189,15 @@ }, "run": { "attempt": "1", - "id": "25877427741", + "id": "26658731236", "job_name": "test-mediamtx / test-mediamtx", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:04Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218849" + "timestamp": "2026-05-29T19:49:11Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529228" }, "schema_version": "2.0", "tests": { @@ -43206,46 +43206,46 @@ "duration_seconds": 0, "name": "Test 1 - Check package-specific baseline markers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218849#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529228#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218849#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529228#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218849#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529228#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218849#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529228#step:10:1" }, { "duration_seconds": 1, "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218849#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529228#step:11:1" }, { "comparison": "Downloaded the next Arm64 MediaMTX release asset, started the server locally, and curled the RTSP endpoint on port 8554.", "current_version": "0.1.0", "decision": "limited_cpu_smoke_validated", - "duration_seconds": 2, - "latest_version": "1.18.1", + "duration_seconds": 3, + "latest_version": "1.18.2", "name": "Test 6 - Regression Validation", - "next_installed_version": "1.18.1", + "next_installed_version": "1.18.2", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218849#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529228#step:12:1" } ], - "duration_seconds": 3, + "duration_seconds": 4, "failed": 0, "passed": 6, "skipped": 0 @@ -43260,7 +43260,7 @@ "dashboard_link": "/linux/opensource_packages/mediawiki", "job_url_resolution_status": "central_exact", "package_slug": "mediawiki", - "production_refreshed_at": "2026-05-14T19:37:17.378026+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.592426+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -43274,15 +43274,15 @@ }, "run": { "attempt": "1", - "id": "25877379982", + "id": "26658688675", "job_name": "test-mediawiki / test-mediawiki", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:06Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056564" + "timestamp": "2026-05-29T19:48:14Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575379780" }, "schema_version": "2.0", "tests": { @@ -43291,31 +43291,31 @@ "duration_seconds": 0, "name": "Test 1 - Artifact Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056564#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575379780#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056564#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575379780#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Help Output Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056564#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575379780#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056564#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575379780#step:9:1" }, { "duration_seconds": 4, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056564#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575379780#step:10:1" }, { "comparison": "Current pinned MediaWiki version 1.43.2 passed smoke tests in this run. Regression validation downloaded the official 1.43 patch candidate 1.43.3, verified the unpacked source tree reports version 1.43.3, validated maintenance installer help output, and confirmed the first-run web response over the built-in PHP web server on Arm64.", @@ -43327,7 +43327,7 @@ "next_installed_version": "1.43.3", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056564#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575379780#step:11:1" } ], "duration_seconds": 10, @@ -43345,7 +43345,7 @@ "dashboard_link": "/linux/opensource_packages/megatron-core", "job_url_resolution_status": "central_exact", "package_slug": "megatron-core", - "production_refreshed_at": "2026-05-14T19:37:17.378242+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.592608+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -43359,63 +43359,63 @@ }, "run": { "attempt": "1", - "id": "25877427741", + "id": "26658731236", "job_name": "test-megatron-core / test-megatron-core", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:13Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218664" + "timestamp": "2026-05-29T19:49:23Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529163" }, "schema_version": "2.0", "tests": { "details": [ { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 1 - Check package-specific baseline markers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218664#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529163#step:8:1" }, { "duration_seconds": 0, "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218664#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529163#step:9:1" }, { "duration_seconds": 0, "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218664#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529163#step:10:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218664#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529163#step:11:1" }, { - "duration_seconds": 22, + "duration_seconds": 28, "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218664#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529163#step:12:1" }, { "comparison": "Test 6 limited_cpu_smoke_validated: cloned the pinned Megatron-Core next candidate and installed/imported the matching Arm64 PyPI wheel, then instantiated ModelParallelConfig on the Arm runner. This is CPU-side API/config evidence only; no distributed or GPU training execution is claimed.", "current_version": "0.11.0", "decision": "limited_cpu_smoke_validated", - "duration_seconds": 20, + "duration_seconds": 22, "latest_version": "0.12.0", "name": "Test 6 - Regression Validation", "next_installed_version": "0.12.0", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218664#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529163#step:13:1" } ], - "duration_seconds": 42, + "duration_seconds": 51, "failed": 0, "passed": 6, "skipped": 0 @@ -43430,7 +43430,7 @@ "dashboard_link": "/linux/opensource_packages/memcached", "job_url_resolution_status": "central_exact", "package_slug": "memcached", - "production_refreshed_at": "2026-05-14T19:37:17.378427+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.592780+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -43442,15 +43442,15 @@ }, "run": { "attempt": "1", - "id": "25877355625", + "id": "26658667828", "job_name": "test-memcached / test-memcached", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:37Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047975675" + "timestamp": "2026-05-29T19:47:52Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308013" }, "schema_version": "2.0", "tests": { @@ -43459,37 +43459,37 @@ "duration_seconds": 0, "name": "Test 1 - Check memcached binary", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047975675#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308013#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check help command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047975675#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308013#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check service status", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047975675#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308013#step:8:1" }, { "duration_seconds": 6, "name": "Test 4 - Set and Get value (using netcat)", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047975675#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308013#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Check stats", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047975675#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308013#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047975675#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308013#step:11:1" } ], "duration_seconds": 6, @@ -43507,7 +43507,7 @@ "dashboard_link": "/linux/opensource_packages/memtester", "job_url_resolution_status": "central_exact", "package_slug": "memtester", - "production_refreshed_at": "2026-05-14T19:37:17.378597+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.592945+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -43519,15 +43519,15 @@ }, "run": { "attempt": "1", - "id": "25877415436", + "id": "26658721315", "job_name": "test-memtester / test-memtester", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:54Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180762" + "timestamp": "2026-05-29T19:48:56Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491517" }, "schema_version": "2.0", "tests": { @@ -43536,37 +43536,37 @@ "duration_seconds": 0, "name": "Test 1 - Check memtester binary", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180762#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491517#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check help/usage output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180762#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491517#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Run small memory test", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180762#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491517#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Check version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180762#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491517#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Invalid argument check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180762#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491517#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180762#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491517#step:11:1" } ], "duration_seconds": 0, @@ -43584,7 +43584,7 @@ "dashboard_link": "/linux/opensource_packages/mesa", "job_url_resolution_status": "central_exact", "package_slug": "mesa", - "production_refreshed_at": "2026-05-14T19:37:17.378788+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.593109+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -43596,15 +43596,15 @@ }, "run": { "attempt": "1", - "id": "25877419588", + "id": "26658724696", "job_name": "test-mesa / test-mesa", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:06Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048191530" + "timestamp": "2026-05-29T19:49:00Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503360" }, "schema_version": "2.0", "tests": { @@ -43613,37 +43613,37 @@ "duration_seconds": 0, "name": "Test 1 - Check glxinfo binary", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048191530#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503360#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check glxgears binary", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048191530#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503360#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048191530#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503360#step:8:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 4 - Run glxinfo (might fail without display)", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048191530#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503360#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Check package info", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048191530#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503360#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048191530#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503360#step:11:1" } ], "duration_seconds": 0, @@ -43661,7 +43661,7 @@ "dashboard_link": "/linux/opensource_packages/mesh", "job_url_resolution_status": "central_exact", "package_slug": "mesh", - "production_refreshed_at": "2026-05-14T19:37:17.379012+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.593292+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "no_newer_stable_available", @@ -43675,15 +43675,15 @@ }, "run": { "attempt": "1", - "id": "25877367704", + "id": "26658677990", "job_name": "test-mesh / test-mesh", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:55Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026057" + "timestamp": "2026-05-29T19:48:03Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575345885" }, "schema_version": "2.0", "tests": { @@ -43692,31 +43692,31 @@ "duration_seconds": 0, "name": "Test 1 - Check go.mod existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026057#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575345885#step:6:1" }, { - "duration_seconds": 10, + "duration_seconds": 9, "name": "Test 2 - Build package", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026057#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575345885#step:7:1" }, { - "duration_seconds": 5, + "duration_seconds": 4, "name": "Test 3 - Run tests (short)", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026057#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575345885#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Check for example/main", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026057#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575345885#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026057#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575345885#step:10:1" }, { "comparison": "Tests 1-5 validated Mesh v0.4; no higher stable upstream tag exists for a real Test 6 upgrade check.", @@ -43728,10 +43728,10 @@ "next_installed_version": "v0.4", "regression_result": "No newer stable Mesh release is available beyond the tested baseline.", "status": "skipped", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026057#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575345885#step:11:1" } ], - "duration_seconds": 15, + "duration_seconds": 13, "failed": 0, "passed": 5, "skipped": 1 @@ -43746,7 +43746,7 @@ "dashboard_link": "/linux/opensource_packages/metaflow", "job_url_resolution_status": "central_exact", "package_slug": "metaflow", - "production_refreshed_at": "2026-05-14T19:37:17.379217+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.593467+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -43760,15 +43760,15 @@ }, "run": { "attempt": "1", - "id": "25877427741", + "id": "26658731236", "job_name": "test-metaflow / test-metaflow", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:09Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218907" + "timestamp": "2026-05-29T19:49:13Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529320" }, "schema_version": "2.0", "tests": { @@ -43777,46 +43777,46 @@ "duration_seconds": 0, "name": "Test 1 - Package installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218907#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529320#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Version metadata matches baseline", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218907#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529320#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Installed files metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218907#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529320#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218907#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529320#step:10:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218907#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529320#step:11:1" }, { "comparison": "Current pinned package version 2.0.0 passed smoke tests in this run, and the newer stable PyPI candidate 2.0.1 installed successfully on Arm64.", "current_version": "2.0.0", "decision": "next_install_validated", - "duration_seconds": 8, + "duration_seconds": 7, "latest_version": "2.0.1", "name": "Test 6 - Regression Validation", "next_installed_version": "2.0.1", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218907#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529320#step:12:1" } ], - "duration_seconds": 8, + "duration_seconds": 7, "failed": 0, "passed": 6, "skipped": 0 @@ -43831,7 +43831,7 @@ "dashboard_link": "/linux/opensource_packages/metricbeat", "job_url_resolution_status": "central_exact", "package_slug": "metricbeat", - "production_refreshed_at": "2026-05-14T19:37:17.379508+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.593740+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -43845,15 +43845,15 @@ }, "run": { "attempt": "1", - "id": "25877392111", + "id": "26658699892", "job_name": "test-metricbeat / test-metricbeat", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:23Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096530" + "timestamp": "2026-05-29T19:48:32Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420756" }, "schema_version": "2.0", "tests": { @@ -43862,46 +43862,46 @@ "duration_seconds": 0, "name": "Test 1 - Check Metricbeat binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096530#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420756#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Metricbeat version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096530#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420756#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Metricbeat help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096530#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420756#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Check Metricbeat configuration", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096530#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420756#step:9:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 5 - List modules and verify architecture", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096530#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420756#step:10:1" }, { "comparison": "Current pinned Metricbeat version 9.0.4 passed smoke tests in this run. Regression validation installed candidate version 9.0.5 on Arm64, and the extracted binary reported version 9.0.5 while successfully passing help, config, and modules checks.", "current_version": "9.0.4", "decision": "next_install_validated", - "duration_seconds": 2, + "duration_seconds": 7, "latest_version": "9.0.5", "name": "Test 6 - Regression Validation", "next_installed_version": "9.0.5", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096530#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420756#step:11:1" } ], - "duration_seconds": 3, + "duration_seconds": 7, "failed": 0, "passed": 6, "skipped": 0 @@ -43916,7 +43916,7 @@ "dashboard_link": "/linux/opensource_packages/mezmo", "job_url_resolution_status": "central_exact", "package_slug": "mezmo", - "production_refreshed_at": "2026-05-14T19:37:17.379716+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.593937+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -43928,15 +43928,15 @@ }, "run": { "attempt": "1", - "id": "25877403044", + "id": "26658710721", "job_name": "test-mezmo / test-mezmo", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:40Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140803" + "timestamp": "2026-05-29T19:48:43Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456130" }, "schema_version": "2.0", "tests": { @@ -43945,37 +43945,37 @@ "duration_seconds": 0, "name": "Test 1 - Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140803#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456130#step:6:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140803#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456130#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Help Output Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140803#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456130#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140803#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456130#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140803#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456130#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140803#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456130#step:11:1" } ], "duration_seconds": 0, @@ -43993,7 +43993,7 @@ "dashboard_link": "/linux/opensource_packages/microcloud", "job_url_resolution_status": "central_exact", "package_slug": "microcloud", - "production_refreshed_at": "2026-05-14T19:37:17.379941+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.594126+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -44007,15 +44007,15 @@ }, "run": { "attempt": "1", - "id": "25877427741", + "id": "26658731236", "job_name": "test-microcloud / test-microcloud", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:11Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218555" + "timestamp": "2026-05-29T19:49:14Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529340" }, "schema_version": "2.0", "tests": { @@ -44024,46 +44024,46 @@ "duration_seconds": 0, "name": "Test 1 - Check package-specific baseline markers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218555#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529340#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218555#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529340#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218555#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529340#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218555#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529340#step:10:1" }, { - "duration_seconds": 6, + "duration_seconds": 9, "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218555#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529340#step:11:1" }, { "comparison": "Test 6 reran the scoped MicroCloud Arm preflight against the next stable source tag: Go CLI package discovery plus microcloud/microcloudd command source checks. Full clustered service validation requires LXD, MicroCeph, MicroOVN, networking, and multiple-node infrastructure.", "current_version": "2.1.0", "decision": "limited_cpu_smoke_validated", - "duration_seconds": 6, + "duration_seconds": 8, "latest_version": "3.2", "name": "Test 6 - Regression Validation", "next_installed_version": "3.2", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218555#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529340#step:12:1" } ], - "duration_seconds": 12, + "duration_seconds": 17, "failed": 0, "passed": 6, "skipped": 0 @@ -44078,7 +44078,7 @@ "dashboard_link": "/linux/opensource_packages/microk8s", "job_url_resolution_status": "central_exact", "package_slug": "microk8s", - "production_refreshed_at": "2026-05-14T19:37:17.380151+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.594339+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -44086,19 +44086,19 @@ }, "package": { "name": "MicroK8s", - "version": "v1.34.6" + "version": "v1.35.3" }, "run": { "attempt": "1", - "id": "25877383844", + "id": "26658692522", "job_name": "test-microk8s / test-microk8s", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:12Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071463" + "timestamp": "2026-05-29T19:48:22Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394294" }, "schema_version": "2.0", "tests": { @@ -44107,37 +44107,37 @@ "duration_seconds": 0, "name": "Test 1 - Check microk8s binary", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071463#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394294#step:6:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 2 - Check status command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071463#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394294#step:7:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 3 - Check kubectl command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071463#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394294#step:8:1" }, { "duration_seconds": 3, "name": "Test 4 - Check inspect command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071463#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394294#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Check services and architecture", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071463#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394294#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071463#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394294#step:11:1" } ], "duration_seconds": 4, @@ -44155,7 +44155,7 @@ "dashboard_link": "/linux/opensource_packages/mig-parted", "job_url_resolution_status": "central_exact", "package_slug": "mig-parted", - "production_refreshed_at": "2026-05-14T19:37:17.380375+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.594524+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -44169,15 +44169,15 @@ }, "run": { "attempt": "1", - "id": "25877431862", + "id": "26658734615", "job_name": "test-mig-parted / test-mig-parted", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:27Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265209" + "timestamp": "2026-05-29T19:49:13Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537224" }, "schema_version": "2.0", "tests": { @@ -44186,46 +44186,46 @@ "duration_seconds": 0, "name": "Test 1 - Check package-specific baseline markers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265209#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537224#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265209#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537224#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265209#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537224#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265209#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537224#step:10:1" }, { "duration_seconds": 5, "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265209#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537224#step:11:1" }, { "comparison": "Test 6 reran the scoped MIG-Parted Arm preflight against the next stable source tag: Go CLI package discovery plus MIG config and command source validation. Full MIG mutation validation requires NVIDIA GPU hardware, drivers, and privileged host/runtime access.", "current_version": "0.9.0", "decision": "limited_cpu_smoke_validated", - "duration_seconds": 7, - "latest_version": "0.14.1", + "duration_seconds": 6, + "latest_version": "0.14.2", "name": "Test 6 - Regression Validation", - "next_installed_version": "0.14.1", + "next_installed_version": "0.14.2", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265209#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537224#step:12:1" } ], - "duration_seconds": 12, + "duration_seconds": 11, "failed": 0, "passed": 6, "skipped": 0 @@ -44240,7 +44240,7 @@ "dashboard_link": "/linux/opensource_packages/migen", "job_url_resolution_status": "central_exact", "package_slug": "migen", - "production_refreshed_at": "2026-05-14T19:37:17.380585+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.594707+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -44254,15 +44254,15 @@ }, "run": { "attempt": "1", - "id": "25877431862", + "id": "26658734615", "job_name": "test-migen / test-migen", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:31Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265710" + "timestamp": "2026-05-29T19:49:29Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537333" }, "schema_version": "2.0", "tests": { @@ -44271,31 +44271,31 @@ "duration_seconds": 0, "name": "Test 1 - Check package-specific baseline markers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265710#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537333#step:8:1" }, { "duration_seconds": 0, "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265710#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537333#step:9:1" }, { "duration_seconds": 0, "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265710#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537333#step:10:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265710#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537333#step:11:1" }, { "duration_seconds": 0, "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265710#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537333#step:12:1" }, { "comparison": "Imported the next Migen source candidate on Arm64 and generated a tiny Verilog module.", @@ -44307,7 +44307,7 @@ "next_installed_version": "0.9.2", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265710#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537333#step:13:1" } ], "duration_seconds": 1, @@ -44325,7 +44325,7 @@ "dashboard_link": "/linux/opensource_packages/milvus", "job_url_resolution_status": "central_exact", "package_slug": "milvus", - "production_refreshed_at": "2026-05-14T19:37:17.380828+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.594884+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -44339,15 +44339,15 @@ }, "run": { "attempt": "1", - "id": "25877423406", + "id": "26658727918", "job_name": "test-milvus / test-milvus", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:06Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210260" + "timestamp": "2026-05-29T19:49:05Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515822" }, "schema_version": "2.0", "tests": { @@ -44356,46 +44356,46 @@ "duration_seconds": 0, "name": "Test 1 - Check standalone compose asset", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210260#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515822#step:7:1" }, { - "duration_seconds": 12, + "duration_seconds": 3, "name": "Test 2 - Validate standalone compose configuration", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210260#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515822#step:8:1" }, { "duration_seconds": 24, "name": "Test 3 - Pull baseline standalone image and verify architecture", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210260#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515822#step:9:1" }, { - "duration_seconds": 12, + "duration_seconds": 13, "name": "Test 4 - Start baseline standalone stack and wait for health", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210260#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515822#step:10:1" }, { - "duration_seconds": 6, + "duration_seconds": 5, "name": "Test 5 - Validate running standalone container and clean up baseline", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210260#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515822#step:11:1" }, { "comparison": "Current pinned Milvus version 2.5.6 passed the official standalone compose smoke path on Arm64. Regression validation brought up the official standalone compose stack for candidate version 2.5.7, the running standalone image tag resolved to milvusdb/milvus:v2.5.7, and the health endpoint became ready on Arm64.", "current_version": "2.5.6", "decision": "next_install_validated", - "duration_seconds": 32, + "duration_seconds": 28, "latest_version": "2.5.7", "name": "Test 6 - Regression Validation", "next_installed_version": "2.5.7", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210260#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515822#step:12:1" } ], - "duration_seconds": 79, + "duration_seconds": 66, "failed": 0, "passed": 6, "skipped": 0 @@ -44410,7 +44410,7 @@ "dashboard_link": "/linux/opensource_packages/mindspore", "job_url_resolution_status": "central_exact", "package_slug": "mindspore", - "production_refreshed_at": "2026-05-14T19:37:17.381022+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.595061+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -44424,15 +44424,15 @@ }, "run": { "attempt": "1", - "id": "25877431862", + "id": "26658734615", "job_name": "test-mindspore / test-mindspore", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:22Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265175" + "timestamp": "2026-05-29T19:49:17Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537323" }, "schema_version": "2.0", "tests": { @@ -44441,46 +44441,46 @@ "duration_seconds": 0, "name": "Test 1 - Check package-specific baseline markers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265175#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537323#step:7:1" }, { - "duration_seconds": 2, + "duration_seconds": 1, "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265175#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537323#step:8:1" }, { "duration_seconds": 1, "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265175#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537323#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265175#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537323#step:10:1" }, { - "duration_seconds": 42, + "duration_seconds": 36, "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265175#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537323#step:11:1" }, { "comparison": "Supported minimum 1.0.0 remains recorded in package metadata. For runtime credibility, this workflow installs recent stable 2.7.2 and next stable 2.8.0; both create tensors on the Ubuntu Arm64 runner.", "current_version": "2.7.2", "decision": "next_install_validated", - "duration_seconds": 65, + "duration_seconds": 34, "latest_version": "2.8.0", "name": "Test 6 - Regression Validation", "next_installed_version": "2.8.0", "regression_result": "MindSpore next stable Python package installed and executed a tensor smoke successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265175#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537323#step:12:1" } ], - "duration_seconds": 107, + "duration_seconds": 70, "failed": 0, "passed": 6, "skipped": 0 @@ -44495,7 +44495,7 @@ "dashboard_link": "/linux/opensource_packages/miniasm", "job_url_resolution_status": "central_exact", "package_slug": "miniasm", - "production_refreshed_at": "2026-05-14T19:37:17.381249+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.595237+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -44509,15 +44509,15 @@ }, "run": { "attempt": "1", - "id": "25877363365", + "id": "26658674448", "job_name": "test-miniasm / test-miniasm", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:48Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000831" + "timestamp": "2026-05-29T19:47:56Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334989" }, "schema_version": "2.0", "tests": { @@ -44526,31 +44526,31 @@ "duration_seconds": 0, "name": "Test 1 - Check miniasm binary", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000831#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334989#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check source tree contents", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000831#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334989#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000831#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334989#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000831#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334989#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000831#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334989#step:10:1" }, { "comparison": "Miniasm baseline v0.2 built from source and passed usage validation on Arm64, and candidate v0.3 also built successfully and preserved the expected usage behavior on Arm64.", @@ -44562,7 +44562,7 @@ "next_installed_version": "v0.3", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000831#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334989#step:11:1" } ], "duration_seconds": 2, @@ -44580,7 +44580,7 @@ "dashboard_link": "/linux/opensource_packages/miniforge", "job_url_resolution_status": "central_exact", "package_slug": "miniforge", - "production_refreshed_at": "2026-05-14T19:37:17.381430+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.595453+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -44592,15 +44592,15 @@ }, "run": { "attempt": "1", - "id": "25877427741", + "id": "26658731236", "job_name": "test-miniforge / test-miniforge", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:10Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217694" + "timestamp": "2026-05-29T19:49:11Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575528408" }, "schema_version": "2.0", "tests": { @@ -44609,37 +44609,37 @@ "duration_seconds": 0, "name": "Test 1 - Check conda binary", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217694#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575528408#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217694#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575528408#step:7:1" }, { "duration_seconds": 1, "name": "Test 3 - Check info command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217694#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575528408#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Check list command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217694#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575528408#step:9:1" }, { "duration_seconds": 20, "name": "Test 5 - Create test environment", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217694#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575528408#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217694#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575528408#step:11:1" } ], "duration_seconds": 21, @@ -44657,7 +44657,7 @@ "dashboard_link": "/linux/opensource_packages/minikube", "job_url_resolution_status": "central_exact", "package_slug": "minikube", - "production_refreshed_at": "2026-05-14T19:37:17.381604+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.595642+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "validated_next_release", @@ -44671,48 +44671,48 @@ }, "run": { "attempt": "1", - "id": "25877395502", + "id": "26658703674", "job_name": "test-minikube / test-minikube", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:25Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109994" + "timestamp": "2026-05-29T19:48:33Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433074" }, "schema_version": "2.0", "tests": { "details": [ { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 1 - Check minikube binary", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109994#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433074#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109994#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433074#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109994#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433074#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Check config command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109994#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433074#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Check completion command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109994#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433074#step:10:1" }, { "comparison": "Baseline v1.34.0 and next v1.35.0 both passed smoke validation; no regression observed in this workflow scope.", @@ -44724,7 +44724,7 @@ "next_installed_version": "v1.35.0", "regression_result": "Validated baseline Minikube against the configured next release with install and CLI smoke checks.", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109994#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433074#step:11:1" } ], "duration_seconds": 0, @@ -44742,7 +44742,7 @@ "dashboard_link": "/linux/opensource_packages/minimap", "job_url_resolution_status": "central_exact", "package_slug": "minimap", - "production_refreshed_at": "2026-05-14T19:37:17.381861+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.595828+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -44754,15 +44754,15 @@ }, "run": { "attempt": "1", - "id": "25877383844", + "id": "26658692522", "job_name": "test-minimap / test-minimap", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:11Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048070637" + "timestamp": "2026-05-29T19:48:19Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575393160" }, "schema_version": "2.0", "tests": { @@ -44771,37 +44771,37 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048070637#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575393160#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048070637#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575393160#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048070637#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575393160#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048070637#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575393160#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048070637#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575393160#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048070637#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575393160#step:11:1" } ], "duration_seconds": 0, @@ -44819,7 +44819,7 @@ "dashboard_link": "/linux/opensource_packages/minio-mc", "job_url_resolution_status": "central_exact", "package_slug": "minio-mc", - "production_refreshed_at": "2026-05-14T19:37:17.382062+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.596003+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -44833,15 +44833,15 @@ }, "run": { "attempt": "1", - "id": "25877379982", + "id": "26658688675", "job_name": "test-minio-mc / test-minio-mc", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:06Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056580" + "timestamp": "2026-05-29T19:48:14Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380606" }, "schema_version": "2.0", "tests": { @@ -44850,31 +44850,31 @@ "duration_seconds": 0, "name": "Test 1 - Check mc binary exists and architecture", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056580#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380606#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check mc version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056580#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380606#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check mc help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056580#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380606#step:8:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 4 - Check mc config host add/list", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056580#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380606#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Check ls help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056580#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380606#step:10:1" }, { "comparison": "Current baseline MinIO Client 2017-02-02T22:38:48Z passed Tests 1-5. Regression validation downloaded candidate 2017-02-06T20:16:19Z and confirmed CLI help/version output on Arm64.", @@ -44886,7 +44886,7 @@ "next_installed_version": "2017-02-06T20:16:19Z", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056580#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380606#step:11:1" } ], "duration_seconds": 1, @@ -44904,7 +44904,7 @@ "dashboard_link": "/linux/opensource_packages/minio-os", "job_url_resolution_status": "central_exact", "package_slug": "minio-os", - "production_refreshed_at": "2026-05-14T19:37:17.382268+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.596187+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -44916,15 +44916,15 @@ }, "run": { "attempt": "1", - "id": "25877403044", + "id": "26658710721", "job_name": "test-minio-os / test-minio-os", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:36Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048141156" + "timestamp": "2026-05-29T19:48:44Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456186" }, "schema_version": "2.0", "tests": { @@ -44933,37 +44933,37 @@ "duration_seconds": 0, "name": "Test 1 - Check binary exists and architecture", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048141156#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456186#step:6:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 2 - Check version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048141156#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456186#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048141156#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456186#step:8:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 4 - Check server subcommand help", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048141156#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456186#step:9:1" }, { "duration_seconds": 1, "name": "Test 5 - Functional validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048141156#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456186#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048141156#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456186#step:11:1" } ], "duration_seconds": 2, @@ -44981,7 +44981,7 @@ "dashboard_link": "/linux/opensource_packages/mlflow", "job_url_resolution_status": "central_exact", "package_slug": "mlflow", - "production_refreshed_at": "2026-05-14T19:37:17.382447+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.596394+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -44995,15 +44995,15 @@ }, "run": { "attempt": "1", - "id": "25877431862", + "id": "26658734615", "job_name": "test-mlflow / test-mlflow", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:30Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265101" + "timestamp": "2026-05-29T19:49:23Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537215" }, "schema_version": "2.0", "tests": { @@ -45012,46 +45012,46 @@ "duration_seconds": 0, "name": "Test 1 - Check package-specific baseline markers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265101#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537215#step:8:1" }, { "duration_seconds": 0, "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265101#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537215#step:9:1" }, { "duration_seconds": 0, "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265101#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537215#step:10:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265101#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537215#step:11:1" }, { - "duration_seconds": 90, + "duration_seconds": 95, "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265101#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537215#step:12:1" }, { "comparison": "Installed the next MLflow candidate, started a local SQLite-backed tracking server, and verified its health endpoint on Arm64.", "current_version": "2.4.0", "decision": "limited_cpu_smoke_validated", - "duration_seconds": 62, + "duration_seconds": 56, "latest_version": "3.12.0", "name": "Test 6 - Regression Validation", "next_installed_version": "3.12.0", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265101#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537215#step:13:1" } ], - "duration_seconds": 62, + "duration_seconds": 56, "failed": 0, "passed": 6, "skipped": 0 @@ -45066,7 +45066,7 @@ "dashboard_link": "/linux/opensource_packages/mlnet", "job_url_resolution_status": "central_exact", "package_slug": "mlnet", - "production_refreshed_at": "2026-05-14T19:37:17.382654+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.596580+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -45080,15 +45080,15 @@ }, "run": { "attempt": "1", - "id": "25877431862", + "id": "26658734615", "job_name": "test-mlnet / test-mlnet", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:22Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265052" + "timestamp": "2026-05-29T19:49:21Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537187" }, "schema_version": "2.0", "tests": { @@ -45097,31 +45097,31 @@ "duration_seconds": 0, "name": "Test 1 - Check package-specific baseline markers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265052#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537187#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265052#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537187#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265052#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537187#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265052#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537187#step:10:1" }, { "duration_seconds": 0, "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265052#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537187#step:11:1" }, { "comparison": "A bounded Arm64 CPU-side source probe validated the next ML.NET candidate checkout and solution identity. This does not build or execute .NET workloads.", @@ -45133,7 +45133,7 @@ "next_installed_version": "5.0.0", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265052#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537187#step:12:1" } ], "duration_seconds": 5, @@ -45151,7 +45151,7 @@ "dashboard_link": "/linux/opensource_packages/mlrun", "job_url_resolution_status": "central_exact", "package_slug": "mlrun", - "production_refreshed_at": "2026-05-14T19:37:17.382861+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.596753+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -45163,15 +45163,15 @@ }, "run": { "attempt": "1", - "id": "25877406767", + "id": "26658714432", "job_name": "test-mlrun / test-mlrun", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:43Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155404" + "timestamp": "2026-05-29T19:48:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469213" }, "schema_version": "2.0", "tests": { @@ -45180,37 +45180,37 @@ "duration_seconds": 0, "name": "Test 1 - Check mlrun CLI exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155404#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469213#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Check exact package version", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155404#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469213#step:8:1" }, { - "duration_seconds": 3, + "duration_seconds": 2, "name": "Test 3 - Check help command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155404#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469213#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155404#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469213#step:10:1" }, { - "duration_seconds": 3, + "duration_seconds": 4, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155404#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469213#step:11:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155404#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469213#step:12:1" } ], "duration_seconds": 6, @@ -45228,7 +45228,7 @@ "dashboard_link": "/linux/opensource_packages/mojo", "job_url_resolution_status": "central_exact", "package_slug": "mojo", - "production_refreshed_at": "2026-05-14T19:37:17.383057+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.596925+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -45240,15 +45240,15 @@ }, "run": { "attempt": "1", - "id": "25877423406", + "id": "26658727918", "job_name": "test-mojo / test-mojo", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:06Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210165" + "timestamp": "2026-05-29T19:49:05Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516094" }, "schema_version": "2.0", "tests": { @@ -45257,37 +45257,37 @@ "duration_seconds": 0, "name": "Test 1 - Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210165#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516094#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210165#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516094#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Help Output Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210165#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516094#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210165#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516094#step:9:1" }, { "duration_seconds": 1, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210165#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516094#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210165#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516094#step:11:1" } ], "duration_seconds": 1, @@ -45305,7 +45305,7 @@ "dashboard_link": "/linux/opensource_packages/mongodb", "job_url_resolution_status": "central_exact", "package_slug": "mongodb", - "production_refreshed_at": "2026-05-14T19:37:17.383477+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.597283+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -45319,15 +45319,15 @@ }, "run": { "attempt": "1", - "id": "25877355625", + "id": "26658667828", "job_name": "test-mongodb / test-mongodb", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:37Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047975638" + "timestamp": "2026-05-29T19:47:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308055" }, "schema_version": "2.0", "tests": { @@ -45336,43 +45336,43 @@ "duration_seconds": 0, "name": "Test 1 - Binary Existence and Architecture", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047975638#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308055#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047975638#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308055#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Help Output Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047975638#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308055#step:8:1" }, { "duration_seconds": 1, "name": "Test 4 - Functional Validation (Ping)", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047975638#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308055#step:9:1" }, { - "duration_seconds": 2, + "duration_seconds": 1, "name": "Test 5 - Functional Validation (Insert and Find)", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047975638#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308055#step:10:1" }, { "comparison": "Current pinned MongoDB version 7.0.31 passed smoke tests in this run. Regression validation downloaded the official Arm64 candidate tarball 7.0.32, and the candidate server reported the exact version and answered a real ping on Arm64.", "current_version": "7.0.31", "decision": "next_install_validated", - "duration_seconds": 3, + "duration_seconds": 4, "latest_version": "7.0.32", "name": "Test 6 - Regression Validation", "next_installed_version": "7.0.32", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047975638#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308055#step:11:1" } ], "duration_seconds": 6, @@ -45390,7 +45390,7 @@ "dashboard_link": "/linux/opensource_packages/mongodb-c-driver", "job_url_resolution_status": "central_exact", "package_slug": "mongodb-c-driver", - "production_refreshed_at": "2026-05-14T19:37:17.383273+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.597099+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -45402,15 +45402,15 @@ }, "run": { "attempt": "1", - "id": "25877363365", + "id": "26658674448", "job_name": "test-mongodb-c-driver / test-mongodb-c-driver", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:47Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001128" + "timestamp": "2026-05-29T19:47:56Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334526" }, "schema_version": "2.0", "tests": { @@ -45419,40 +45419,40 @@ "duration_seconds": 0, "name": "Test 1 - Check pkg-config", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001128#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334526#step:6:1" }, { - "duration_seconds": 5, + "duration_seconds": 1, "name": "Test 2 - Compile simple C program", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001128#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334526#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Run compiled program", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001128#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334526#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Check header files", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001128#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334526#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001128#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334526#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001128#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334526#step:11:1" } ], - "duration_seconds": 5, + "duration_seconds": 1, "failed": 0, "passed": 6, "skipped": 0 @@ -45467,7 +45467,7 @@ "dashboard_link": "/linux/opensource_packages/mongoose", "job_url_resolution_status": "central_exact", "package_slug": "mongoose", - "production_refreshed_at": "2026-05-14T19:37:17.383702+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.597494+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -45479,15 +45479,15 @@ }, "run": { "attempt": "1", - "id": "25877399008", + "id": "26658707245", "job_name": "test-mongoose / test-mongoose", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:37Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125673" + "timestamp": "2026-05-29T19:48:42Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445554" }, "schema_version": "2.0", "tests": { @@ -45496,40 +45496,40 @@ "duration_seconds": 0, "name": "Test 1 - Check Module Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125673#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445554#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125673#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445554#step:8:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 3 - Check Help Output or Configuration", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125673#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445554#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125673#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445554#step:10:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125673#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445554#step:11:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125673#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445554#step:12:1" } ], - "duration_seconds": 0, + "duration_seconds": 1, "failed": 0, "passed": 6, "skipped": 0 @@ -45544,7 +45544,7 @@ "dashboard_link": "/linux/opensource_packages/monkey", "job_url_resolution_status": "central_exact", "package_slug": "monkey", - "production_refreshed_at": "2026-05-14T19:37:17.383923+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.597675+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -45558,15 +45558,15 @@ }, "run": { "attempt": "1", - "id": "25877371674", + "id": "26658681575", "job_name": "test-monkey / test-monkey", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:58Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031010" + "timestamp": "2026-05-29T19:48:06Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357276" }, "schema_version": "2.0", "tests": { @@ -45575,31 +45575,31 @@ "duration_seconds": 0, "name": "Test 1 - Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031010#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357276#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031010#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357276#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Help Output Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031010#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357276#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031010#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357276#step:9:1" }, { "duration_seconds": 3, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031010#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357276#step:10:1" }, { "comparison": "Current pinned Monkey release 1.8.3 passed smoke tests in this run. Regression validation rebuilt candidate version 1.8.4 on Arm64, and the resulting monkey binary reported version 1.8.4.", @@ -45611,7 +45611,7 @@ "next_installed_version": "1.8.4", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031010#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357276#step:11:1" } ], "duration_seconds": 6, @@ -45629,7 +45629,7 @@ "dashboard_link": "/linux/opensource_packages/moosefs", "job_url_resolution_status": "central_exact", "package_slug": "moosefs", - "production_refreshed_at": "2026-05-14T19:37:17.384161+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.597862+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -45641,15 +45641,15 @@ }, "run": { "attempt": "1", - "id": "25877392111", + "id": "26658699892", "job_name": "test-moosefs / test-moosefs", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:22Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096546" + "timestamp": "2026-05-29T19:48:30Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421108" }, "schema_version": "2.0", "tests": { @@ -45658,37 +45658,37 @@ "duration_seconds": 0, "name": "Test 1 - Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096546#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421108#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096546#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421108#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Help Output Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096546#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421108#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096546#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421108#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096546#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421108#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096546#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421108#step:11:1" } ], "duration_seconds": 0, @@ -45706,7 +45706,7 @@ "dashboard_link": "/linux/opensource_packages/mopac", "job_url_resolution_status": "central_exact", "package_slug": "mopac", - "production_refreshed_at": "2026-05-14T19:37:17.384474+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.598125+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -45718,15 +45718,15 @@ }, "run": { "attempt": "1", - "id": "25877411197", + "id": "26658717942", "job_name": "test-mopac / test-mopac", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:49Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175709" + "timestamp": "2026-05-29T19:48:50Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478602" }, "schema_version": "2.0", "tests": { @@ -45735,40 +45735,40 @@ "duration_seconds": 0, "name": "Test 1 - Check mopac binary", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175709#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478602#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check help/usage (if available)", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175709#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478602#step:7:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 3 - Run simple calculation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175709#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478602#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175709#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478602#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175709#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478602#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175709#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478602#step:11:1" } ], - "duration_seconds": 1, + "duration_seconds": 0, "failed": 0, "passed": 6, "skipped": 0 @@ -45783,7 +45783,7 @@ "dashboard_link": "/linux/opensource_packages/mosquitto", "job_url_resolution_status": "central_exact", "package_slug": "mosquitto", - "production_refreshed_at": "2026-05-14T19:37:17.384690+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.598327+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -45795,15 +45795,15 @@ }, "run": { "attempt": "1", - "id": "25877419588", + "id": "26658724696", "job_name": "test-mosquitto / test-mosquitto", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:01Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192473" + "timestamp": "2026-05-29T19:49:02Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504007" }, "schema_version": "2.0", "tests": { @@ -45812,37 +45812,37 @@ "duration_seconds": 0, "name": "Test 1 - Check broker and client binaries", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192473#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504007#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192473#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504007#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192473#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504007#step:8:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 4 - Verify architecture", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192473#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504007#step:9:1" }, { "duration_seconds": 3, "name": "Test 5 - Functional publish and subscribe", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192473#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504007#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192473#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504007#step:11:1" } ], "duration_seconds": 3, @@ -45860,7 +45860,7 @@ "dashboard_link": "/linux/opensource_packages/mpfr", "job_url_resolution_status": "central_exact", "package_slug": "mpfr", - "production_refreshed_at": "2026-05-14T19:37:17.384918+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.598505+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -45872,15 +45872,15 @@ }, "run": { "attempt": "1", - "id": "25877363365", + "id": "26658674448", "job_name": "test-mpfr / test-mpfr", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:48Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000056" + "timestamp": "2026-05-29T19:47:55Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333830" }, "schema_version": "2.0", "tests": { @@ -45889,40 +45889,40 @@ "duration_seconds": 0, "name": "Test 1 - Check mpfr.h exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000056#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333830#step:6:1" }, { - "duration_seconds": 5, + "duration_seconds": 1, "name": "Test 2 - Compile simple C program", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000056#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333830#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Run compiled program", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000056#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333830#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000056#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333830#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Library linkage check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000056#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333830#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000056#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333830#step:11:1" } ], - "duration_seconds": 5, + "duration_seconds": 1, "failed": 0, "passed": 6, "skipped": 0 @@ -45937,7 +45937,7 @@ "dashboard_link": "/linux/opensource_packages/ms-openjdk", "job_url_resolution_status": "central_exact", "package_slug": "ms-openjdk", - "production_refreshed_at": "2026-05-14T19:37:17.385126+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.598677+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "validated_next_release", @@ -45951,15 +45951,15 @@ }, "run": { "attempt": "1", - "id": "25877431862", + "id": "26658734615", "job_name": "test-ms-openjdk / test-ms-openjdk", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:22Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265172" + "timestamp": "2026-05-29T19:49:16Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537184" }, "schema_version": "2.0", "tests": { @@ -45968,31 +45968,31 @@ "duration_seconds": 0, "name": "Test 1 - Check package-specific baseline markers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265172#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537184#step:7:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265172#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537184#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265172#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537184#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265172#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537184#step:10:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265172#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537184#step:11:1" }, { "comparison": "Tests 1-5 validated the current published Microsoft Build of OpenJDK Arm64 release metadata and bounded package smoke. The newer stable Arm64 release 11.0.28 resolved successfully from the official Microsoft Arm64 download URL.", @@ -46004,10 +46004,10 @@ "next_installed_version": "11.0.28", "regression_result": "Next stable Arm64 binary release validated", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265172#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537184#step:12:1" } ], - "duration_seconds": 0, + "duration_seconds": 1, "failed": 0, "passed": 6, "skipped": 0 @@ -46022,7 +46022,7 @@ "dashboard_link": "/linux/opensource_packages/msquic", "job_url_resolution_status": "central_exact", "package_slug": "msquic", - "production_refreshed_at": "2026-05-14T19:37:17.385316+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.598850+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -46036,15 +46036,15 @@ }, "run": { "attempt": "1", - "id": "25877431862", + "id": "26658734615", "job_name": "test-msquic / test-msquic", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:25Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265895" + "timestamp": "2026-05-29T19:49:13Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537352" }, "schema_version": "2.0", "tests": { @@ -46053,46 +46053,46 @@ "duration_seconds": 0, "name": "Test 1 - Check package-specific baseline markers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265895#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537352#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265895#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537352#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265895#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537352#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265895#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537352#step:10:1" }, { "duration_seconds": 0, "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265895#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537352#step:11:1" }, { "comparison": "A bounded Arm64 CPU-side source probe validated the next MsQuic candidate checkout and sample entrypoint identity. This does not build or run QUIC traffic.", "current_version": "2.1.1", "decision": "limited_cpu_smoke_validated", - "duration_seconds": 1, + "duration_seconds": 2, "latest_version": "2.5.8", "name": "Test 6 - Regression Validation", "next_installed_version": "2.5.8", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265895#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537352#step:12:1" } ], - "duration_seconds": 1, + "duration_seconds": 2, "failed": 0, "passed": 6, "skipped": 0 @@ -46107,7 +46107,7 @@ "dashboard_link": "/linux/opensource_packages/multipass", "job_url_resolution_status": "central_exact", "package_slug": "multipass", - "production_refreshed_at": "2026-05-14T19:37:17.385522+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.599035+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -46115,19 +46115,19 @@ }, "package": { "name": "Multipass", - "version": "1.16.2" + "version": "1.16.3" }, "run": { "attempt": "1", - "id": "25877371674", + "id": "26658681575", "job_name": "test-multipass / test-multipass", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:00Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031612" + "timestamp": "2026-05-29T19:48:07Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358467" }, "schema_version": "2.0", "tests": { @@ -46136,37 +46136,37 @@ "duration_seconds": 0, "name": "Test 1 - Check multipass binary", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031612#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358467#step:6:1" }, { "duration_seconds": 2, "name": "Test 2 - Check version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031612#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358467#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031612#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358467#step:8:1" }, { "duration_seconds": 1, "name": "Test 4 - List available images (find)", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031612#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358467#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031612#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358467#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031612#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358467#step:11:1" } ], "duration_seconds": 3, @@ -46184,7 +46184,7 @@ "dashboard_link": "/linux/opensource_packages/mummer", "job_url_resolution_status": "central_exact", "package_slug": "mummer", - "production_refreshed_at": "2026-05-14T19:37:17.385732+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.599216+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -46196,15 +46196,15 @@ }, "run": { "attempt": "1", - "id": "25877411197", + "id": "26658717942", "job_name": "test-mummer / test-mummer", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:49Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175289" + "timestamp": "2026-05-29T19:48:53Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480068" }, "schema_version": "2.0", "tests": { @@ -46213,37 +46213,37 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175289#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480068#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175289#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480068#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Help Output or Configuration", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175289#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480068#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175289#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480068#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175289#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480068#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175289#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480068#step:11:1" } ], "duration_seconds": 0, @@ -46261,7 +46261,7 @@ "dashboard_link": "/linux/opensource_packages/munge", "job_url_resolution_status": "central_exact", "package_slug": "munge", - "production_refreshed_at": "2026-05-14T19:37:17.385982+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.599423+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -46273,15 +46273,15 @@ }, "run": { "attempt": "1", - "id": "25877419588", + "id": "26658724696", "job_name": "test-munge / test-munge", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:55Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192446" + "timestamp": "2026-05-29T19:49:03Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504032" }, "schema_version": "2.0", "tests": { @@ -46290,37 +46290,37 @@ "duration_seconds": 0, "name": "Test 1 - Check client and daemon binaries", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192446#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504032#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192446#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504032#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192446#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504032#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify architecture", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192446#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504032#step:9:1" }, { "duration_seconds": 2, "name": "Test 5 - Functional credential encode and decode", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192446#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504032#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192446#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504032#step:11:1" } ], "duration_seconds": 2, @@ -46338,7 +46338,7 @@ "dashboard_link": "/linux/opensource_packages/murmurhash", "job_url_resolution_status": "central_exact", "package_slug": "murmurhash", - "production_refreshed_at": "2026-05-14T19:37:17.386185+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.599597+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -46350,15 +46350,15 @@ }, "run": { "attempt": "1", - "id": "25877363365", + "id": "26658674448", "job_name": "test-murmurhash / test-murmurhash", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:48Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001015" + "timestamp": "2026-05-29T19:47:58Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334572" }, "schema_version": "2.0", "tests": { @@ -46367,37 +46367,37 @@ "duration_seconds": 0, "name": "Test 1 - Import hash extension", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001015#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334572#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Hash unicode and bytes consistently", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001015#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334572#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check module API surface", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001015#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334572#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Seeded hash changes output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001015#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334572#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional import and hash", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001015#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334572#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001015#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334572#step:11:1" } ], "duration_seconds": 0, @@ -46415,7 +46415,7 @@ "dashboard_link": "/linux/opensource_packages/muscle", "job_url_resolution_status": "central_exact", "package_slug": "muscle", - "production_refreshed_at": "2026-05-14T19:37:17.386399+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.599780+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -46429,15 +46429,15 @@ }, "run": { "attempt": "1", - "id": "25877411197", + "id": "26658717942", "job_name": "test-muscle / test-muscle", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:49Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175267" + "timestamp": "2026-05-29T19:48:52Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479939" }, "schema_version": "2.0", "tests": { @@ -46446,46 +46446,46 @@ "duration_seconds": 0, "name": "Test 1 - Check MUSCLE binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175267#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479939#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check source tag metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175267#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479939#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175267#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479939#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175267#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479939#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175267#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479939#step:10:1" }, { "comparison": "Current pinned MUSCLE source build v5.2 passed Arm64 smoke tests in this run. Regression validation built candidate v5.3 from source, confirmed the Arm64 binary, and completed a simple alignment successfully.", "current_version": "v5.2", "decision": "next_install_validated", - "duration_seconds": 174, + "duration_seconds": 168, "latest_version": "v5.3", "name": "Test 6 - Regression Validation", "next_installed_version": "v5.3", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175267#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479939#step:11:1" } ], - "duration_seconds": 174, + "duration_seconds": 168, "failed": 0, "passed": 6, "skipped": 0 @@ -46500,7 +46500,7 @@ "dashboard_link": "/linux/opensource_packages/musl", "job_url_resolution_status": "central_exact", "package_slug": "musl", - "production_refreshed_at": "2026-05-14T19:37:17.386595+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.599966+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -46512,15 +46512,15 @@ }, "run": { "attempt": "1", - "id": "25877406767", + "id": "26658714432", "job_name": "test-musl / test-musl", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:42Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154581" + "timestamp": "2026-05-29T19:48:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468543" }, "schema_version": "2.0", "tests": { @@ -46529,37 +46529,37 @@ "duration_seconds": 0, "name": "Test 1 - Check musl-gcc binary", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154581#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468543#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154581#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468543#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check toolchain configuration", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154581#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468543#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify architecture", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154581#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468543#step:9:1" }, { "duration_seconds": 3, "name": "Test 5 - Functional compile and run", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154581#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468543#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154581#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468543#step:11:1" } ], "duration_seconds": 3, @@ -46577,7 +46577,7 @@ "dashboard_link": "/linux/opensource_packages/myhdl", "job_url_resolution_status": "central_exact", "package_slug": "myhdl", - "production_refreshed_at": "2026-05-14T19:37:17.386832+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.600150+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -46591,15 +46591,15 @@ }, "run": { "attempt": "1", - "id": "25877431862", + "id": "26658734615", "job_name": "test-myhdl / test-myhdl", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:36Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265671" + "timestamp": "2026-05-29T19:49:22Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537301" }, "schema_version": "2.0", "tests": { @@ -46608,46 +46608,46 @@ "duration_seconds": 0, "name": "Test 1 - Check package-specific baseline markers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265671#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537301#step:8:1" }, { "duration_seconds": 0, "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265671#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537301#step:9:1" }, { "duration_seconds": 0, "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265671#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537301#step:10:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265671#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537301#step:11:1" }, { "duration_seconds": 0, "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265671#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537301#step:12:1" }, { "comparison": "Installed the next MyHDL candidate on Arm64, ran a tiny simulation, and converted the design to Verilog. Current MyHDL 0.8 remains Python 2.7-era and is not claimed as runnable on ubuntu-24.04-arm.", "current_version": "0.8", "decision": "limited_cpu_smoke_validated", - "duration_seconds": 12, + "duration_seconds": 11, "latest_version": "0.11", "name": "Test 6 - Regression Validation", "next_installed_version": "0.11", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265671#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537301#step:13:1" } ], - "duration_seconds": 12, + "duration_seconds": 11, "failed": 0, "passed": 6, "skipped": 0 @@ -46662,7 +46662,7 @@ "dashboard_link": "/linux/opensource_packages/mysql", "job_url_resolution_status": "central_exact", "package_slug": "mysql", - "production_refreshed_at": "2026-05-14T19:37:17.387039+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.600352+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -46674,15 +46674,15 @@ }, "run": { "attempt": "1", - "id": "25877355625", + "id": "26658667828", "job_name": "test-mysql / test-mysql", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:37Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047975649" + "timestamp": "2026-05-29T19:47:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575307962" }, "schema_version": "2.0", "tests": { @@ -46691,37 +46691,37 @@ "duration_seconds": 0, "name": "Test 1 - Check mysql client binary", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047975649#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575307962#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check mysqld binary", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047975649#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575307962#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047975649#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575307962#step:8:1" }, { "duration_seconds": 8, "name": "Test 4 - Check service status", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047975649#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575307962#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Simple connection check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047975649#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575307962#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047975649#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575307962#step:11:1" } ], "duration_seconds": 8, @@ -46739,7 +46739,7 @@ "dashboard_link": "/linux/opensource_packages/nacos", "job_url_resolution_status": "central_exact", "package_slug": "nacos", - "production_refreshed_at": "2026-05-14T19:37:17.387215+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.600544+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -46753,15 +46753,15 @@ }, "run": { "attempt": "1", - "id": "25877399008", + "id": "26658707245", "job_name": "test-nacos / test-nacos", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:31Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125334" + "timestamp": "2026-05-29T19:48:39Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575444541" }, "schema_version": "2.0", "tests": { @@ -46770,31 +46770,31 @@ "duration_seconds": 0, "name": "Test 1 - Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125334#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575444541#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125334#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575444541#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Help Output or Configuration Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125334#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575444541#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125334#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575444541#step:9:1" }, { - "duration_seconds": 15, + "duration_seconds": 11, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125334#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575444541#step:10:1" }, { "comparison": "Current pinned Nacos version 2.5.0 passed smoke tests in this run. Regression validation downloaded and prepared the candidate Arm64 artifact from https://github.com/alibaba/nacos/releases/download/2.5.1/nacos-server-2.5.1.zip successfully, and the extracted candidate manifest reported version 2.5.1.", @@ -46806,10 +46806,10 @@ "next_installed_version": "2.5.1", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125334#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575444541#step:11:1" } ], - "duration_seconds": 17, + "duration_seconds": 13, "failed": 0, "passed": 6, "skipped": 0 @@ -46824,7 +46824,7 @@ "dashboard_link": "/linux/opensource_packages/nagioscore", "job_url_resolution_status": "central_exact", "package_slug": "nagioscore", - "production_refreshed_at": "2026-05-14T19:37:17.387388+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.600732+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -46838,15 +46838,15 @@ }, "run": { "attempt": "1", - "id": "25877383844", + "id": "26658692522", "job_name": "test-nagioscore / test-nagioscore", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:12Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071670" + "timestamp": "2026-05-29T19:48:20Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394954" }, "schema_version": "2.0", "tests": { @@ -46855,31 +46855,31 @@ "duration_seconds": 0, "name": "Test 1 - Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071670#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394954#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071670#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394954#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Configuration Parsing", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071670#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394954#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071670#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394954#step:9:1" }, { "duration_seconds": 5, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071670#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394954#step:10:1" }, { "comparison": "Current pinned Nagios Core version 4.5.8 passed smoke tests in this run. Regression validation rebuilt candidate version 4.5.9 from upstream source on Arm64, and the staged nagios binary reported version 4.5.9.", @@ -46891,7 +46891,7 @@ "next_installed_version": "4.5.9", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071670#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394954#step:11:1" } ], "duration_seconds": 42, @@ -46909,7 +46909,7 @@ "dashboard_link": "/linux/opensource_packages/nats", "job_url_resolution_status": "central_exact", "package_slug": "nats", - "production_refreshed_at": "2026-05-14T19:37:17.387612+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.600918+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -46923,15 +46923,15 @@ }, "run": { "attempt": "1", - "id": "25877363365", + "id": "26658674448", "job_name": "test-nats / test-nats", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:46Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000997" + "timestamp": "2026-05-29T19:47:57Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334459" }, "schema_version": "2.0", "tests": { @@ -46940,31 +46940,31 @@ "duration_seconds": 0, "name": "Test 1 - Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000997#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334459#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000997#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334459#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Help Output Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000997#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334459#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000997#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334459#step:9:1" }, { "duration_seconds": 3, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000997#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334459#step:10:1" }, { "comparison": "Current pinned NATS server version 2.10.26 and CLI version 0.2.0 passed smoke tests in this run. Regression validation then verified the newer stable Arm64 server 2.10.27 and CLI 0.2.1 successfully.", @@ -46976,7 +46976,7 @@ "next_installed_version": "2.10.27", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000997#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334459#step:11:1" } ], "duration_seconds": 4, @@ -46994,7 +46994,7 @@ "dashboard_link": "/linux/opensource_packages/nebula_graph", "job_url_resolution_status": "central_exact", "package_slug": "nebula_graph", - "production_refreshed_at": "2026-05-14T19:37:17.387816+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.601097+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -47008,15 +47008,15 @@ }, "run": { "attempt": "1", - "id": "25877427741", + "id": "26658731236", "job_name": "test-nebula_graph / test-nebula_graph", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:05Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218419" + "timestamp": "2026-05-29T19:49:21Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529548" }, "schema_version": "2.0", "tests": { @@ -47025,31 +47025,31 @@ "duration_seconds": 0, "name": "Test 1 - Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218419#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529548#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Release Mapping Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218419#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529548#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Help Output Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218419#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529548#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218419#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529548#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218419#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529548#step:10:1" }, { "comparison": "Nebula Console baseline v3.6.0 passed Arm64 binary, help, and bounded local connection-failure probes. Candidate v3.8.0 downloaded as a Linux/Arm64 binary and passed the same help and bounded local client behavior checks.", @@ -47061,7 +47061,7 @@ "next_installed_version": "v3.8.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218419#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529548#step:11:1" } ], "duration_seconds": 0, @@ -47079,7 +47079,7 @@ "dashboard_link": "/linux/opensource_packages/nemo", "job_url_resolution_status": "central_exact", "package_slug": "nemo", - "production_refreshed_at": "2026-05-14T19:37:17.388217+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.601481+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -47091,15 +47091,15 @@ }, "run": { "attempt": "1", - "id": "25877423406", + "id": "26658727918", "job_name": "test-nemo / test-nemo", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:19Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210257" + "timestamp": "2026-05-29T19:49:18Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515862" }, "schema_version": "2.0", "tests": { @@ -47108,37 +47108,37 @@ "duration_seconds": 0, "name": "Test 1 - Check module import", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210257#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515862#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Check exact version", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210257#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515862#step:8:1" }, { - "duration_seconds": 2, + "duration_seconds": 1, "name": "Test 3 - Check package API surface", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210257#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515862#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210257#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515862#step:10:1" }, { - "duration_seconds": 1, + "duration_seconds": 2, "name": "Test 5 - Functional validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210257#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515862#step:11:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210257#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515862#step:12:1" } ], "duration_seconds": 3, @@ -47156,7 +47156,7 @@ "dashboard_link": "/linux/opensource_packages/nemo-agent-toolkit", "job_url_resolution_status": "central_exact", "package_slug": "nemo-agent-toolkit", - "production_refreshed_at": "2026-05-14T19:37:17.388031+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.601294+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -47170,15 +47170,15 @@ }, "run": { "attempt": "1", - "id": "25877431862", + "id": "26658734615", "job_name": "test-nemo-agent-toolkit / test-nemo-agent-toolkit", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:22Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265855" + "timestamp": "2026-05-29T19:49:17Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538277" }, "schema_version": "2.0", "tests": { @@ -47187,46 +47187,46 @@ "duration_seconds": 0, "name": "Test 1 - Check package-specific baseline markers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265855#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538277#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265855#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538277#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265855#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538277#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265855#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538277#step:10:1" }, { "duration_seconds": 39, "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265855#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538277#step:11:1" }, { "comparison": "Baseline 1.1.0 and next stable 1.4.3 were both validated through aiqtoolkit package installation/import on the Ubuntu Arm64 runner.", "current_version": "1.1.0", "decision": "next_install_validated", - "duration_seconds": 46, + "duration_seconds": 47, "latest_version": "1.4.3", "name": "Test 6 - Regression Validation", "next_installed_version": "1.4.3", "regression_result": "NeMo Agent Toolkit next stable Python package installed and imported successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265855#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538277#step:12:1" } ], - "duration_seconds": 85, + "duration_seconds": 86, "failed": 0, "passed": 6, "skipped": 0 @@ -47241,7 +47241,7 @@ "dashboard_link": "/linux/opensource_packages/neo4j", "job_url_resolution_status": "central_exact", "package_slug": "neo4j", - "production_refreshed_at": "2026-05-14T19:37:17.388443+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.601652+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -47253,15 +47253,15 @@ }, "run": { "attempt": "1", - "id": "25877423406", + "id": "26658727918", "job_name": "test-neo4j / test-neo4j", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:12Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209705" + "timestamp": "2026-05-29T19:49:08Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515988" }, "schema_version": "2.0", "tests": { @@ -47270,37 +47270,37 @@ "duration_seconds": 0, "name": "Test 1 - Artifact Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209705#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515988#step:6:1" }, { - "duration_seconds": 1, + "duration_seconds": 2, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209705#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515988#step:7:1" }, { "duration_seconds": 1, "name": "Test 3 - Help Output Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209705#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515988#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209705#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515988#step:9:1" }, { - "duration_seconds": 14, + "duration_seconds": 12, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209705#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515988#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209705#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515988#step:11:1" } ], "duration_seconds": 15, @@ -47318,7 +47318,7 @@ "dashboard_link": "/linux/opensource_packages/netbsd", "job_url_resolution_status": "central_exact", "package_slug": "netbsd", - "production_refreshed_at": "2026-05-14T19:37:17.388645+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.601822+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -47332,15 +47332,15 @@ }, "run": { "attempt": "1", - "id": "25877383844", + "id": "26658692522", "job_name": "test-netbsd / test-netbsd", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:12Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071583" + "timestamp": "2026-05-29T19:48:20Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394494" }, "schema_version": "2.0", "tests": { @@ -47349,46 +47349,46 @@ "duration_seconds": 7, "name": "Test 1 - Check image archive exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071583#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394494#step:6:1" }, { - "duration_seconds": 8, + "duration_seconds": 7, "name": "Test 2 - Check image format", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071583#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394494#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check QEMU boot prerequisites", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071583#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394494#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071583#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394494#step:9:1" }, { "duration_seconds": 90, "name": "Test 5 - Boot baseline image", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071583#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394494#step:10:1" }, { "comparison": "Baseline 10.0 booted successfully in Tests 1-5, and next stable NetBSD 10.1 also booted successfully under the same QEMU Arm64 validation path.", "current_version": "10.0", "decision": "next_install_validated", - "duration_seconds": 111, + "duration_seconds": 115, "latest_version": "10.1", "name": "Test 6 - Regression Validation", "next_installed_version": "10.1", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071583#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394494#step:11:1" } ], - "duration_seconds": 105, + "duration_seconds": 104, "failed": 0, "passed": 6, "skipped": 0 @@ -47403,7 +47403,7 @@ "dashboard_link": "/linux/opensource_packages/netcdf", "job_url_resolution_status": "central_exact", "package_slug": "netcdf", - "production_refreshed_at": "2026-05-14T19:37:17.388868+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.602000+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -47415,15 +47415,15 @@ }, "run": { "attempt": "1", - "id": "25877415436", + "id": "26658721315", "job_name": "test-netcdf / test-netcdf", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:54Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180752" + "timestamp": "2026-05-29T19:48:57Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491725" }, "schema_version": "2.0", "tests": { @@ -47432,37 +47432,37 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180752#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491725#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180752#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491725#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Help Output or Configuration", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180752#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491725#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180752#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491725#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180752#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491725#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180752#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491725#step:11:1" } ], "duration_seconds": 0, @@ -47480,7 +47480,7 @@ "dashboard_link": "/linux/opensource_packages/netdata", "job_url_resolution_status": "central_exact", "package_slug": "netdata", - "production_refreshed_at": "2026-05-14T19:37:17.389048+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.602172+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -47492,15 +47492,15 @@ }, "run": { "attempt": "1", - "id": "25877367704", + "id": "26658677990", "job_name": "test-netdata / test-netdata", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:55Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027157" + "timestamp": "2026-05-29T19:48:02Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347354" }, "schema_version": "2.0", "tests": { @@ -47509,40 +47509,40 @@ "duration_seconds": 0, "name": "Test 1 - Check netdata binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027157#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347354#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027157#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347354#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027157#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347354#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027157#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347354#step:9:1" }, { - "duration_seconds": 1, + "duration_seconds": 2, "name": "Test 5 - Functional validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027157#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347354#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027157#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347354#step:11:1" } ], - "duration_seconds": 1, + "duration_seconds": 2, "failed": 0, "passed": 6, "skipped": 0 @@ -47557,7 +47557,7 @@ "dashboard_link": "/linux/opensource_packages/netplan", "job_url_resolution_status": "central_exact", "package_slug": "netplan", - "production_refreshed_at": "2026-05-14T19:37:17.389342+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.602476+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -47569,15 +47569,15 @@ }, "run": { "attempt": "1", - "id": "25877379982", + "id": "26658688675", "job_name": "test-netplan / test-netplan", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:06Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057206" + "timestamp": "2026-05-29T19:48:15Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380533" }, "schema_version": "2.0", "tests": { @@ -47586,37 +47586,37 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057206#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380533#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057206#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380533#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057206#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380533#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057206#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380533#step:9:1" }, { "duration_seconds": 1, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057206#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380533#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057206#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380533#step:11:1" } ], "duration_seconds": 1, @@ -47634,7 +47634,7 @@ "dashboard_link": "/linux/opensource_packages/nettle", "job_url_resolution_status": "central_exact", "package_slug": "nettle", - "production_refreshed_at": "2026-05-14T19:37:17.389547+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.602659+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -47646,15 +47646,15 @@ }, "run": { "attempt": "1", - "id": "25877406767", + "id": "26658714432", "job_name": "test-nettle / test-nettle", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:43Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155475" + "timestamp": "2026-05-29T19:48:48Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469202" }, "schema_version": "2.0", "tests": { @@ -47663,40 +47663,40 @@ "duration_seconds": 0, "name": "Test 1 - Check nettle-hash binary", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155475#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469202#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Perform SHA256 hash", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155475#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469202#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check pkg-config flags", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155475#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469202#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify architecture", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155475#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469202#step:9:1" }, { - "duration_seconds": 3, + "duration_seconds": 1, "name": "Test 5 - Hash data and compile a program", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155475#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469202#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155475#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469202#step:11:1" } ], - "duration_seconds": 3, + "duration_seconds": 1, "failed": 0, "passed": 6, "skipped": 0 @@ -47711,7 +47711,7 @@ "dashboard_link": "/linux/opensource_packages/netty", "job_url_resolution_status": "central_exact", "package_slug": "netty", - "production_refreshed_at": "2026-05-14T19:37:17.389787+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.602843+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -47723,15 +47723,15 @@ }, "run": { "attempt": "1", - "id": "25877359516", + "id": "26658670904", "job_name": "test-netty / test-netty", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:44Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991510" + "timestamp": "2026-05-29T19:47:53Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321900" }, "schema_version": "2.0", "tests": { @@ -47740,40 +47740,40 @@ "duration_seconds": 0, "name": "Test 1 - Check Java and Maven binaries", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991510#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321900#step:6:1" }, { - "duration_seconds": 4, + "duration_seconds": 1, "name": "Test 2 - Check version commands", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991510#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321900#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Maven help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991510#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321900#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify architecture", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991510#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321900#step:9:1" }, { - "duration_seconds": 26, + "duration_seconds": 28, "name": "Test 5 - Functional compile and run", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991510#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321900#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991510#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321900#step:11:1" } ], - "duration_seconds": 30, + "duration_seconds": 29, "failed": 0, "passed": 6, "skipped": 0 @@ -47788,7 +47788,7 @@ "dashboard_link": "/linux/opensource_packages/neuralforecast", "job_url_resolution_status": "central_exact", "package_slug": "neuralforecast", - "production_refreshed_at": "2026-05-14T19:37:17.390016+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.603026+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -47802,63 +47802,63 @@ }, "run": { "attempt": "1", - "id": "25877431862", + "id": "26658734615", "job_name": "test-neuralforecast / test-neuralforecast", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:28Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265178" + "timestamp": "2026-05-29T19:49:17Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538345" }, "schema_version": "2.0", "tests": { "details": [ { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 1 - Package installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265178#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538345#step:7:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 2 - Version metadata matches baseline", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265178#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538345#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Installed files metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265178#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538345#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265178#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538345#step:10:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265178#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538345#step:11:1" }, { "comparison": "Current pinned package version 0.0.2 passed smoke tests in this run, and the newer stable PyPI candidate 0.0.3 installed successfully on Arm64.", "current_version": "0.0.2", "decision": "next_install_validated", - "duration_seconds": 95, + "duration_seconds": 97, "latest_version": "0.0.3", "name": "Test 6 - Regression Validation", "next_installed_version": "0.0.3", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265178#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538345#step:12:1" } ], - "duration_seconds": 96, + "duration_seconds": 98, "failed": 0, "passed": 6, "skipped": 0 @@ -47873,7 +47873,7 @@ "dashboard_link": "/linux/opensource_packages/neuvector", "job_url_resolution_status": "central_exact", "package_slug": "neuvector", - "production_refreshed_at": "2026-05-14T19:37:17.390225+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.603212+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -47887,15 +47887,15 @@ }, "run": { "attempt": "1", - "id": "25877367704", + "id": "26658677990", "job_name": "test-neuvector / test-neuvector", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:55Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027161" + "timestamp": "2026-05-29T19:48:02Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346879" }, "schema_version": "2.0", "tests": { @@ -47904,46 +47904,46 @@ "duration_seconds": 0, "name": "Test 1 - Artifact Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027161#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346879#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027161#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346879#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Configuration Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027161#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346879#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027161#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346879#step:9:1" }, { "duration_seconds": 1, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027161#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346879#step:10:1" }, { "comparison": "Current pinned NeuVector (Originated by Rancher, now under SUSE) version 5.4.3 passed smoke tests in this run. Regression validation pulled candidate image neuvector/controller:5.4.4 on Arm64 successfully, and the installed image tag resolved to 5.4.4.", "current_version": "5.4.3", "decision": "next_install_validated", - "duration_seconds": 6, + "duration_seconds": 7, "latest_version": "5.4.4", "name": "Test 6 - Regression Validation", "next_installed_version": "5.4.4", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027161#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346879#step:11:1" } ], - "duration_seconds": 7, + "duration_seconds": 8, "failed": 0, "passed": 6, "skipped": 0 @@ -47958,7 +47958,7 @@ "dashboard_link": "/linux/opensource_packages/new-relic", "job_url_resolution_status": "central_exact", "package_slug": "new-relic", - "production_refreshed_at": "2026-05-14T19:37:17.390445+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.603422+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -47972,15 +47972,15 @@ }, "run": { "attempt": "1", - "id": "25877387746", + "id": "26658696365", "job_name": "test-new-relic / test-new-relic", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:14Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083590" + "timestamp": "2026-05-29T19:48:26Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575406608" }, "schema_version": "2.0", "tests": { @@ -47989,43 +47989,43 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083590#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575406608#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083590#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575406608#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083590#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575406608#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083590#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575406608#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083590#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575406608#step:10:1" }, { - "comparison": "Current pinned New Relic version 1.63.0 passed smoke tests in this run. Regression validation downloaded and extracted the candidate Arm64 artifact from https://github.com/newrelic/infrastructure-agent/releases/download/1.74.4/newrelic-infra_linux_1.74.4_arm64.tar.gz successfully, the candidate bundle resolved to executable Arm64 binaries, and the main binary executed on Arm64 while resolving candidate version 1.74.4.", + "comparison": "Current pinned New Relic version 1.63.0 passed smoke tests in this run. Regression validation downloaded and extracted the candidate Arm64 artifact from https://github.com/newrelic/infrastructure-agent/releases/download/1.76.0/newrelic-infra_linux_1.76.0_arm64.tar.gz successfully, the candidate bundle resolved to executable Arm64 binaries, and the main binary executed on Arm64 while resolving candidate version 1.76.0.", "current_version": "1.63.0", "decision": "next_install_validated", "duration_seconds": 1, - "latest_version": "1.74.4", + "latest_version": "1.76.0", "name": "Test 6 - Regression Validation", - "next_installed_version": "1.74.4", + "next_installed_version": "1.76.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083590#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575406608#step:11:1" } ], "duration_seconds": 1, @@ -48043,7 +48043,7 @@ "dashboard_link": "/linux/opensource_packages/nextflow", "job_url_resolution_status": "central_exact", "package_slug": "nextflow", - "production_refreshed_at": "2026-05-14T19:37:17.390661+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.603614+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -48055,15 +48055,15 @@ }, "run": { "attempt": "1", - "id": "25877359516", + "id": "26658670904", "job_name": "test-nextflow / test-nextflow", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:43Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991459" + "timestamp": "2026-05-29T19:47:53Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321869" }, "schema_version": "2.0", "tests": { @@ -48072,40 +48072,40 @@ "duration_seconds": 0, "name": "Test 1 - Check nextflow binary", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991459#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321869#step:6:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 2 - Check version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991459#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321869#step:7:1" }, { "duration_seconds": 1, "name": "Test 3 - Check help command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991459#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321869#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991459#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321869#step:9:1" }, { "duration_seconds": 7, "name": "Test 5 - Run Hello World pipeline", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991459#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321869#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991459#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321869#step:11:1" } ], - "duration_seconds": 9, + "duration_seconds": 8, "failed": 0, "passed": 6, "skipped": 0 @@ -48120,7 +48120,7 @@ "dashboard_link": "/linux/opensource_packages/nextjs", "job_url_resolution_status": "central_exact", "package_slug": "nextjs", - "production_refreshed_at": "2026-05-14T19:37:17.390896+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.603785+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -48132,15 +48132,15 @@ }, "run": { "attempt": "1", - "id": "25877423406", + "id": "26658727918", "job_name": "test-nextjs / test-nextjs", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:14Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209437" + "timestamp": "2026-05-29T19:49:12Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515909" }, "schema_version": "2.0", "tests": { @@ -48149,37 +48149,37 @@ "duration_seconds": 0, "name": "Test 1 - Package Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209437#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515909#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209437#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515909#step:8:1" }, { "duration_seconds": 1, "name": "Test 3 - Help Output Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209437#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515909#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209437#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515909#step:10:1" }, { "duration_seconds": 4, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209437#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515909#step:11:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209437#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515909#step:12:1" } ], "duration_seconds": 5, @@ -48197,7 +48197,7 @@ "dashboard_link": "/linux/opensource_packages/nfcore", "job_url_resolution_status": "central_exact", "package_slug": "nfcore", - "production_refreshed_at": "2026-05-14T19:37:17.391102+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.603955+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -48209,15 +48209,15 @@ }, "run": { "attempt": "1", - "id": "25877371674", + "id": "26658681575", "job_name": "test-nfcore / test-nfcore", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:06Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031606" + "timestamp": "2026-05-29T19:48:15Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358041" }, "schema_version": "2.0", "tests": { @@ -48226,40 +48226,40 @@ "duration_seconds": 0, "name": "Test 1 - Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031606#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358041#step:7:1" }, { "duration_seconds": 1, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031606#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358041#step:8:1" }, { "duration_seconds": 1, "name": "Test 3 - Configuration Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031606#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358041#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031606#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358041#step:10:1" }, { - "duration_seconds": 3, + "duration_seconds": 2, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031606#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358041#step:11:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031606#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358041#step:12:1" } ], - "duration_seconds": 5, + "duration_seconds": 4, "failed": 0, "passed": 6, "skipped": 0 @@ -48274,7 +48274,7 @@ "dashboard_link": "/linux/opensource_packages/nfs", "job_url_resolution_status": "central_exact", "package_slug": "nfs", - "production_refreshed_at": "2026-05-14T19:37:17.391282+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.604122+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -48286,15 +48286,15 @@ }, "run": { "attempt": "1", - "id": "25877423406", + "id": "26658727918", "job_name": "test-nfs / test-nfs", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:05Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210264" + "timestamp": "2026-05-29T19:49:08Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515914" }, "schema_version": "2.0", "tests": { @@ -48303,40 +48303,40 @@ "duration_seconds": 0, "name": "Test 1 - Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210264#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515914#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210264#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515914#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Help Output Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210264#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515914#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210264#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515914#step:9:1" }, { - "duration_seconds": 6, + "duration_seconds": 5, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210264#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515914#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210264#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515914#step:11:1" } ], - "duration_seconds": 6, + "duration_seconds": 5, "failed": 0, "passed": 6, "skipped": 0 @@ -48351,7 +48351,7 @@ "dashboard_link": "/linux/opensource_packages/nginx", "job_url_resolution_status": "central_exact", "package_slug": "nginx", - "production_refreshed_at": "2026-05-14T19:37:17.391473+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.604308+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -48365,15 +48365,15 @@ }, "run": { "attempt": "1", - "id": "25877355625", + "id": "26658667828", "job_name": "test-nginx / test-nginx", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:37Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047975640" + "timestamp": "2026-05-29T19:47:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575307946" }, "schema_version": "2.0", "tests": { @@ -48382,46 +48382,46 @@ "duration_seconds": 0, "name": "Test 1 - Check nginx binary", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047975640#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575307946#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047975640#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575307946#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047975640#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575307946#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047975640#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575307946#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047975640#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575307946#step:10:1" }, { - "comparison": "Current pinned NGINX version 1.20.1 passed smoke tests in this run. Regression validation built and installed candidate version 1.30.1 on Arm64, and the candidate binary reported version 1.30.1.", + "comparison": "Current pinned NGINX version 1.20.1 passed smoke tests in this run. Regression validation built and installed candidate version 1.30.2 on Arm64, and the candidate binary reported version 1.30.2.", "current_version": "1.20.1", "decision": "next_install_validated", - "duration_seconds": 11, - "latest_version": "1.30.1", + "duration_seconds": 12, + "latest_version": "1.30.2", "name": "Test 6 - Regression Validation", - "next_installed_version": "1.30.1", + "next_installed_version": "1.30.2", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047975640#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575307946#step:11:1" } ], - "duration_seconds": 11, + "duration_seconds": 12, "failed": 0, "passed": 6, "skipped": 0 @@ -48436,7 +48436,7 @@ "dashboard_link": "/linux/opensource_packages/ngspice", "job_url_resolution_status": "central_exact", "package_slug": "ngspice", - "production_refreshed_at": "2026-05-14T19:37:17.391660+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.604483+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -48448,15 +48448,15 @@ }, "run": { "attempt": "1", - "id": "25877431862", + "id": "26658734615", "job_name": "test-ngspice / test-ngspice", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:21Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265128" + "timestamp": "2026-05-29T19:49:14Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537316" }, "schema_version": "2.0", "tests": { @@ -48465,37 +48465,37 @@ "duration_seconds": 0, "name": "Test 1 - Check ngspice binary", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265128#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537316#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Check ngspice version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265128#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537316#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Check ngspice help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265128#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537316#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Run empty batch netlist", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265128#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537316#step:10:1" }, { "duration_seconds": 0, "name": "Test 5 - Solve a minimal resistor circuit", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265128#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537316#step:11:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265128#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537316#step:12:1" } ], "duration_seconds": 0, @@ -48513,7 +48513,7 @@ "dashboard_link": "/linux/opensource_packages/nifi", "job_url_resolution_status": "central_exact", "package_slug": "nifi", - "production_refreshed_at": "2026-05-14T19:37:17.391885+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.604663+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "current_is_latest_stable", @@ -48527,15 +48527,15 @@ }, "run": { "attempt": "1", - "id": "25877355625", + "id": "26658667828", "job_name": "test-nifi / test-nifi", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:47Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976507" + "timestamp": "2026-05-29T19:47:55Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308946" }, "schema_version": "2.0", "tests": { @@ -48544,31 +48544,31 @@ "duration_seconds": 0, "name": "Test 1 - Check launcher script", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976507#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308946#step:11:1" }, { "duration_seconds": 0, "name": "Test 2 - Check exact version metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976507#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308946#step:12:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976507#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308946#step:13:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 4 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976507#step:14:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308946#step:14:1" }, { - "duration_seconds": 12, + "duration_seconds": 11, "name": "Test 5 - Functional validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976507#step:15:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308946#step:15:1" }, { "comparison": "Current pinned NiFi version 2.9.0 passed Tests 1-5 on Arm64. Test 6 is deferred because the configured next stable candidate is not newer than the baseline, so no version-to-version upgrade proof is claimed.", @@ -48580,10 +48580,10 @@ "next_installed_version": "not_installed", "regression_result": "No newer stable NiFi release available for Test 6", "status": "skipped", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976507#step:16:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308946#step:16:1" } ], - "duration_seconds": 12, + "duration_seconds": 11, "failed": 0, "passed": 5, "skipped": 1 @@ -48598,7 +48598,7 @@ "dashboard_link": "/linux/opensource_packages/nmap", "job_url_resolution_status": "central_exact", "package_slug": "nmap", - "production_refreshed_at": "2026-05-14T19:37:17.392078+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.604846+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -48610,15 +48610,15 @@ }, "run": { "attempt": "1", - "id": "25877423406", + "id": "26658727918", "job_name": "test-nmap / test-nmap", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:09Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209426" + "timestamp": "2026-05-29T19:49:08Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516236" }, "schema_version": "2.0", "tests": { @@ -48627,40 +48627,40 @@ "duration_seconds": 0, "name": "Test 1 - Check nmap binary", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209426#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516236#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209426#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516236#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209426#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516236#step:8:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 4 - Scan localhost", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209426#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516236#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209426#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516236#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209426#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516236#step:11:1" } ], - "duration_seconds": 0, + "duration_seconds": 1, "failed": 0, "passed": 6, "skipped": 0 @@ -48675,7 +48675,7 @@ "dashboard_link": "/linux/opensource_packages/nmon", "job_url_resolution_status": "central_exact", "package_slug": "nmon", - "production_refreshed_at": "2026-05-14T19:37:17.392249+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.605025+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -48687,15 +48687,15 @@ }, "run": { "attempt": "1", - "id": "25877423406", + "id": "26658727918", "job_name": "test-nmon / test-nmon", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:05Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210085" + "timestamp": "2026-05-29T19:49:06Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516034" }, "schema_version": "2.0", "tests": { @@ -48704,37 +48704,37 @@ "duration_seconds": 0, "name": "Test 1 - Check nmon binary", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210085#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516034#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210085#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516034#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210085#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516034#step:8:1" }, { "duration_seconds": 3, "name": "Test 4 - Run nmon in recording mode", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210085#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516034#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210085#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516034#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210085#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516034#step:11:1" } ], "duration_seconds": 3, @@ -48752,7 +48752,7 @@ "dashboard_link": "/linux/opensource_packages/nodejs", "job_url_resolution_status": "central_exact", "package_slug": "nodejs", - "production_refreshed_at": "2026-05-14T19:37:17.392437+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.605195+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -48764,15 +48764,15 @@ }, "run": { "attempt": "1", - "id": "25877363365", + "id": "26658674448", "job_name": "test-nodejs / test-nodejs", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:48Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001016" + "timestamp": "2026-05-29T19:47:57Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334823" }, "schema_version": "2.0", "tests": { @@ -48781,40 +48781,40 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001016#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334823#step:6:1" }, { - "duration_seconds": 1, + "duration_seconds": 5, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001016#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334823#step:7:1" }, { "duration_seconds": 1, "name": "Test 3 - Check Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001016#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334823#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001016#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334823#step:9:1" }, { - "duration_seconds": 1, + "duration_seconds": 4, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001016#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334823#step:10:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001016#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334823#step:11:1" } ], - "duration_seconds": 3, + "duration_seconds": 10, "failed": 0, "passed": 6, "skipped": 0 @@ -48829,7 +48829,7 @@ "dashboard_link": "/linux/opensource_packages/nomad-open-source", "job_url_resolution_status": "central_exact", "package_slug": "nomad-open-source", - "production_refreshed_at": "2026-05-14T19:37:17.392633+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.605409+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -48843,15 +48843,15 @@ }, "run": { "attempt": "1", - "id": "25877399008", + "id": "26658707245", "job_name": "test-nomad-open-source / test-nomad", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:32Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125582" + "timestamp": "2026-05-29T19:48:39Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445721" }, "schema_version": "2.0", "tests": { @@ -48860,46 +48860,46 @@ "duration_seconds": 0, "name": "Test 1 - Check binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125582#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445721#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check exact version", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125582#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445721#step:7:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 3 - Check help command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125582#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445721#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125582#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445721#step:9:1" }, { "duration_seconds": 1, "name": "Test 5 - Functional validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125582#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445721#step:10:1" }, { - "comparison": "Current pinned Nomad version 1.6.1 passed smoke tests in this run. Regression validation installed candidate version 2.0.1 on Arm64, and the staged binary reported version 2.0.1.", + "comparison": "Current pinned Nomad version 1.6.1 passed smoke tests in this run. Regression validation installed candidate version 2.0.2 on Arm64, and the staged binary reported version 2.0.2.", "current_version": "1.6.1", "decision": "next_install_validated", "duration_seconds": 1, - "latest_version": "2.0.1", + "latest_version": "2.0.2", "name": "Test 6 - Regression Validation", - "next_installed_version": "2.0.1", + "next_installed_version": "2.0.2", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125582#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445721#step:11:1" } ], - "duration_seconds": 2, + "duration_seconds": 3, "failed": 0, "passed": 6, "skipped": 0 @@ -48914,7 +48914,7 @@ "dashboard_link": "/linux/opensource_packages/notary", "job_url_resolution_status": "central_exact", "package_slug": "notary", - "production_refreshed_at": "2026-05-14T19:37:17.392863+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.605597+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -48926,15 +48926,15 @@ }, "run": { "attempt": "1", - "id": "25877406767", + "id": "26658714432", "job_name": "test-notary / test-notary", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:43Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155774" + "timestamp": "2026-05-29T19:48:50Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469175" }, "schema_version": "2.0", "tests": { @@ -48943,37 +48943,37 @@ "duration_seconds": 0, "name": "Test 1 - Check notary binary", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155774#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469175#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155774#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469175#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155774#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469175#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - List keys (empty)", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155774#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469175#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155774#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469175#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155774#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469175#step:11:1" } ], "duration_seconds": 0, @@ -48991,7 +48991,7 @@ "dashboard_link": "/linux/opensource_packages/notebook", "job_url_resolution_status": "central_exact", "package_slug": "notebook", - "production_refreshed_at": "2026-05-14T19:37:17.393065+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.605778+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -49005,48 +49005,48 @@ }, "run": { "attempt": "1", - "id": "25877431862", + "id": "26658734615", "job_name": "test-notebook / test-notebook", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:25Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265808" + "timestamp": "2026-05-29T19:49:15Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537293" }, "schema_version": "2.0", "tests": { "details": [ { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 1 - Package installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265808#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537293#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Version metadata matches baseline", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265808#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537293#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Installed files metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265808#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537293#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265808#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537293#step:10:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265808#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537293#step:11:1" }, { "comparison": "Current pinned package version 4.0.0 passed smoke tests in this run, and the newer stable PyPI candidate 4.0.1 installed successfully on Arm64.", @@ -49058,10 +49058,10 @@ "next_installed_version": "4.0.1", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265808#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537293#step:12:1" } ], - "duration_seconds": 16, + "duration_seconds": 17, "failed": 0, "passed": 6, "skipped": 0 @@ -49076,7 +49076,7 @@ "dashboard_link": "/linux/opensource_packages/nova", "job_url_resolution_status": "central_exact", "package_slug": "nova", - "production_refreshed_at": "2026-05-14T19:37:17.393283+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.605960+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -49088,15 +49088,15 @@ }, "run": { "attempt": "1", - "id": "25877359516", + "id": "26658670904", "job_name": "test-nova / test-nova", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:44Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991071" + "timestamp": "2026-05-29T19:47:53Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321824" }, "schema_version": "2.0", "tests": { @@ -49105,37 +49105,37 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991071#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321824#step:6:1" }, { "duration_seconds": 1, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991071#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321824#step:7:1" }, { - "duration_seconds": 2, + "duration_seconds": 1, "name": "Test 3 - Check Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991071#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321824#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991071#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321824#step:9:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991071#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321824#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991071#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321824#step:11:1" } ], "duration_seconds": 3, @@ -49153,7 +49153,7 @@ "dashboard_link": "/linux/opensource_packages/npm", "job_url_resolution_status": "central_exact", "package_slug": "npm", - "production_refreshed_at": "2026-05-14T19:37:17.393464+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.606144+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -49165,15 +49165,15 @@ }, "run": { "attempt": "1", - "id": "25877415436", + "id": "26658721315", "job_name": "test-npm / test-npm", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:50Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180710" + "timestamp": "2026-05-29T19:48:56Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491825" }, "schema_version": "2.0", "tests": { @@ -49182,40 +49182,40 @@ "duration_seconds": 0, "name": "Test 1 - Check npm binary", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180710#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491825#step:6:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 2 - Check version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180710#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491825#step:7:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 3 - Check registry configuration", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180710#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491825#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify architecture", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180710#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491825#step:9:1" }, { - "duration_seconds": 3, + "duration_seconds": 4, "name": "Test 5 - Install and execute a package", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180710#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491825#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180710#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491825#step:11:1" } ], - "duration_seconds": 4, + "duration_seconds": 5, "failed": 0, "passed": 6, "skipped": 0 @@ -49230,7 +49230,7 @@ "dashboard_link": "/linux/opensource_packages/nsq", "job_url_resolution_status": "central_exact", "package_slug": "nsq", - "production_refreshed_at": "2026-05-14T19:37:17.393635+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.606354+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -49244,15 +49244,15 @@ }, "run": { "attempt": "1", - "id": "25877427741", + "id": "26658731236", "job_name": "test-nsq / test-nsq", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:11Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218895" + "timestamp": "2026-05-29T19:49:11Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529159" }, "schema_version": "2.0", "tests": { @@ -49261,46 +49261,46 @@ "duration_seconds": 0, "name": "Test 1 - Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218895#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529159#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218895#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529159#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Help Output Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218895#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529159#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218895#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529159#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218895#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529159#step:10:1" }, { "comparison": "Current pinned NSQ version 1.2.1 passed smoke tests in this run. Regression validation downloaded and extracted the candidate Arm64 artifact from https://github.com/nsqio/nsq/releases/download/v1.3.0/nsq-1.3.0.linux-arm64.go1.21.5.tar.gz successfully, and the candidate binary reported version 1.3.0.", "current_version": "1.2.1", "decision": "next_install_validated", - "duration_seconds": 2, + "duration_seconds": 1, "latest_version": "1.3.0", "name": "Test 6 - Regression Validation", "next_installed_version": "1.3.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218895#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529159#step:11:1" } ], - "duration_seconds": 2, + "duration_seconds": 1, "failed": 0, "passed": 6, "skipped": 0 @@ -49315,7 +49315,7 @@ "dashboard_link": "/linux/opensource_packages/numpy", "job_url_resolution_status": "central_exact", "package_slug": "numpy", - "production_refreshed_at": "2026-05-14T19:37:17.393871+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.606556+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -49323,19 +49323,19 @@ }, "package": { "name": "NumPy", - "version": "2.4.4" + "version": "2.4.6" }, "run": { "attempt": "1", - "id": "25877419588", + "id": "26658724696", "job_name": "test-numpy / test-numpy", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:05Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192492" + "timestamp": "2026-05-29T19:49:01Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504202" }, "schema_version": "2.0", "tests": { @@ -49344,37 +49344,37 @@ "duration_seconds": 0, "name": "Test 1 - Import NumPy", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192492#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504202#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check installed version", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192492#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504202#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check f2py help", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192492#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504202#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify architecture", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192492#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504202#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Run array operations", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192492#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504202#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192492#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504202#step:11:1" } ], "duration_seconds": 0, @@ -49392,7 +49392,7 @@ "dashboard_link": "/linux/opensource_packages/nvidia-container-toolkit", "job_url_resolution_status": "central_exact", "package_slug": "nvidia-container-toolkit", - "production_refreshed_at": "2026-05-14T19:37:17.394178+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.606822+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -49406,15 +49406,15 @@ }, "run": { "attempt": "1", - "id": "25877431862", + "id": "26658734615", "job_name": "test-nvidia-container-toolkit / test-nvidia-container-toolkit", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:22Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265978" + "timestamp": "2026-05-29T19:49:17Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537961" }, "schema_version": "2.0", "tests": { @@ -49423,31 +49423,31 @@ "duration_seconds": 0, "name": "Test 1 - Check package-specific baseline markers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265978#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537961#step:8:1" }, { "duration_seconds": 0, "name": "Test 2 - Check published package metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265978#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537961#step:9:1" }, { "duration_seconds": 0, "name": "Test 3 - Check package-specific docs and manifests", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265978#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537961#step:10:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265978#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537961#step:11:1" }, { - "duration_seconds": 5, + "duration_seconds": 2, "name": "Test 5 - Run scoped Arm preflight proof", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265978#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537961#step:12:1" }, { "comparison": "Test 6 limited_cpu_smoke_validated: reran the same bounded scoped Arm source/compile/import/help/manifest preflight against the next stable candidate. This is CPU-side preflight evidence only; no GPU/CUDA driver/runtime, accelerator execution, Kubernetes cluster, or full product runtime is claimed.", @@ -49459,10 +49459,10 @@ "next_installed_version": "1.9.0", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265978#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537961#step:13:1" } ], - "duration_seconds": 6, + "duration_seconds": 3, "failed": 0, "passed": 6, "skipped": 0 @@ -49477,7 +49477,7 @@ "dashboard_link": "/linux/opensource_packages/nvidia-gpu-driver-container", "job_url_resolution_status": "central_exact", "package_slug": "nvidia-gpu-driver-container", - "production_refreshed_at": "2026-05-14T19:37:17.394388+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.607013+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -49491,15 +49491,15 @@ }, "run": { "attempt": "1", - "id": "25877431862", + "id": "26658734615", "job_name": "test-nvidia-gpu-driver-container / test-nvidia-gpu-driver-container", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:23Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265800" + "timestamp": "2026-05-29T19:49:18Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538001" }, "schema_version": "2.0", "tests": { @@ -49508,46 +49508,46 @@ "duration_seconds": 0, "name": "Test 1 - Check package-specific baseline markers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265800#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538001#step:8:1" }, { "duration_seconds": 0, "name": "Test 2 - Check published package metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265800#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538001#step:9:1" }, { "duration_seconds": 0, "name": "Test 3 - Check package-specific docs and manifests", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265800#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538001#step:10:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265800#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538001#step:11:1" }, { "duration_seconds": 1, "name": "Test 5 - Run scoped Arm preflight proof", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265800#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538001#step:12:1" }, { "comparison": "Test 6 limited_cpu_smoke_validated: reran the bounded scoped NVIDIA GPU Driver Container image tag/catalog proof for 595.71.05-ubuntu22.04 on the Arm64 runner. This validates published multi-architecture driver-container payload evidence only; no kernel driver load, privileged container launch, CUDA driver, GPU runtime, or live GPU execution is claimed.", "current_version": "535.288.01", "decision": "limited_cpu_smoke_validated", - "duration_seconds": 0, + "duration_seconds": 1, "latest_version": "595.71.05", "name": "Test 6 - Regression Validation", "next_installed_version": "595.71.05-ubuntu22.04", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265800#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538001#step:13:1" } ], - "duration_seconds": 1, + "duration_seconds": 2, "failed": 0, "passed": 6, "skipped": 0 @@ -49562,7 +49562,7 @@ "dashboard_link": "/linux/opensource_packages/nvidia-gpu-operator", "job_url_resolution_status": "central_exact", "package_slug": "nvidia-gpu-operator", - "production_refreshed_at": "2026-05-14T19:37:17.394600+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.607199+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -49576,15 +49576,15 @@ }, "run": { "attempt": "1", - "id": "25877431862", + "id": "26658734615", "job_name": "test-nvidia-gpu-operator / test-nvidia-gpu-operator", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:22Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265764" + "timestamp": "2026-05-29T19:49:17Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538427" }, "schema_version": "2.0", "tests": { @@ -49593,46 +49593,46 @@ "duration_seconds": 0, "name": "Test 1 - Check package-specific baseline markers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265764#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538427#step:8:1" }, { "duration_seconds": 0, "name": "Test 2 - Check published package metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265764#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538427#step:9:1" }, { "duration_seconds": 0, "name": "Test 3 - Check package-specific docs and manifests", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265764#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538427#step:10:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265764#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538427#step:11:1" }, { - "duration_seconds": 2, + "duration_seconds": 1, "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265764#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538427#step:12:1" }, { "comparison": "Test 6 reran the scoped NVIDIA GPU Operator Arm preflight against the next stable source tag: Helm render with CRDs, Kubernetes resource validation, and amd64-only scheduling guard. Driver install, operator reconciliation, and GPU runtime remain out of scope.", "current_version": "1.11.0", "decision": "limited_cpu_smoke_validated", - "duration_seconds": 3, + "duration_seconds": 4, "latest_version": "26.3.0", "name": "Test 6 - Regression Validation", "next_installed_version": "26.3.0", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265764#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538427#step:13:1" } ], - "duration_seconds": 5, + "duration_seconds": 4, "failed": 0, "passed": 6, "skipped": 0 @@ -49647,7 +49647,7 @@ "dashboard_link": "/linux/opensource_packages/nvimagecodec", "job_url_resolution_status": "central_exact", "package_slug": "nvimagecodec", - "production_refreshed_at": "2026-05-14T19:37:17.394827+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.607435+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -49661,15 +49661,15 @@ }, "run": { "attempt": "1", - "id": "25877431862", + "id": "26658734615", "job_name": "test-nvimagecodec / test-nvimagecodec", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:23Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265913" + "timestamp": "2026-05-29T19:49:17Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538129" }, "schema_version": "2.0", "tests": { @@ -49678,46 +49678,46 @@ "duration_seconds": 0, "name": "Test 1 - Check package-specific baseline markers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265913#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538129#step:8:1" }, { "duration_seconds": 0, "name": "Test 2 - Check published package metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265913#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538129#step:9:1" }, { "duration_seconds": 0, "name": "Test 3 - Check package-specific docs and manifests", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265913#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538129#step:10:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265913#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538129#step:11:1" }, { "duration_seconds": 0, "name": "Test 5 - Run scoped Arm preflight proof", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265913#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538129#step:12:1" }, { "comparison": "Test 6 limited_cpu_smoke_validated: reran the same bounded scoped Arm source/compile/import/help/manifest preflight against the next stable candidate. This is CPU-side preflight evidence only; no GPU/CUDA driver/runtime, accelerator execution, Kubernetes cluster, or full product runtime is claimed.", "current_version": "0.2.0", "decision": "limited_cpu_smoke_validated", - "duration_seconds": 58, + "duration_seconds": 52, "latest_version": "0.8.0", "name": "Test 6 - Regression Validation", "next_installed_version": "0.8.0", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265913#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538129#step:13:1" } ], - "duration_seconds": 58, + "duration_seconds": 52, "failed": 0, "passed": 6, "skipped": 0 @@ -49732,7 +49732,7 @@ "dashboard_link": "/linux/opensource_packages/nvsentinel", "job_url_resolution_status": "central_exact", "package_slug": "nvsentinel", - "production_refreshed_at": "2026-05-14T19:37:17.395043+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.607620+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -49746,15 +49746,15 @@ }, "run": { "attempt": "1", - "id": "25877431862", + "id": "26658734615", "job_name": "test-nvsentinel / test-nvsentinel", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:23Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048266074" + "timestamp": "2026-05-29T19:49:13Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537892" }, "schema_version": "2.0", "tests": { @@ -49763,31 +49763,31 @@ "duration_seconds": 0, "name": "Test 1 - Check package-specific baseline markers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048266074#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537892#step:8:1" }, { "duration_seconds": 0, "name": "Test 2 - Check published package metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048266074#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537892#step:9:1" }, { "duration_seconds": 0, "name": "Test 3 - Check package-specific docs and manifests", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048266074#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537892#step:10:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048266074#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537892#step:11:1" }, { - "duration_seconds": 3, + "duration_seconds": 2, "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048266074#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537892#step:12:1" }, { "comparison": "Test 6 reran the scoped NVSentinel Arm preflight against the next stable source tag: chart/manifest rendering, controller/resource validation, and amd64-only scheduling guard. GPU fault detection, node remediation, and live Kubernetes reconciliation remain out of scope.", @@ -49799,7 +49799,7 @@ "next_installed_version": "1.1.0", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048266074#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537892#step:13:1" } ], "duration_seconds": 3, @@ -49817,7 +49817,7 @@ "dashboard_link": "/linux/opensource_packages/nvshmem", "job_url_resolution_status": "central_exact", "package_slug": "nvshmem", - "production_refreshed_at": "2026-05-14T19:37:17.395228+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.607797+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -49831,15 +49831,15 @@ }, "run": { "attempt": "1", - "id": "25877431862", + "id": "26658734615", "job_name": "test-nvshmem / test-nvshmem", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:22Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265986" + "timestamp": "2026-05-29T19:49:21Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538395" }, "schema_version": "2.0", "tests": { @@ -49848,46 +49848,46 @@ "duration_seconds": 0, "name": "Test 1 - Check package-specific baseline markers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265986#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538395#step:8:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 2 - Check published package metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265986#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538395#step:9:1" }, { "duration_seconds": 0, "name": "Test 3 - Check package-specific docs and manifests", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265986#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538395#step:10:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265986#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538395#step:11:1" }, { "duration_seconds": 0, "name": "Test 5 - Run scoped Arm preflight proof", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265986#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538395#step:12:1" }, { "comparison": "Test 6 limited_cpu_smoke_validated: reran the same bounded scoped Arm source/compile/import/help/manifest preflight against the next stable candidate. This is CPU-side preflight evidence only; no GPU/CUDA driver/runtime, accelerator execution, Kubernetes cluster, or full product runtime is claimed.", "current_version": "2.10.1", "decision": "limited_cpu_smoke_validated", - "duration_seconds": 3, + "duration_seconds": 2, "latest_version": "3.6.5-0", "name": "Test 6 - Regression Validation", "next_installed_version": "3.6.5-0", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265986#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538395#step:13:1" } ], - "duration_seconds": 3, + "duration_seconds": 2, "failed": 0, "passed": 6, "skipped": 0 @@ -49902,7 +49902,7 @@ "dashboard_link": "/linux/opensource_packages/nwchem", "job_url_resolution_status": "central_exact", "package_slug": "nwchem", - "production_refreshed_at": "2026-05-14T19:37:17.395428+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.607975+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -49914,15 +49914,15 @@ }, "run": { "attempt": "1", - "id": "25877395502", + "id": "26658703674", "job_name": "test-nwchem / test-nwchem", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:26Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109917" + "timestamp": "2026-05-29T19:48:33Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433146" }, "schema_version": "2.0", "tests": { @@ -49931,37 +49931,37 @@ "duration_seconds": 0, "name": "Test 1 - Check nwchem binary", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109917#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433146#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Installed Package Version", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109917#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433146#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Example Input Availability", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109917#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433146#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109917#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433146#step:9:1" }, { "duration_seconds": 1, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109917#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433146#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109917#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433146#step:11:1" } ], "duration_seconds": 1, @@ -49979,7 +49979,7 @@ "dashboard_link": "/linux/opensource_packages/nx-cugraph", "job_url_resolution_status": "central_exact", "package_slug": "nx-cugraph", - "production_refreshed_at": "2026-05-14T19:37:17.395636+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.608150+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -49993,15 +49993,15 @@ }, "run": { "attempt": "1", - "id": "25877431862", + "id": "26658734615", "job_name": "test-nx-cugraph / test-nx-cugraph", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:21Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265689" + "timestamp": "2026-05-29T19:49:18Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538196" }, "schema_version": "2.0", "tests": { @@ -50010,31 +50010,31 @@ "duration_seconds": 0, "name": "Test 1 - Check package-specific baseline markers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265689#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538196#step:8:1" }, { "duration_seconds": 0, "name": "Test 2 - Check published package metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265689#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538196#step:9:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 3 - Check package-specific docs and manifests", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265689#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538196#step:10:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265689#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538196#step:11:1" }, { "duration_seconds": 0, "name": "Test 5 - Run scoped Arm preflight proof", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265689#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538196#step:12:1" }, { "comparison": "Test 6 limited_cpu_smoke_validated: reran the same bounded scoped Arm source/compile/import/help/manifest preflight against the next stable candidate. This is CPU-side preflight evidence only; no GPU/CUDA driver/runtime, accelerator execution, Kubernetes cluster, or full product runtime is claimed.", @@ -50046,7 +50046,7 @@ "next_installed_version": "26.04.00", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265689#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538196#step:13:1" } ], "duration_seconds": 1, @@ -50064,7 +50064,7 @@ "dashboard_link": "/linux/opensource_packages/obs", "job_url_resolution_status": "central_exact", "package_slug": "obs", - "production_refreshed_at": "2026-05-14T19:37:17.395866+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.608351+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -50076,15 +50076,15 @@ }, "run": { "attempt": "1", - "id": "25877367704", + "id": "26658677990", "job_name": "test-obs / test-obs", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:55Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027176" + "timestamp": "2026-05-29T19:48:03Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347511" }, "schema_version": "2.0", "tests": { @@ -50093,40 +50093,40 @@ "duration_seconds": 0, "name": "Test 1 - Check osc binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027176#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347511#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027176#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347511#step:7:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027176#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347511#step:8:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027176#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347511#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027176#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347511#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027176#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347511#step:11:1" } ], - "duration_seconds": 1, + "duration_seconds": 0, "failed": 0, "passed": 6, "skipped": 0 @@ -50141,7 +50141,7 @@ "dashboard_link": "/linux/opensource_packages/ocaml", "job_url_resolution_status": "central_exact", "package_slug": "ocaml", - "production_refreshed_at": "2026-05-14T19:37:17.396054+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.608533+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -50153,15 +50153,15 @@ }, "run": { "attempt": "1", - "id": "25877395502", + "id": "26658703674", "job_name": "test-ocaml / test-ocaml", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:25Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110057" + "timestamp": "2026-05-29T19:48:34Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432840" }, "schema_version": "2.0", "tests": { @@ -50170,37 +50170,37 @@ "duration_seconds": 0, "name": "Test 1 - Check interpreter and compiler binaries", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110057#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432840#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110057#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432840#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110057#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432840#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify architecture", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110057#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432840#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional compile and run", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110057#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432840#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110057#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432840#step:11:1" } ], "duration_seconds": 0, @@ -50218,7 +50218,7 @@ "dashboard_link": "/linux/opensource_packages/oceanbase", "job_url_resolution_status": "central_exact", "package_slug": "oceanbase", - "production_refreshed_at": "2026-05-14T19:37:17.396263+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.608703+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -50232,48 +50232,48 @@ }, "run": { "attempt": "1", - "id": "25877395502", + "id": "26658703674", "job_name": "test-oceanbase / test-oceanbase", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:26Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109519" + "timestamp": "2026-05-29T19:48:35Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432530" }, "schema_version": "2.0", "tests": { "details": [ { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 1 - Check observer binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109519#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432530#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check exact baseline version", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109519#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432530#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check binary architecture", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109519#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432530#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Check runtime dependencies", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109519#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432530#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109519#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432530#step:10:1" }, { "comparison": "OceanBase baseline 4.2.5.1 passed Arm64 observer binary, dependency, and version probes. Candidate 4.2.5.2 extracted from the next Linux/Arm64 RPM and passed the same observer version, architecture, and dependency checks.", @@ -50285,7 +50285,7 @@ "next_installed_version": "4.2.5.2", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109519#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432530#step:11:1" } ], "duration_seconds": 6, @@ -50303,7 +50303,7 @@ "dashboard_link": "/linux/opensource_packages/ocm", "job_url_resolution_status": "central_exact", "package_slug": "ocm", - "production_refreshed_at": "2026-05-14T19:37:17.396447+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.608875+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -50317,15 +50317,15 @@ }, "run": { "attempt": "1", - "id": "25877431862", + "id": "26658734615", "job_name": "test-ocm / test-ocm", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:23Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265943" + "timestamp": "2026-05-29T19:49:14Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538082" }, "schema_version": "2.0", "tests": { @@ -50334,46 +50334,46 @@ "duration_seconds": 0, "name": "Test 1 - Check package-specific baseline markers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265943#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538082#step:8:1" }, { "duration_seconds": 0, "name": "Test 2 - Check published package metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265943#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538082#step:9:1" }, { "duration_seconds": 0, "name": "Test 3 - Check package-specific docs and manifests", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265943#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538082#step:10:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265943#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538082#step:11:1" }, { - "duration_seconds": 14, + "duration_seconds": 13, "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265943#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538082#step:12:1" }, { "comparison": "A bounded Arm64 CPU-side source probe validated the next OCM candidate checkout and module identity. This does not build or run the OCM CLI.", "current_version": "0.1.0", "decision": "limited_cpu_smoke_validated", - "duration_seconds": 2, - "latest_version": "0.42", + "duration_seconds": 1, + "latest_version": "0.43", "name": "Test 6 - Regression Validation", - "next_installed_version": "0.42", + "next_installed_version": "0.43", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265943#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538082#step:13:1" } ], - "duration_seconds": 16, + "duration_seconds": 14, "failed": 0, "passed": 6, "skipped": 0 @@ -50388,7 +50388,7 @@ "dashboard_link": "/linux/opensource_packages/ollama", "job_url_resolution_status": "central_exact", "package_slug": "ollama", - "production_refreshed_at": "2026-05-14T19:37:17.396662+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.609045+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -50402,15 +50402,15 @@ }, "run": { "attempt": "1", - "id": "25877431862", + "id": "26658734615", "job_name": "test-ollama / test-ollama", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:23Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265742" + "timestamp": "2026-05-29T19:49:17Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538411" }, "schema_version": "2.0", "tests": { @@ -50419,46 +50419,46 @@ "duration_seconds": 0, "name": "Test 1 - Check package-specific baseline markers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265742#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538411#step:8:1" }, { "duration_seconds": 0, "name": "Test 2 - Check published package metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265742#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538411#step:9:1" }, { "duration_seconds": 0, "name": "Test 3 - Check package-specific docs and manifests", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265742#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538411#step:10:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265742#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538411#step:11:1" }, { - "duration_seconds": 52, + "duration_seconds": 50, "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265742#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538411#step:12:1" }, { - "comparison": "The newer stable Ollama 0.23.4 Linux Arm64 binary was downloaded, architecture-checked, started as a local server, and probed through /api/version, /api/tags, and ollama list. No LLM generation is claimed without model weights.", + "comparison": "The newer stable Ollama 0.24.0 Linux Arm64 binary was downloaded, architecture-checked, started as a local server, and probed through /api/version, /api/tags, and ollama list. No LLM generation is claimed without model weights.", "current_version": "0.1.0", "decision": "limited_cpu_smoke_validated", - "duration_seconds": 75, - "latest_version": "0.23.4", + "duration_seconds": 65, + "latest_version": "0.24.0", "name": "Test 6 - Regression Validation", - "next_installed_version": "0.23.4", + "next_installed_version": "0.24.0", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265742#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538411#step:13:1" } ], - "duration_seconds": 75, + "duration_seconds": 65, "failed": 0, "passed": 6, "skipped": 0 @@ -50473,7 +50473,7 @@ "dashboard_link": "/linux/opensource_packages/onednn", "job_url_resolution_status": "central_exact", "package_slug": "onednn", - "production_refreshed_at": "2026-05-14T19:37:17.396930+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.609211+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -50485,15 +50485,15 @@ }, "run": { "attempt": "1", - "id": "25877403044", + "id": "26658710721", "job_name": "test-onednn / test-onednn", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:39Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140630" + "timestamp": "2026-05-29T19:48:43Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456346" }, "schema_version": "2.0", "tests": { @@ -50502,37 +50502,37 @@ "duration_seconds": 0, "name": "Test 1 - Library Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140630#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456346#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140630#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456346#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Configuration Discovery", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140630#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456346#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140630#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456346#step:9:1" }, { "duration_seconds": 1, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140630#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456346#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140630#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456346#step:11:1" } ], "duration_seconds": 1, @@ -50550,7 +50550,7 @@ "dashboard_link": "/linux/opensource_packages/onnx", "job_url_resolution_status": "central_exact", "package_slug": "onnx", - "production_refreshed_at": "2026-05-14T19:37:17.397124+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.609420+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -50562,15 +50562,15 @@ }, "run": { "attempt": "1", - "id": "25877359516", + "id": "26658670904", "job_name": "test-onnx / test-onnx", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:45Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991087" + "timestamp": "2026-05-29T19:47:51Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321486" }, "schema_version": "2.0", "tests": { @@ -50579,37 +50579,37 @@ "duration_seconds": 1, "name": "Test 1 - Import ONNX", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991087#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321486#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991087#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321486#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Module Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991087#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321486#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991087#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321486#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991087#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321486#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991087#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321486#step:11:1" } ], "duration_seconds": 1, @@ -50627,7 +50627,7 @@ "dashboard_link": "/linux/opensource_packages/open-webui", "job_url_resolution_status": "central_exact", "package_slug": "open-webui", - "production_refreshed_at": "2026-05-14T19:37:17.397349+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.609597+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -50641,15 +50641,15 @@ }, "run": { "attempt": "1", - "id": "25877431862", + "id": "26658734615", "job_name": "test-open-webui / test-open-webui", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:24Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265709" + "timestamp": "2026-05-29T19:49:13Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538203" }, "schema_version": "2.0", "tests": { @@ -50658,46 +50658,46 @@ "duration_seconds": 2, "name": "Test 1 - Package installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265709#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538203#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Version metadata matches baseline", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265709#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538203#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Installed files metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265709#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538203#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265709#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538203#step:10:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265709#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538203#step:11:1" }, { "comparison": "Current pinned package version 0.1.124 passed smoke tests in this run, and the newer stable PyPI candidate 0.1.125 installed successfully on Arm64.", "current_version": "0.1.124", "decision": "next_install_validated", - "duration_seconds": 151, + "duration_seconds": 155, "latest_version": "0.1.125", "name": "Test 6 - Regression Validation", "next_installed_version": "0.1.125", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265709#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538203#step:12:1" } ], - "duration_seconds": 153, + "duration_seconds": 157, "failed": 0, "passed": 6, "skipped": 0 @@ -50712,7 +50712,7 @@ "dashboard_link": "/linux/opensource_packages/openHPC", "job_url_resolution_status": "central_exact", "package_slug": "openHPC", - "production_refreshed_at": "2026-05-14T19:37:17.397556+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.609771+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -50726,15 +50726,15 @@ }, "run": { "attempt": "1", - "id": "25877423406", + "id": "26658727918", "job_name": "test-openhpc / test-openhpc", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:01Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209755" + "timestamp": "2026-05-29T19:49:08Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516289" }, "schema_version": "2.0", "tests": { @@ -50743,31 +50743,31 @@ "duration_seconds": 0, "name": "Test 1 - Check release RPM download", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209755#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516289#step:6:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 2 - Check release tag exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209755#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516289#step:7:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 3 - Check OpenHPC repo file", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209755#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516289#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209755#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516289#step:9:1" }, { - "duration_seconds": 2, + "duration_seconds": 1, "name": "Test 5 - Validate Arm repo metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209755#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516289#step:10:1" }, { "comparison": "Baseline v3.2.1.GA passed Tests 1-5, and the next newer OpenHPC release v3.3.GA published an aarch64 install guide while the matching OpenHPC repo/update channels exposed the required aarch64 package metadata.", @@ -50779,10 +50779,10 @@ "next_installed_version": "v3.3.GA", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209755#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516289#step:11:1" } ], - "duration_seconds": 3, + "duration_seconds": 1, "failed": 0, "passed": 6, "skipped": 0 @@ -50797,7 +50797,7 @@ "dashboard_link": "/linux/opensource_packages/openblas", "job_url_resolution_status": "central_exact", "package_slug": "openblas", - "production_refreshed_at": "2026-05-14T19:37:17.397777+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.609943+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -50809,15 +50809,15 @@ }, "run": { "attempt": "1", - "id": "25877367704", + "id": "26658677990", "job_name": "test-openblas / test-openblas", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:53Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026063" + "timestamp": "2026-05-29T19:48:02Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347203" }, "schema_version": "2.0", "tests": { @@ -50826,37 +50826,37 @@ "duration_seconds": 0, "name": "Test 1 - Check pkg-config", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026063#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347203#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check header file", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026063#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347203#step:7:1" }, { "duration_seconds": 1, "name": "Test 3 - Compile and Link Simple Program", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026063#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347203#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026063#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347203#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation (Python)", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026063#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347203#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026063#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347203#step:11:1" } ], "duration_seconds": 1, @@ -50874,7 +50874,7 @@ "dashboard_link": "/linux/opensource_packages/opencart", "job_url_resolution_status": "central_exact", "package_slug": "opencart", - "production_refreshed_at": "2026-05-14T19:37:17.397985+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.610110+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -50888,15 +50888,15 @@ }, "run": { "attempt": "1", - "id": "25877383844", + "id": "26658692522", "job_name": "test-opencart / test-opencart", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:15Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071599" + "timestamp": "2026-05-29T19:48:20Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394932" }, "schema_version": "2.0", "tests": { @@ -50905,46 +50905,46 @@ "duration_seconds": 0, "name": "Test 1 - Check store front files", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071599#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394932#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check admin files", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071599#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394932#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check PHP syntax", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071599#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394932#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071599#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394932#step:9:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 5 - Functional validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071599#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394932#step:10:1" }, { "comparison": "Current pinned OpenCart version 4.1.0.0 passed smoke tests in this run. Regression validation downloaded candidate version 4.1.0.1 on Arm64, and the staged application files reported version 4.1.0.1.", "current_version": "4.1.0.0", "decision": "next_install_validated", - "duration_seconds": 2, + "duration_seconds": 3, "latest_version": "4.1.0.1", "name": "Test 6 - Regression Validation", "next_installed_version": "4.1.0.1", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071599#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394932#step:11:1" } ], - "duration_seconds": 2, + "duration_seconds": 3, "failed": 0, "passed": 6, "skipped": 0 @@ -50959,7 +50959,7 @@ "dashboard_link": "/linux/opensource_packages/opencas", "job_url_resolution_status": "central_exact", "package_slug": "opencas", - "production_refreshed_at": "2026-05-14T19:37:17.398193+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.610295+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -50973,15 +50973,15 @@ }, "run": { "attempt": "1", - "id": "25877411197", + "id": "26658717942", "job_name": "test-opencas / test-opencas", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:48Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175273" + "timestamp": "2026-05-29T19:48:52Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479775" }, "schema_version": "2.0", "tests": { @@ -50990,46 +50990,46 @@ "duration_seconds": 0, "name": "Test 1 - Check Open CAS binaries exist", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175273#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479775#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175273#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479775#step:7:1" }, { "duration_seconds": 30, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175273#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479775#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175273#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479775#step:9:1" }, { "duration_seconds": 30, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175273#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479775#step:10:1" }, { "comparison": "Current pinned Open CAS CLI 24.09.0.0000 passed smoke tests in this run. Regression validation built and installed candidate 25.03, and the Arm64 casadm/casctl utilities reported the expected next-version metadata.", "current_version": "24.09.0.0000", "decision": "next_install_validated", - "duration_seconds": 50, + "duration_seconds": 52, "latest_version": "25.03", "name": "Test 6 - Regression Validation", "next_installed_version": "25.03.0.0000", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175273#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479775#step:11:1" } ], - "duration_seconds": 110, + "duration_seconds": 112, "failed": 0, "passed": 6, "skipped": 0 @@ -51044,7 +51044,7 @@ "dashboard_link": "/linux/opensource_packages/opencascade", "job_url_resolution_status": "central_exact", "package_slug": "opencascade", - "production_refreshed_at": "2026-05-14T19:37:17.398396+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.610481+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -51056,15 +51056,15 @@ }, "run": { "attempt": "1", - "id": "25877379982", + "id": "26658688675", "job_name": "test-opencascade / test-opencascade", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:05Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057424" + "timestamp": "2026-05-29T19:48:15Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380474" }, "schema_version": "2.0", "tests": { @@ -51073,40 +51073,40 @@ "duration_seconds": 0, "name": "Test 1 - Check header files", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057424#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380474#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Header", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057424#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380474#step:7:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 3 - Check Linkable Kernel Library", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057424#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380474#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057424#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380474#step:9:1" }, { - "duration_seconds": 5, + "duration_seconds": 2, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057424#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380474#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057424#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380474#step:11:1" } ], - "duration_seconds": 5, + "duration_seconds": 2, "failed": 0, "passed": 6, "skipped": 0 @@ -51121,7 +51121,7 @@ "dashboard_link": "/linux/opensource_packages/opencv", "job_url_resolution_status": "central_exact", "package_slug": "opencv", - "production_refreshed_at": "2026-05-14T19:37:17.398581+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.610645+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -51133,54 +51133,54 @@ }, "run": { "attempt": "1", - "id": "25877411197", + "id": "26658717942", "job_name": "test-opencv / test-opencv", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:49Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175376" + "timestamp": "2026-05-29T19:48:52Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479432" }, "schema_version": "2.0", "tests": { "details": [ { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 1 - Import OpenCV", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175376#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479432#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175376#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479432#step:7:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 3 - Check Module Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175376#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479432#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175376#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479432#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175376#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479432#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175376#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479432#step:11:1" } ], "duration_seconds": 1, @@ -51198,7 +51198,7 @@ "dashboard_link": "/linux/opensource_packages/openembedded", "job_url_resolution_status": "central_exact", "package_slug": "openembedded", - "production_refreshed_at": "2026-05-14T19:37:17.398793+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.610810+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -51212,15 +51212,15 @@ }, "run": { "attempt": "1", - "id": "25877392111", + "id": "26658699892", "job_name": "test-openembedded / test-openembedded", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:23Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096569" + "timestamp": "2026-05-29T19:48:29Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421158" }, "schema_version": "2.0", "tests": { @@ -51229,43 +51229,43 @@ "duration_seconds": 0, "name": "Test 1 - Check oe-init-build-env and sibling bitbake", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096569#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421158#step:6:1" }, { "duration_seconds": 1, "name": "Test 2 - Check BitBake version on baseline", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096569#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421158#step:7:1" }, { "duration_seconds": 1, "name": "Test 3 - Check layer registration on baseline", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096569#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421158#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096569#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421158#step:9:1" }, { - "duration_seconds": 18, + "duration_seconds": 19, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096569#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421158#step:10:1" }, { "comparison": "Current pinned OpenEmbedded (Yocto) version 4.0.33 passed smoke tests in this run. Regression validation cloned sibling openembedded-core and bitbake checkouts for candidate tag yocto-5.0.17, sourced oe-init-build-env successfully on Arm64, and completed a real BitBake parse for version 5.0.17.", "current_version": "4.0.33", "decision": "next_install_validated", - "duration_seconds": 25, + "duration_seconds": 24, "latest_version": "5.0.17", "name": "Test 6 - Regression Validation", "next_installed_version": "5.0.17", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096569#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421158#step:11:1" } ], "duration_seconds": 45, @@ -51283,7 +51283,7 @@ "dashboard_link": "/linux/opensource_packages/openeuler", "job_url_resolution_status": "central_exact", "package_slug": "openeuler", - "production_refreshed_at": "2026-05-14T19:37:17.399118+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.611084+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -51297,15 +51297,15 @@ }, "run": { "attempt": "1", - "id": "25877419588", + "id": "26658724696", "job_name": "test-openeuler / test-openeuler", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:58Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048191456" + "timestamp": "2026-05-29T19:49:02Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503336" }, "schema_version": "2.0", "tests": { @@ -51314,46 +51314,46 @@ "duration_seconds": 0, "name": "Test 1 - Check OpenEuler image exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048191456#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503336#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check OpenEuler version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048191456#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503336#step:7:1" }, { "duration_seconds": 1, "name": "Test 3 - Check dnf help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048191456#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503336#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048191456#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503336#step:9:1" }, { "duration_seconds": 1, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048191456#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503336#step:10:1" }, { "comparison": "Current pinned OpenEuler image 24.03-lts-sp2 passed smoke tests in this run. Regression validation pulled candidate Arm64 image 24.03-lts-sp3 successfully, and the candidate container reported 'openEuler 24.03 (LTS-SP3)' while completing a real dnf repolist check.", "current_version": "24.03-lts-sp2", "decision": "next_install_validated", - "duration_seconds": 7, + "duration_seconds": 6, "latest_version": "24.03-lts-sp3", "name": "Test 6 - Regression Validation", "next_installed_version": "24.03-lts-sp3", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048191456#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503336#step:11:1" } ], - "duration_seconds": 9, + "duration_seconds": 8, "failed": 0, "passed": 6, "skipped": 0 @@ -51368,7 +51368,7 @@ "dashboard_link": "/linux/opensource_packages/openfalcon", "job_url_resolution_status": "central_exact", "package_slug": "openfalcon", - "production_refreshed_at": "2026-05-14T19:37:17.399311+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.611308+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -51382,15 +51382,15 @@ }, "run": { "attempt": "1", - "id": "25877395502", + "id": "26658703674", "job_name": "test-openfalcon / test-openfalcon", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:26Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110124" + "timestamp": "2026-05-29T19:48:35Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433186" }, "schema_version": "2.0", "tests": { @@ -51399,31 +51399,31 @@ "duration_seconds": 0, "name": "Test 1 - Check Open-falcon binaries exist", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110124#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433186#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110124#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433186#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check wrapper help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110124#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433186#step:8:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 4 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110124#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433186#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional dispatcher validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110124#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433186#step:10:1" }, { "comparison": "Current pinned Open-falcon version 0.2.1 passed smoke tests in this run. Regression validation rebuilt candidate version 0.3 on Arm64, the wrapper reported version 0.3, and the generated dispatcher plus module binaries were usable on Arm64.", @@ -51435,10 +51435,10 @@ "next_installed_version": "0.3", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110124#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433186#step:11:1" } ], - "duration_seconds": 12, + "duration_seconds": 13, "failed": 0, "passed": 6, "skipped": 0 @@ -51453,7 +51453,7 @@ "dashboard_link": "/linux/opensource_packages/openfeature_go", "job_url_resolution_status": "central_exact", "package_slug": "openfeature_go", - "production_refreshed_at": "2026-05-14T19:37:17.399520+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.611502+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -51467,15 +51467,15 @@ }, "run": { "attempt": "1", - "id": "25877371674", + "id": "26658681575", "job_name": "test-openfeature_go / test-openfeature-go", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:00Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031767" + "timestamp": "2026-05-29T19:48:06Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358530" }, "schema_version": "2.0", "tests": { @@ -51484,46 +51484,46 @@ "duration_seconds": 0, "name": "Test 1 - Check Module Availability", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031767#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358530#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031767#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358530#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Package Inspection", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031767#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358530#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031767#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358530#step:10:1" }, { "duration_seconds": 4, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031767#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358530#step:11:1" }, { "comparison": "Baseline OpenFeature Go SDK v1.17.1 compiled and ran. Test 6 installed candidate v1.17.2, compiled it, and evaluated a boolean flag on Arm64.", "current_version": "v1.17.1", "decision": "next_install_validated", - "duration_seconds": 1, + "duration_seconds": 2, "latest_version": "v1.17.2", "name": "Test 6 - Regression Validation", "next_installed_version": "v1.17.2", "regression_result": "Next version compiled and ran successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031767#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358530#step:12:1" } ], - "duration_seconds": 5, + "duration_seconds": 6, "failed": 0, "passed": 6, "skipped": 0 @@ -51538,7 +51538,7 @@ "dashboard_link": "/linux/opensource_packages/openfeature_java", "job_url_resolution_status": "central_exact", "package_slug": "openfeature_java", - "production_refreshed_at": "2026-05-14T19:37:17.399734+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.611679+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -51550,15 +51550,15 @@ }, "run": { "attempt": "1", - "id": "25877419588", + "id": "26658724696", "job_name": "test-openfeature_java / test-openfeature-java", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:57Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192771" + "timestamp": "2026-05-29T19:49:01Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504184" }, "schema_version": "2.0", "tests": { @@ -51567,40 +51567,40 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192771#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504184#step:6:1" }, { "duration_seconds": 1, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192771#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504184#step:7:1" }, { - "duration_seconds": 19, + "duration_seconds": 23, "name": "Test 3 - Check Dependency Resolution", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192771#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504184#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192771#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504184#step:9:1" }, { - "duration_seconds": 6, + "duration_seconds": 7, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192771#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504184#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192771#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504184#step:11:1" } ], - "duration_seconds": 26, + "duration_seconds": 31, "failed": 0, "passed": 6, "skipped": 0 @@ -51615,7 +51615,7 @@ "dashboard_link": "/linux/opensource_packages/openfeature_python", "job_url_resolution_status": "central_exact", "package_slug": "openfeature_python", - "production_refreshed_at": "2026-05-14T19:37:17.399974+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.611851+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -51627,15 +51627,15 @@ }, "run": { "attempt": "1", - "id": "25877403044", + "id": "26658710721", "job_name": "test-openfeature_python / test-openfeature-python", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:39Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140036" + "timestamp": "2026-05-29T19:48:42Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455611" }, "schema_version": "2.0", "tests": { @@ -51644,40 +51644,40 @@ "duration_seconds": 0, "name": "Test 1 - Import SDK", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140036#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455611#step:6:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 2 - Evaluate flag details", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140036#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455611#step:7:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 3 - Configure evaluation context", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140036#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455611#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Evaluate numeric and object defaults", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140036#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455611#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140036#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455611#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140036#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455611#step:11:1" } ], - "duration_seconds": 0, + "duration_seconds": 1, "failed": 0, "passed": 6, "skipped": 0 @@ -51692,7 +51692,7 @@ "dashboard_link": "/linux/opensource_packages/openfoam", "job_url_resolution_status": "central_exact", "package_slug": "openfoam", - "production_refreshed_at": "2026-05-14T19:37:17.400161+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.612017+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -51704,15 +51704,15 @@ }, "run": { "attempt": "1", - "id": "25877427741", + "id": "26658731236", "job_name": "test-openfoam / test-openfoam", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:05Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218528" + "timestamp": "2026-05-29T19:49:14Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529207" }, "schema_version": "2.0", "tests": { @@ -51721,40 +51721,40 @@ "duration_seconds": 0, "name": "Test 1 - Check icoFoam binary", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218528#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529207#step:6:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 2 - Check blockMesh binary", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218528#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529207#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Run Help Command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218528#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529207#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218528#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529207#step:9:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218528#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529207#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218528#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529207#step:11:1" } ], - "duration_seconds": 0, + "duration_seconds": 1, "failed": 0, "passed": 6, "skipped": 0 @@ -51769,7 +51769,7 @@ "dashboard_link": "/linux/opensource_packages/openfpgaloader", "job_url_resolution_status": "central_exact", "package_slug": "openfpgaloader", - "production_refreshed_at": "2026-05-14T19:37:17.400354+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.612184+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -51781,15 +51781,15 @@ }, "run": { "attempt": "1", - "id": "25877431862", + "id": "26658734615", "job_name": "test-openfpgaloader / test-openfpgaloader", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:22Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265896" + "timestamp": "2026-05-29T19:49:14Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538004" }, "schema_version": "2.0", "tests": { @@ -51798,37 +51798,37 @@ "duration_seconds": 0, "name": "Test 1 - Check openFPGALoader binary", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265896#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538004#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Check openFPGALoader help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265896#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538004#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - List supported boards", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265896#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538004#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - List supported cables", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265896#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538004#step:10:1" }, { "duration_seconds": 0, "name": "Test 5 - List supported FPGA parts", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265896#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538004#step:11:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265896#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538004#step:12:1" } ], "duration_seconds": 0, @@ -51846,7 +51846,7 @@ "dashboard_link": "/linux/opensource_packages/opengauss", "job_url_resolution_status": "central_exact", "package_slug": "opengauss", - "production_refreshed_at": "2026-05-14T19:37:17.400550+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.612388+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "no_newer_stable_available", @@ -51860,15 +51860,15 @@ }, "run": { "attempt": "1", - "id": "25877383844", + "id": "26658692522", "job_name": "test-opengauss / test-opengauss", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:12Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071460" + "timestamp": "2026-05-29T19:48:19Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394310" }, "schema_version": "2.0", "tests": { @@ -51877,43 +51877,43 @@ "duration_seconds": 0, "name": "Test 1 - Check baseline client tooling", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071460#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394310#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check SQL version query", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071460#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394310#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check gsql help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071460#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394310#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071460#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394310#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional database validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071460#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394310#step:10:1" }, { "comparison": "Current pinned OpenGauss image tag 7.0.0-RC2.B014 completed the baseline Arm64 validation path in this run. The next visible public tag 7.0.0-RC2.B015 is an RC/testing build rather than a stable regression target, and no newer stable public Arm64-supported image is available in the tested lane to validate instead.", "current_version": "7.0.0-RC2.B014", "decision": "no_newer_stable_available", - "duration_seconds": 0, + "duration_seconds": 1, "latest_version": "7.0.0-RC2.B015", "name": "Test 6 - Regression Validation", "next_installed_version": "not_validated", "regression_result": "No newer stable OpenGauss Arm64 image is available for Test 6 in this lane", "status": "skipped", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071460#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394310#step:11:1" } ], "duration_seconds": 0, @@ -51931,7 +51931,7 @@ "dashboard_link": "/linux/opensource_packages/openj9", "job_url_resolution_status": "central_exact", "package_slug": "openj9", - "production_refreshed_at": "2026-05-14T19:37:17.400758+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.612574+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -51945,15 +51945,15 @@ }, "run": { "attempt": "1", - "id": "25877399008", + "id": "26658707245", "job_name": "test-openj9 / test-openj9", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:32Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125728" + "timestamp": "2026-05-29T19:48:38Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445805" }, "schema_version": "2.0", "tests": { @@ -51962,46 +51962,46 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125728#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445805#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125728#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445805#step:7:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 3 - Check Help Output or Configuration", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125728#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445805#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125728#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445805#step:9:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125728#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445805#step:10:1" }, { "comparison": "Current pinned OpenJ9 version 17.0.17 passed smoke tests in this run. Regression validation downloaded the candidate Arm64 JDK from https://github.com/ibmruntimes/semeru17-binaries/releases/download/jdk-17.0.18%2B8.1_openj9-0.57.0/ibm-semeru-open-jdk_aarch64_linux_17.0.18.1.tar.gz, and the extracted candidate reported version 17.0.18 and completed a real compile-and-run check successfully.", "current_version": "17.0.17", "decision": "next_install_validated", - "duration_seconds": 5, + "duration_seconds": 4, "latest_version": "17.0.18.1", "name": "Test 6 - Regression Validation", "next_installed_version": "17.0.18", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125728#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445805#step:11:1" } ], - "duration_seconds": 6, + "duration_seconds": 5, "failed": 0, "passed": 6, "skipped": 0 @@ -52016,7 +52016,7 @@ "dashboard_link": "/linux/opensource_packages/openkruise", "job_url_resolution_status": "central_exact", "package_slug": "openkruise", - "production_refreshed_at": "2026-05-14T19:37:17.400954+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.612755+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -52028,15 +52028,15 @@ }, "run": { "attempt": "1", - "id": "25877392111", + "id": "26658699892", "job_name": "test-openkruise / test-openkruise", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:25Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096552" + "timestamp": "2026-05-29T19:48:30Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421145" }, "schema_version": "2.0", "tests": { @@ -52045,37 +52045,37 @@ "duration_seconds": 0, "name": "Test 1 - Artifact Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096552#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421145#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096552#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421145#step:7:1" }, { "duration_seconds": 1, "name": "Test 3 - Help Output Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096552#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421145#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096552#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421145#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096552#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421145#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096552#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421145#step:11:1" } ], "duration_seconds": 1, @@ -52093,7 +52093,7 @@ "dashboard_link": "/linux/opensource_packages/openlane", "job_url_resolution_status": "central_exact", "package_slug": "openlane", - "production_refreshed_at": "2026-05-14T19:37:17.401131+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.612924+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -52107,15 +52107,15 @@ }, "run": { "attempt": "1", - "id": "25877431862", + "id": "26658734615", "job_name": "test-openlane / test-openlane", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:25Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265878" + "timestamp": "2026-05-29T19:49:16Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537956" }, "schema_version": "2.0", "tests": { @@ -52124,46 +52124,46 @@ "duration_seconds": 0, "name": "Test 1 - Check package-specific baseline markers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265878#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537956#step:8:1" }, { "duration_seconds": 0, "name": "Test 2 - Check published package metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265878#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537956#step:9:1" }, { "duration_seconds": 0, "name": "Test 3 - Check package-specific docs and manifests", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265878#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537956#step:10:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265878#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537956#step:11:1" }, { "duration_seconds": 3, "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265878#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537956#step:12:1" }, { "comparison": "Ran the next OpenLane candidate Tcl entrypoint help on Arm64 and validated a bundled design config. This does not install PDKs or run an ASIC flow.", "current_version": "2022.05.22_02.07.28", "decision": "limited_cpu_smoke_validated", - "duration_seconds": 8, + "duration_seconds": 5, "latest_version": "0.23", "name": "Test 6 - Regression Validation", "next_installed_version": "0.23", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265878#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537956#step:13:1" } ], - "duration_seconds": 11, + "duration_seconds": 8, "failed": 0, "passed": 6, "skipped": 0 @@ -52178,7 +52178,7 @@ "dashboard_link": "/linux/opensource_packages/openldap", "job_url_resolution_status": "central_exact", "package_slug": "openldap", - "production_refreshed_at": "2026-05-14T19:37:17.401310+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.613097+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -52190,15 +52190,15 @@ }, "run": { "attempt": "1", - "id": "25877427741", + "id": "26658731236", "job_name": "test-openldap / test-openldap", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:05Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218857" + "timestamp": "2026-05-29T19:49:14Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529406" }, "schema_version": "2.0", "tests": { @@ -52207,37 +52207,37 @@ "duration_seconds": 0, "name": "Test 1 - Check server and client binaries", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218857#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529406#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218857#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529406#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218857#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529406#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify architecture", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218857#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529406#step:9:1" }, { "duration_seconds": 2, "name": "Test 5 - Functional service start and query", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218857#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529406#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218857#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529406#step:11:1" } ], "duration_seconds": 2, @@ -52255,7 +52255,7 @@ "dashboard_link": "/linux/opensource_packages/openmcp-control-plane-operator", "job_url_resolution_status": "central_exact", "package_slug": "openmcp-control-plane-operator", - "production_refreshed_at": "2026-05-14T19:37:17.401539+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.613291+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -52269,15 +52269,15 @@ }, "run": { "attempt": "1", - "id": "25877435852", + "id": "26658737633", "job_name": "test-openmcp-control-plane-operator / test-openmcp-control-plane-operator", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:15Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251801" + "timestamp": "2026-05-29T19:49:23Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550166" }, "schema_version": "2.0", "tests": { @@ -52286,31 +52286,31 @@ "duration_seconds": 0, "name": "Test 1 - Download baseline source tag", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251801#step:5:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550166#step:5:1" }, { "duration_seconds": 0, "name": "Test 2 - Verify expected source layout", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251801#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550166#step:6:1" }, { "duration_seconds": 0, "name": "Test 3 - Validate Arm64 image manifest", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251801#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550166#step:7:1" }, { "duration_seconds": 0, "name": "Test 4 - Pull baseline Arm64 image", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251801#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550166#step:8:1" }, { "duration_seconds": 0, "name": "Test 5 - Inspect baseline image on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251801#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550166#step:9:1" }, { "comparison": "OpenMCP Control Plane Operator candidate image(s) expose linux/arm64 manifests and pull successfully.", @@ -52322,10 +52322,10 @@ "next_installed_version": "0.1.19", "regression_result": "Next image validation passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251801#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550166#step:10:1" } ], - "duration_seconds": 15, + "duration_seconds": 14, "failed": 0, "passed": 6, "skipped": 0 @@ -52340,7 +52340,7 @@ "dashboard_link": "/linux/opensource_packages/openmetrics", "job_url_resolution_status": "central_exact", "package_slug": "openmetrics", - "production_refreshed_at": "2026-05-14T19:37:17.401738+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.613487+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -52352,15 +52352,15 @@ }, "run": { "attempt": "1", - "id": "25877399008", + "id": "26658707245", "job_name": "test-openmetrics / test-openmetrics", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:32Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126114" + "timestamp": "2026-05-29T19:48:40Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445244" }, "schema_version": "2.0", "tests": { @@ -52369,37 +52369,37 @@ "duration_seconds": 0, "name": "Test 1 - Import Library", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126114#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445244#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Installed Version", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126114#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445244#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Render API Documentation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126114#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445244#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126114#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445244#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126114#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445244#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126114#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445244#step:11:1" } ], "duration_seconds": 0, @@ -52417,7 +52417,7 @@ "dashboard_link": "/linux/opensource_packages/openmfp-portal", "job_url_resolution_status": "central_exact", "package_slug": "openmfp-portal", - "production_refreshed_at": "2026-05-14T19:37:17.401976+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.613666+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -52431,15 +52431,15 @@ }, "run": { "attempt": "1", - "id": "25877435852", + "id": "26658737633", "job_name": "test-openmfp-portal / test-openmfp-portal", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:19Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251950" + "timestamp": "2026-05-29T19:49:23Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550222" }, "schema_version": "2.0", "tests": { @@ -52448,31 +52448,31 @@ "duration_seconds": 0, "name": "Test 1 - Download baseline source tag", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251950#step:5:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550222#step:5:1" }, { "duration_seconds": 0, "name": "Test 2 - Verify expected source layout", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251950#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550222#step:6:1" }, { "duration_seconds": 0, "name": "Test 3 - Validate Arm64 image manifest", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251950#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550222#step:7:1" }, { "duration_seconds": 0, "name": "Test 4 - Pull baseline Arm64 image", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251950#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550222#step:8:1" }, { "duration_seconds": 0, "name": "Test 5 - Inspect baseline image on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251950#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550222#step:9:1" }, { "comparison": "OpenMFP Portal candidate image(s) expose linux/arm64 manifests and pull successfully.", @@ -52484,7 +52484,7 @@ "next_installed_version": "0.377.209", "regression_result": "Next image validation passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251950#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550222#step:10:1" } ], "duration_seconds": 34, @@ -52502,7 +52502,7 @@ "dashboard_link": "/linux/opensource_packages/openmpi", "job_url_resolution_status": "central_exact", "package_slug": "openmpi", - "production_refreshed_at": "2026-05-14T19:37:17.402184+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.613847+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -52514,15 +52514,15 @@ }, "run": { "attempt": "1", - "id": "25877379982", + "id": "26658688675", "job_name": "test-openmpi / test-openmpi", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:07Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056492" + "timestamp": "2026-05-29T19:48:15Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575379805" }, "schema_version": "2.0", "tests": { @@ -52531,37 +52531,37 @@ "duration_seconds": 0, "name": "Test 1 - Check mpirun binary", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056492#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575379805#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check OpenMPI version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056492#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575379805#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check MPI compiler configuration", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056492#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575379805#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056492#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575379805#step:9:1" }, { "duration_seconds": 1, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056492#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575379805#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056492#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575379805#step:11:1" } ], "duration_seconds": 1, @@ -52579,7 +52579,7 @@ "dashboard_link": "/linux/opensource_packages/opennow", "job_url_resolution_status": "central_exact", "package_slug": "opennow", - "production_refreshed_at": "2026-05-14T19:37:17.402383+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.614018+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -52593,15 +52593,15 @@ }, "run": { "attempt": "1", - "id": "25877431862", + "id": "26658734615", "job_name": "test-opennow / test-opennow", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:22Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265741" + "timestamp": "2026-05-29T19:49:16Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538063" }, "schema_version": "2.0", "tests": { @@ -52610,43 +52610,43 @@ "duration_seconds": 0, "name": "Test 1 - Check package-specific baseline markers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265741#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538063#step:8:1" }, { "duration_seconds": 0, "name": "Test 2 - Check published package metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265741#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538063#step:9:1" }, { "duration_seconds": 0, "name": "Test 3 - Check package-specific docs and manifests", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265741#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538063#step:10:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265741#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538063#step:11:1" }, { - "duration_seconds": 17, + "duration_seconds": 12, "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265741#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538063#step:12:1" }, { "comparison": "Test 6 reran the scoped OpenNOW Arm preflight against the next stable source tag: dependency install, Electron/TypeScript typecheck/build, and package identity validation. GeForce NOW login and cloud gaming runtime remain out of scope.", "current_version": "0.0.21", "decision": "limited_cpu_smoke_validated", - "duration_seconds": 28, + "duration_seconds": 29, "latest_version": "1.3.5", "name": "Test 6 - Regression Validation", "next_installed_version": "1.3.5", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265741#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538063#step:13:1" } ], "duration_seconds": 28, @@ -52664,7 +52664,7 @@ "dashboard_link": "/linux/opensource_packages/openresty", "job_url_resolution_status": "central_exact", "package_slug": "openresty", - "production_refreshed_at": "2026-05-14T19:37:17.402590+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.614203+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -52678,15 +52678,15 @@ }, "run": { "attempt": "1", - "id": "25877403044", + "id": "26658710721", "job_name": "test-openresty / test-openresty", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:38Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140953" + "timestamp": "2026-05-29T19:48:44Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456231" }, "schema_version": "2.0", "tests": { @@ -52695,46 +52695,46 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140953#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456231#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140953#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456231#step:7:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 3 - Check Configuration", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140953#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456231#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140953#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456231#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140953#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456231#step:10:1" }, { "comparison": "Current pinned OpenResty version 1.27.1.1 passed smoke tests in this run. Regression validation built and installed candidate version 1.27.1.2 in an isolated Arm64 prefix, and the candidate nginx binary reported version 1.27.1.2 while passing configuration validation.", "current_version": "1.27.1.1", "decision": "next_install_validated", - "duration_seconds": 60, + "duration_seconds": 61, "latest_version": "1.27.1.2", "name": "Test 6 - Regression Validation", "next_installed_version": "1.27.1.2", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140953#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456231#step:11:1" } ], - "duration_seconds": 60, + "duration_seconds": 61, "failed": 0, "passed": 6, "skipped": 0 @@ -52749,7 +52749,7 @@ "dashboard_link": "/linux/opensource_packages/openscenegraph", "job_url_resolution_status": "central_exact", "package_slug": "openscenegraph", - "production_refreshed_at": "2026-05-14T19:37:17.402816+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.614413+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -52761,15 +52761,15 @@ }, "run": { "attempt": "1", - "id": "25877415436", + "id": "26658721315", "job_name": "test-openscenegraph / test-openscenegraph", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:54Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181092" + "timestamp": "2026-05-29T19:48:57Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491589" }, "schema_version": "2.0", "tests": { @@ -52778,40 +52778,40 @@ "duration_seconds": 0, "name": "Test 1 - Check osgversion binary", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181092#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491589#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check pkg-config", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181092#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491589#step:7:1" }, { - "duration_seconds": 7, + "duration_seconds": 2, "name": "Test 3 - Compile Simple OSG Program", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181092#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491589#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181092#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491589#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181092#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491589#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181092#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491589#step:11:1" } ], - "duration_seconds": 7, + "duration_seconds": 2, "failed": 0, "passed": 6, "skipped": 0 @@ -52826,7 +52826,7 @@ "dashboard_link": "/linux/opensource_packages/opensearch", "job_url_resolution_status": "central_exact", "package_slug": "opensearch", - "production_refreshed_at": "2026-05-14T19:37:17.404006+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.615439+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -52840,15 +52840,15 @@ }, "run": { "attempt": "1", - "id": "25877363365", + "id": "26658674448", "job_name": "test-opensearch / test-opensearch", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:47Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000760" + "timestamp": "2026-05-29T19:47:57Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334439" }, "schema_version": "2.0", "tests": { @@ -52857,31 +52857,31 @@ "duration_seconds": 0, "name": "Test 1 - Check binary existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000760#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334439#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check config directory", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000760#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334439#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check plugin script", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000760#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334439#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000760#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334439#step:9:1" }, { "duration_seconds": 5, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000760#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334439#step:10:1" }, { "comparison": "Current pinned OpenSearch version 2.19.0 passed smoke tests in this run. Regression validation installed candidate version 2.19.1 on Arm64, and the extracted package reported version 2.19.1 while passing plugin and keystore validation.", @@ -52893,7 +52893,7 @@ "next_installed_version": "2.19.1", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000760#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334439#step:11:1" } ], "duration_seconds": 16, @@ -52911,7 +52911,7 @@ "dashboard_link": "/linux/opensource_packages/opensearch-benchmark", "job_url_resolution_status": "central_exact", "package_slug": "opensearch-benchmark", - "production_refreshed_at": "2026-05-14T19:37:17.403029+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.614588+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -52923,15 +52923,15 @@ }, "run": { "attempt": "1", - "id": "25877387746", + "id": "26658696365", "job_name": "test-opensearch-benchmark / test-opensearch-benchmark", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:16Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084572" + "timestamp": "2026-05-29T19:48:24Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407863" }, "schema_version": "2.0", "tests": { @@ -52940,40 +52940,40 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084572#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407863#step:6:1" }, { "duration_seconds": 1, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084572#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407863#step:7:1" }, { - "duration_seconds": 2, + "duration_seconds": 1, "name": "Test 3 - Check Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084572#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407863#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084572#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407863#step:9:1" }, { "duration_seconds": 1, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084572#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407863#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084572#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407863#step:11:1" } ], - "duration_seconds": 4, + "duration_seconds": 3, "failed": 0, "passed": 6, "skipped": 0 @@ -52988,7 +52988,7 @@ "dashboard_link": "/linux/opensource_packages/opensearch-cli", "job_url_resolution_status": "central_exact", "package_slug": "opensearch-cli", - "production_refreshed_at": "2026-05-14T19:37:17.403215+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.614758+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -53002,15 +53002,15 @@ }, "run": { "attempt": "1", - "id": "25877375677", + "id": "26658685142", "job_name": "test-opensearch-cli / test-opensearch-cli", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:02Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044586" + "timestamp": "2026-05-29T19:48:11Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370852" }, "schema_version": "2.0", "tests": { @@ -53019,43 +53019,43 @@ "duration_seconds": 0, "name": "Test 1 - Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044586#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370852#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044586#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370852#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Configuration Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044586#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370852#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044586#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370852#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044586#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370852#step:10:1" }, { "comparison": "Current pinned version 1.1.0 passed smoke tests in this run. Regression validation then verified the newer stable Arm64 candidate 1.2.0 successfully.", "current_version": "1.1.0", "decision": "next_install_validated", - "duration_seconds": 0, + "duration_seconds": 1, "latest_version": "1.2.0", "name": "Test 6 - Regression Validation", "next_installed_version": "1.2.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044586#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370852#step:11:1" } ], "duration_seconds": 0, @@ -53073,7 +53073,7 @@ "dashboard_link": "/linux/opensource_packages/opensearch-dashboard", "job_url_resolution_status": "central_exact", "package_slug": "opensearch-dashboard", - "production_refreshed_at": "2026-05-14T19:37:17.403400+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.614925+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -53085,15 +53085,15 @@ }, "run": { "attempt": "1", - "id": "25877415436", + "id": "26658721315", "job_name": "test-opensearch-dashboard / test-opensearch-dashboard", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:50Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179839" + "timestamp": "2026-05-29T19:48:55Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575490806" }, "schema_version": "2.0", "tests": { @@ -53102,40 +53102,40 @@ "duration_seconds": 0, "name": "Test 1 - Check binary existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179839#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575490806#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check configuration file", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179839#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575490806#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check plugin utility", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179839#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575490806#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179839#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575490806#step:9:1" }, { - "duration_seconds": 2, + "duration_seconds": 1, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179839#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575490806#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179839#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575490806#step:11:1" } ], - "duration_seconds": 2, + "duration_seconds": 1, "failed": 0, "passed": 6, "skipped": 0 @@ -53150,7 +53150,7 @@ "dashboard_link": "/linux/opensource_packages/opensearch-data-prepper", "job_url_resolution_status": "central_exact", "package_slug": "opensearch-data-prepper", - "production_refreshed_at": "2026-05-14T19:37:17.403617+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.615088+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -53164,15 +53164,15 @@ }, "run": { "attempt": "1", - "id": "25877367704", + "id": "26658677990", "job_name": "test-opensearch-data-prepper / test-opensearch-data-prepper", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:55Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027200" + "timestamp": "2026-05-29T19:48:03Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347576" }, "schema_version": "2.0", "tests": { @@ -53181,31 +53181,31 @@ "duration_seconds": 0, "name": "Test 1 - Artifact Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027200#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347576#step:6:1" }, { "duration_seconds": 2, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027200#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347576#step:7:1" }, { - "duration_seconds": 2, + "duration_seconds": 3, "name": "Test 3 - Configuration Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027200#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347576#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027200#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347576#step:9:1" }, { "duration_seconds": 20, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027200#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347576#step:10:1" }, { "comparison": "Current pinned Data Prepper version 2.14.0 passed smoke tests in this run. Regression validation installed candidate version 2.14.1 on Arm64, and the extracted runtime reported version 2.14.1.", @@ -53217,10 +53217,10 @@ "next_installed_version": "2.14.1", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027200#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347576#step:11:1" } ], - "duration_seconds": 29, + "duration_seconds": 30, "failed": 0, "passed": 6, "skipped": 0 @@ -53235,7 +53235,7 @@ "dashboard_link": "/linux/opensource_packages/openshift", "job_url_resolution_status": "central_exact", "package_slug": "openshift", - "production_refreshed_at": "2026-05-14T19:37:17.404236+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.615641+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -53249,15 +53249,15 @@ }, "run": { "attempt": "1", - "id": "25877415436", + "id": "26658721315", "job_name": "test-openshift / test-openshift", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:50Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180622" + "timestamp": "2026-05-29T19:48:57Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491498" }, "schema_version": "2.0", "tests": { @@ -53266,46 +53266,46 @@ "duration_seconds": 0, "name": "Test 1 - Check oc binary", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180622#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491498#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check kubectl binary", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180622#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491498#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check client version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180622#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491498#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180622#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491498#step:9:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180622#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491498#step:10:1" }, { - "comparison": "Current pinned OpenShift Client version 4.14.0 passed smoke tests in this run. Regression validation installed candidate version 4.21.15 on Arm64, and the extracted client binaries reported version 4.21.15 while passing help, completion, and kubectl client checks.", + "comparison": "Current pinned OpenShift Client version 4.14.0 passed smoke tests in this run. Regression validation installed candidate version 4.21.16 on Arm64, and the extracted client binaries reported version 4.21.16 while passing help, completion, and kubectl client checks.", "current_version": "4.14.0", "decision": "next_install_validated", - "duration_seconds": 3, - "latest_version": "4.21.15", + "duration_seconds": 2, + "latest_version": "4.21.16", "name": "Test 6 - Regression Validation", - "next_installed_version": "4.21.15", + "next_installed_version": "4.21.16", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180622#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491498#step:11:1" } ], - "duration_seconds": 4, + "duration_seconds": 2, "failed": 0, "passed": 6, "skipped": 0 @@ -53320,7 +53320,7 @@ "dashboard_link": "/linux/opensource_packages/openssh", "job_url_resolution_status": "central_exact", "package_slug": "openssh", - "production_refreshed_at": "2026-05-14T19:37:17.404424+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.615822+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -53332,15 +53332,15 @@ }, "run": { "attempt": "1", - "id": "25877415436", + "id": "26658721315", "job_name": "test-openssh / test-openssh", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:50Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181110" + "timestamp": "2026-05-29T19:48:57Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491937" }, "schema_version": "2.0", "tests": { @@ -53349,37 +53349,37 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181110#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491937#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181110#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491937#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Help Output or Configuration", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181110#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491937#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181110#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491937#step:9:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181110#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491937#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181110#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491937#step:11:1" } ], "duration_seconds": 0, @@ -53397,7 +53397,7 @@ "dashboard_link": "/linux/opensource_packages/openssl", "job_url_resolution_status": "central_exact", "package_slug": "openssl", - "production_refreshed_at": "2026-05-14T19:37:17.404628+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.616003+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -53409,15 +53409,15 @@ }, "run": { "attempt": "1", - "id": "25877419588", + "id": "26658724696", "job_name": "test-openssl / test-openssl", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:54Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192445" + "timestamp": "2026-05-29T19:49:01Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503979" }, "schema_version": "2.0", "tests": { @@ -53426,37 +53426,37 @@ "duration_seconds": 0, "name": "Test 1 - Check openssl binary", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192445#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503979#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192445#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503979#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - List supported ciphers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192445#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503979#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify architecture", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192445#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503979#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Generate and inspect a certificate", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192445#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503979#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192445#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503979#step:11:1" } ], "duration_seconds": 0, @@ -53474,7 +53474,7 @@ "dashboard_link": "/linux/opensource_packages/openstack-masakari", "job_url_resolution_status": "central_exact", "package_slug": "openstack-masakari", - "production_refreshed_at": "2026-05-14T19:37:17.404854+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.616183+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -53486,15 +53486,15 @@ }, "run": { "attempt": "1", - "id": "25877367704", + "id": "26658677990", "job_name": "test-openstack-masakari / test-openstack-masakari", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:54Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026090" + "timestamp": "2026-05-29T19:48:03Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346006" }, "schema_version": "2.0", "tests": { @@ -53503,40 +53503,40 @@ "duration_seconds": 0, "name": "Test 1 - Check masakari-api binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026090#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346006#step:6:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 2 - Check version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026090#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346006#step:7:1" }, { "duration_seconds": 1, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026090#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346006#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026090#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346006#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026090#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346006#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026090#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346006#step:11:1" } ], - "duration_seconds": 2, + "duration_seconds": 1, "failed": 0, "passed": 6, "skipped": 0 @@ -53551,7 +53551,7 @@ "dashboard_link": "/linux/opensource_packages/opensuse-leap", "job_url_resolution_status": "central_exact", "package_slug": "opensuse-leap", - "production_refreshed_at": "2026-05-14T19:37:17.405044+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.616406+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -53565,15 +53565,15 @@ }, "run": { "attempt": "1", - "id": "25877383844", + "id": "26658692522", "job_name": "test-opensuse-leap / test-opensuse-leap", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:12Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071405" + "timestamp": "2026-05-29T19:48:21Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394901" }, "schema_version": "2.0", "tests": { @@ -53582,46 +53582,46 @@ "duration_seconds": 0, "name": "Test 1 - Check Image Availability", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071405#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394901#step:6:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071405#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394901#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071405#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394901#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071405#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394901#step:9:1" }, { - "duration_seconds": 51, + "duration_seconds": 64, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071405#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394901#step:10:1" }, { "comparison": "Current pinned OpenSUSE Leap version 15.6 passed smoke tests in this run. Regression validation pulled candidate image 16.0 on Arm64, and the container reported version 16.0 while passing zypper help and package-info checks.", "current_version": "15.6", "decision": "next_install_validated", - "duration_seconds": 21, + "duration_seconds": 19, "latest_version": "16.0", "name": "Test 6 - Regression Validation", "next_installed_version": "16.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071405#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394901#step:11:1" } ], - "duration_seconds": 73, + "duration_seconds": 83, "failed": 0, "passed": 6, "skipped": 0 @@ -53636,7 +53636,7 @@ "dashboard_link": "/linux/opensource_packages/opensuse-tumbleweed", "job_url_resolution_status": "central_exact", "package_slug": "opensuse-tumbleweed", - "production_refreshed_at": "2026-05-14T19:37:17.405227+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.616608+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -53644,19 +53644,19 @@ }, "package": { "name": "OpenSUSE Tumbleweed", - "version": "20260512" + "version": "20260527" }, "run": { "attempt": "1", - "id": "25877387746", + "id": "26658696365", "job_name": "test-opensuse-tumbleweed / test-opensuse-tumbleweed", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:15Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083618" + "timestamp": "2026-05-29T19:48:24Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407458" }, "schema_version": "2.0", "tests": { @@ -53665,40 +53665,40 @@ "duration_seconds": 0, "name": "Test 1 - Check Image Availability", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083618#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407458#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083618#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407458#step:7:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 3 - Check Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083618#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407458#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083618#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407458#step:9:1" }, { - "duration_seconds": 18, + "duration_seconds": 15, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083618#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407458#step:10:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083618#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407458#step:11:1" } ], - "duration_seconds": 19, + "duration_seconds": 14, "failed": 0, "passed": 6, "skipped": 0 @@ -53713,7 +53713,7 @@ "dashboard_link": "/linux/opensource_packages/opentelemetry-cpp", "job_url_resolution_status": "central_exact", "package_slug": "opentelemetry-cpp", - "production_refreshed_at": "2026-05-14T19:37:17.405443+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.616793+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -53727,15 +53727,15 @@ }, "run": { "attempt": "1", - "id": "25877395502", + "id": "26658703674", "job_name": "test-opentelemetry-cpp / test-opentelemetry-cpp", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:26Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109971" + "timestamp": "2026-05-29T19:48:33Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432962" }, "schema_version": "2.0", "tests": { @@ -53744,46 +53744,46 @@ "duration_seconds": 0, "name": "Test 1 - Header and Library Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109971#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432962#step:6:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109971#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432962#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Configuration Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109971#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432962#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109971#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432962#step:9:1" }, { "duration_seconds": 1, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109971#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432962#step:10:1" }, { "comparison": "Current pinned OpenTelemetry C++ release 1.19.0 passed smoke tests in this run. Regression validation rebuilt official candidate version 1.20.0 on Arm64, installed it in an isolated prefix, and the candidate headers reported version 1.20.0 while the trace-provider smoke program compiled and ran successfully.", "current_version": "1.19.0", "decision": "next_install_validated", - "duration_seconds": 39, + "duration_seconds": 40, "latest_version": "1.20.0", "name": "Test 6 - Regression Validation", "next_installed_version": "1.20.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109971#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432962#step:11:1" } ], - "duration_seconds": 40, + "duration_seconds": 41, "failed": 0, "passed": 6, "skipped": 0 @@ -53798,7 +53798,7 @@ "dashboard_link": "/linux/opensource_packages/opentelemetry-go", "job_url_resolution_status": "central_exact", "package_slug": "opentelemetry-go", - "production_refreshed_at": "2026-05-14T19:37:17.405644+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.616969+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -53806,19 +53806,19 @@ }, "package": { "name": "OpenTelemetry Go", - "version": "v1.43.0" + "version": "v1.44.0" }, "run": { "attempt": "1", - "id": "25877379982", + "id": "26658688675", "job_name": "test-opentelemetry-go / test-opentelemetry-go", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:05Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057487" + "timestamp": "2026-05-29T19:48:15Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380723" }, "schema_version": "2.0", "tests": { @@ -53827,37 +53827,37 @@ "duration_seconds": 0, "name": "Test 1 - Check Go environment", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057487#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380723#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Module Version", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057487#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380723#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Package Documentation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057487#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380723#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057487#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380723#step:9:1" }, { "duration_seconds": 11, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057487#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380723#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057487#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380723#step:11:1" } ], "duration_seconds": 11, @@ -53875,7 +53875,7 @@ "dashboard_link": "/linux/opensource_packages/opentelemetry-python", "job_url_resolution_status": "central_exact", "package_slug": "opentelemetry-python", - "production_refreshed_at": "2026-05-14T19:37:17.405869+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.617149+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -53883,19 +53883,19 @@ }, "package": { "name": "OpenTelemetry Python", - "version": "1.41.1" + "version": "1.42.1" }, "run": { "attempt": "1", - "id": "25877392111", + "id": "26658699892", "job_name": "test-opentelemetry-python / test-opentelemetry-python", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:24Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096501" + "timestamp": "2026-05-29T19:48:30Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421220" }, "schema_version": "2.0", "tests": { @@ -53904,40 +53904,40 @@ "duration_seconds": 0, "name": "Test 1 - Check Import", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096501#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421220#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096501#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421220#step:7:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 3 - Check Module Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096501#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421220#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096501#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421220#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096501#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421220#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096501#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421220#step:11:1" } ], - "duration_seconds": 0, + "duration_seconds": 1, "failed": 0, "passed": 6, "skipped": 0 @@ -53952,7 +53952,7 @@ "dashboard_link": "/linux/opensource_packages/openvvc", "job_url_resolution_status": "central_exact", "package_slug": "openvvc", - "production_refreshed_at": "2026-05-14T19:37:17.406073+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.617345+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "no_newer_stable_available", @@ -53966,15 +53966,15 @@ }, "run": { "attempt": "1", - "id": "25877415436", + "id": "26658721315", "job_name": "test-openvvc / test-openvvc", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:51Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179869" + "timestamp": "2026-05-29T19:48:56Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575490912" }, "schema_version": "2.0", "tests": { @@ -53983,31 +53983,31 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179869#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575490912#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179869#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575490912#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179869#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575490912#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179869#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575490912#step:9:1" }, { - "duration_seconds": 3, + "duration_seconds": 4, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179869#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575490912#step:10:1" }, { "comparison": "OpenVVC 1.0.0 is the newest public stable source tag on the upstream release path, so there is no newer release to validate in Test 6 yet.", @@ -54019,10 +54019,10 @@ "next_installed_version": "1.0.0", "regression_result": "No newer stable OpenVVC release is available for Arm64 validation", "status": "skipped", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179869#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575490912#step:11:1" } ], - "duration_seconds": 3, + "duration_seconds": 4, "failed": 0, "passed": 5, "skipped": 1 @@ -54037,7 +54037,7 @@ "dashboard_link": "/linux/opensource_packages/openzfs", "job_url_resolution_status": "central_exact", "package_slug": "openzfs", - "production_refreshed_at": "2026-05-14T19:37:17.406276+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.617532+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -54049,15 +54049,15 @@ }, "run": { "attempt": "1", - "id": "25877406767", + "id": "26658714432", "job_name": "test-openzfs / test-openzfs", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:43Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155619" + "timestamp": "2026-05-29T19:48:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469349" }, "schema_version": "2.0", "tests": { @@ -54066,37 +54066,37 @@ "duration_seconds": 0, "name": "Test 1 - Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155619#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469349#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155619#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469349#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Help Output Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155619#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469349#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155619#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469349#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155619#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469349#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155619#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469349#step:11:1" } ], "duration_seconds": 0, @@ -54114,7 +54114,7 @@ "dashboard_link": "/linux/opensource_packages/operator-framework", "job_url_resolution_status": "central_exact", "package_slug": "operator-framework", - "production_refreshed_at": "2026-05-14T19:37:17.406474+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.617706+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -54126,15 +54126,15 @@ }, "run": { "attempt": "1", - "id": "25877427741", + "id": "26658731236", "job_name": "test-operator-framework / test-operator-framework", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:06Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217692" + "timestamp": "2026-05-29T19:49:11Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529468" }, "schema_version": "2.0", "tests": { @@ -54143,40 +54143,40 @@ "duration_seconds": 0, "name": "Test 1 - Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217692#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529468#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217692#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529468#step:7:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 3 - Help Output Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217692#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529468#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217692#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529468#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217692#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529468#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217692#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529468#step:11:1" } ], - "duration_seconds": 0, + "duration_seconds": 1, "failed": 0, "passed": 6, "skipped": 0 @@ -54191,7 +54191,7 @@ "dashboard_link": "/linux/opensource_packages/optipng", "job_url_resolution_status": "central_exact", "package_slug": "optipng", - "production_refreshed_at": "2026-05-14T19:37:17.406673+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.617873+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -54203,15 +54203,15 @@ }, "run": { "attempt": "1", - "id": "25877427741", + "id": "26658731236", "job_name": "test-optipng / test-optipng", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:05Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218850" + "timestamp": "2026-05-29T19:49:11Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529809" }, "schema_version": "2.0", "tests": { @@ -54220,37 +54220,37 @@ "duration_seconds": 0, "name": "Test 1 - Check binary existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218850#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529809#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Run Version Command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218850#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529809#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Run Help Command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218850#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529809#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218850#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529809#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218850#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529809#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218850#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529809#step:11:1" } ], "duration_seconds": 0, @@ -54268,7 +54268,7 @@ "dashboard_link": "/linux/opensource_packages/optuna", "job_url_resolution_status": "central_exact", "package_slug": "optuna", - "production_refreshed_at": "2026-05-14T19:37:17.406894+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.618049+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -54282,15 +54282,15 @@ }, "run": { "attempt": "1", - "id": "25877431862", + "id": "26658734615", "job_name": "test-optuna / test-optuna", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:22Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265966" + "timestamp": "2026-05-29T19:49:17Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538496" }, "schema_version": "2.0", "tests": { @@ -54299,46 +54299,46 @@ "duration_seconds": 0, "name": "Test 1 - Package installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265966#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538496#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Version metadata matches baseline", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265966#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538496#step:8:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 3 - Installed files metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265966#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538496#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265966#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538496#step:10:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265966#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538496#step:11:1" }, { "comparison": "Current pinned package version 0.0.1 passed smoke tests in this run, and the newer stable PyPI candidate 0.4.0 installed successfully on Arm64.", "current_version": "0.0.1", "decision": "next_install_validated", - "duration_seconds": 20, + "duration_seconds": 21, "latest_version": "0.4.0", "name": "Test 6 - Regression Validation", "next_installed_version": "0.4.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265966#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538496#step:12:1" } ], - "duration_seconds": 21, + "duration_seconds": 22, "failed": 0, "passed": 6, "skipped": 0 @@ -54353,7 +54353,7 @@ "dashboard_link": "/linux/opensource_packages/ord-provider-server", "job_url_resolution_status": "central_exact", "package_slug": "ord-provider-server", - "production_refreshed_at": "2026-05-14T19:37:17.407112+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.618227+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -54367,15 +54367,15 @@ }, "run": { "attempt": "1", - "id": "25877431862", + "id": "26658734615", "job_name": "test-ord-provider-server / test-ord-provider-server", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:22Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265988" + "timestamp": "2026-05-29T19:49:15Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537972" }, "schema_version": "2.0", "tests": { @@ -54384,46 +54384,46 @@ "duration_seconds": 0, "name": "Test 1 - Check package-specific baseline markers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265988#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537972#step:9:1" }, { "duration_seconds": 0, "name": "Test 2 - Check published package metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265988#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537972#step:10:1" }, { "duration_seconds": 0, "name": "Test 3 - Check package-specific docs and manifests", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265988#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537972#step:11:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265988#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537972#step:12:1" }, { - "duration_seconds": 9, + "duration_seconds": 10, "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265988#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537972#step:13:1" }, { "comparison": "Built the next ORD Provider Server Node package and executed its CLI help path on the Arm64 runner. Full HTTP fixture coverage remains in Tests 1-5 for the pinned baseline.", "current_version": "0.7.3", "decision": "limited_cpu_smoke_validated", "duration_seconds": 9, - "latest_version": "1.1.3", + "latest_version": "1.1.4", "name": "Test 6 - Regression Validation", - "next_installed_version": "1.1.3", + "next_installed_version": "1.1.4", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265988#step:14:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537972#step:14:1" } ], - "duration_seconds": 18, + "duration_seconds": 19, "failed": 0, "passed": 6, "skipped": 0 @@ -54438,7 +54438,7 @@ "dashboard_link": "/linux/opensource_packages/oregano", "job_url_resolution_status": "central_exact", "package_slug": "oregano", - "production_refreshed_at": "2026-05-14T19:37:17.407295+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.618435+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -54452,15 +54452,15 @@ }, "run": { "attempt": "1", - "id": "25877431862", + "id": "26658734615", "job_name": "test-oregano / test-oregano", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:22Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048266140" + "timestamp": "2026-05-29T19:49:17Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538114" }, "schema_version": "2.0", "tests": { @@ -54469,31 +54469,31 @@ "duration_seconds": 0, "name": "Test 1 - Check package-specific baseline markers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048266140#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538114#step:8:1" }, { "duration_seconds": 0, "name": "Test 2 - Check published package metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048266140#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538114#step:9:1" }, { "duration_seconds": 0, "name": "Test 3 - Check package-specific docs and manifests", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048266140#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538114#step:10:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048266140#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538114#step:11:1" }, { "duration_seconds": 0, "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048266140#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538114#step:12:1" }, { "comparison": "Parsed the next Oregano schematic assets on Arm64 and executed a GNUcap SPICE backend simulation with v(out)=2.5V. This is a bounded schematic/backend preflight, not a full interactive GTK session.", @@ -54505,7 +54505,7 @@ "next_installed_version": "0.84.43", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048266140#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538114#step:13:1" } ], "duration_seconds": 1, @@ -54523,7 +54523,7 @@ "dashboard_link": "/linux/opensource_packages/orientdb", "job_url_resolution_status": "central_exact", "package_slug": "orientdb", - "production_refreshed_at": "2026-05-14T19:37:17.407497+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.618619+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -54537,15 +54537,15 @@ }, "run": { "attempt": "1", - "id": "25877383844", + "id": "26658692522", "job_name": "test-orientdb / test-orientdb", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:12Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071795" + "timestamp": "2026-05-29T19:48:21Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394892" }, "schema_version": "2.0", "tests": { @@ -54554,31 +54554,31 @@ "duration_seconds": 0, "name": "Test 1 - Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071795#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394892#step:6:1" }, { - "duration_seconds": 2, + "duration_seconds": 1, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071795#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394892#step:7:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 3 - Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071795#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394892#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071795#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394892#step:9:1" }, { - "duration_seconds": 4, + "duration_seconds": 2, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071795#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394892#step:10:1" }, { "comparison": "Current pinned OrientDB version 3.2.39 passed smoke tests in this run. Regression validation downloaded community tarball 3.2.52, and the embedded console reported version 3.2.52 while the help and in-memory database smoke checks passed on Arm64.", @@ -54590,10 +54590,10 @@ "next_installed_version": "3.2.52", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071795#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394892#step:11:1" } ], - "duration_seconds": 11, + "duration_seconds": 7, "failed": 0, "passed": 6, "skipped": 0 @@ -54608,7 +54608,7 @@ "dashboard_link": "/linux/opensource_packages/orionsdk-python", "job_url_resolution_status": "central_exact", "package_slug": "orionsdk-python", - "production_refreshed_at": "2026-05-14T19:37:17.407692+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.618808+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -54620,15 +54620,15 @@ }, "run": { "attempt": "1", - "id": "25877392111", + "id": "26658699892", "job_name": "test-orionsdk-python / test-orionsdk-python", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:21Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096495" + "timestamp": "2026-05-29T19:48:30Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420653" }, "schema_version": "2.0", "tests": { @@ -54637,37 +54637,37 @@ "duration_seconds": 1, "name": "Test 1 - Check Import", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096495#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420653#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Installed Version", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096495#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420653#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Render Class Documentation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096495#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420653#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096495#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420653#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096495#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420653#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096495#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420653#step:11:1" } ], "duration_seconds": 1, @@ -54685,7 +54685,7 @@ "dashboard_link": "/linux/opensource_packages/ory", "job_url_resolution_status": "central_exact", "package_slug": "ory", - "production_refreshed_at": "2026-05-14T19:37:17.407924+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.618979+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -54699,15 +54699,15 @@ }, "run": { "attempt": "1", - "id": "25877383844", + "id": "26658692522", "job_name": "test-ory / test-ory", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:15Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071617" + "timestamp": "2026-05-29T19:48:19Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394305" }, "schema_version": "2.0", "tests": { @@ -54716,31 +54716,31 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071617#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394305#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071617#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394305#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071617#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394305#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071617#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394305#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071617#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394305#step:10:1" }, { "comparison": "Current pinned Ory CLI version 1.1.0 passed smoke tests in this run. Regression validation downloaded the candidate Arm64 artifact from https://github.com/ory/cli/releases/download/v1.2.0/ory_1.2.0-linux_arm64.tar.gz, and the extracted binary reported version 1.2.0 while passing help and completion validation.", @@ -54752,7 +54752,7 @@ "next_installed_version": "1.2.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071617#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394305#step:11:1" } ], "duration_seconds": 1, @@ -54770,7 +54770,7 @@ "dashboard_link": "/linux/opensource_packages/osmo", "job_url_resolution_status": "central_exact", "package_slug": "osmo", - "production_refreshed_at": "2026-05-14T19:37:17.408120+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.619151+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -54784,15 +54784,15 @@ }, "run": { "attempt": "1", - "id": "25877431862", + "id": "26658734615", "job_name": "test-osmo / test-osmo", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:23Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048266017" + "timestamp": "2026-05-29T19:49:17Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538235" }, "schema_version": "2.0", "tests": { @@ -54801,46 +54801,46 @@ "duration_seconds": 0, "name": "Test 1 - Check package-specific baseline markers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048266017#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538235#step:8:1" }, { "duration_seconds": 0, "name": "Test 2 - Check published package metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048266017#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538235#step:9:1" }, { "duration_seconds": 0, "name": "Test 3 - Check package-specific docs and manifests", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048266017#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538235#step:10:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048266017#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538235#step:11:1" }, { "duration_seconds": 3, "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048266017#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538235#step:12:1" }, { "comparison": "Compiled the next OSMO source candidate on the Arm64 runner and parsed bounded YAML workflow/config files. Full distributed GPU/Kubernetes workflow execution remains out of scope.", "current_version": "6.0.0", "decision": "limited_cpu_smoke_validated", - "duration_seconds": 6, + "duration_seconds": 5, "latest_version": "6.3.0", "name": "Test 6 - Regression Validation", "next_installed_version": "6.3.0", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048266017#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538235#step:13:1" } ], - "duration_seconds": 9, + "duration_seconds": 8, "failed": 0, "passed": 6, "skipped": 0 @@ -54855,7 +54855,7 @@ "dashboard_link": "/linux/opensource_packages/ovirt", "job_url_resolution_status": "central_exact", "package_slug": "ovirt", - "production_refreshed_at": "2026-05-14T19:37:17.408325+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.619344+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -54869,15 +54869,15 @@ }, "run": { "attempt": "1", - "id": "25877387746", + "id": "26658696365", "job_name": "test-ovirt / test-ovirt", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:19Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084823" + "timestamp": "2026-05-29T19:48:25Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407877" }, "schema_version": "2.0", "tests": { @@ -54886,31 +54886,31 @@ "duration_seconds": 0, "name": "Test 1 - Check setup script exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084823#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407877#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check setup help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084823#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407877#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check remove helper help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084823#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407877#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084823#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407877#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Check rename helper help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084823#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407877#step:10:1" }, { "comparison": "Current pinned oVirt Engine version 4.5.6 passed smoke tests in this run. Regression validation downloaded candidate release 4.5.7, confirmed the setup/remove/rename helper scripts, and executed all candidate help paths on Arm64. This is not a full oVirt Engine install or cluster runtime validation.", @@ -54922,7 +54922,7 @@ "next_installed_version": "4.5.7", "regression_result": "Limited CPU-side proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084823#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407877#step:11:1" } ], "duration_seconds": 4, @@ -54940,7 +54940,7 @@ "dashboard_link": "/linux/opensource_packages/owncast", "job_url_resolution_status": "central_exact", "package_slug": "owncast", - "production_refreshed_at": "2026-05-14T19:37:17.408517+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.619518+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -54954,15 +54954,15 @@ }, "run": { "attempt": "1", - "id": "25877431862", + "id": "26658734615", "job_name": "test-owncast / test-owncast", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:24Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265956" + "timestamp": "2026-05-29T19:49:16Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538232" }, "schema_version": "2.0", "tests": { @@ -54971,31 +54971,31 @@ "duration_seconds": 0, "name": "Test 1 - Check package-specific baseline markers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265956#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538232#step:8:1" }, { "duration_seconds": 0, "name": "Test 2 - Check published package metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265956#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538232#step:9:1" }, { "duration_seconds": 0, "name": "Test 3 - Check package-specific docs and manifests", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265956#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538232#step:10:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265956#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538232#step:11:1" }, { "duration_seconds": 45, "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265956#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538232#step:12:1" }, { "comparison": "A bounded Arm64 CPU-side source probe validated the next Owncast candidate checkout and module identity. This does not build or run the streaming server.", @@ -55007,7 +55007,7 @@ "next_installed_version": "0.2.5", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265956#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538232#step:13:1" } ], "duration_seconds": 47, @@ -55025,7 +55025,7 @@ "dashboard_link": "/linux/opensource_packages/pachyderm", "job_url_resolution_status": "central_exact", "package_slug": "pachyderm", - "production_refreshed_at": "2026-05-14T19:37:17.408720+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.619702+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -55039,15 +55039,15 @@ }, "run": { "attempt": "1", - "id": "25877406767", + "id": "26658714432", "job_name": "test-pachyderm / test-pachyderm", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:44Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155232" + "timestamp": "2026-05-29T19:48:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469324" }, "schema_version": "2.0", "tests": { @@ -55056,46 +55056,46 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155232#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469324#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155232#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469324#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155232#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469324#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155232#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469324#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155232#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469324#step:10:1" }, { "comparison": "Current pinned Pachyderm CLI version 2.11.5 passed smoke tests in this run. Regression validation downloaded the candidate Arm64 archive from https://github.com/pachyderm/pachyderm/releases/download/v2.11.6/pachctl_2.11.6_linux_arm64.tar.gz, and the extracted binary reported version 2.11.6 while passing help, completion, and config validation.", "current_version": "2.11.5", "decision": "next_install_validated", - "duration_seconds": 2, + "duration_seconds": 1, "latest_version": "2.11.6", "name": "Test 6 - Regression Validation", "next_installed_version": "2.11.6", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155232#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469324#step:11:1" } ], - "duration_seconds": 2, + "duration_seconds": 1, "failed": 0, "passed": 6, "skipped": 0 @@ -55110,7 +55110,7 @@ "dashboard_link": "/linux/opensource_packages/packetbeat", "job_url_resolution_status": "central_exact", "package_slug": "packetbeat", - "production_refreshed_at": "2026-05-14T19:37:17.409047+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.619966+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -55124,15 +55124,15 @@ }, "run": { "attempt": "1", - "id": "25877415436", + "id": "26658721315", "job_name": "test-packetbeat / test-packetbeat", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:50Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179811" + "timestamp": "2026-05-29T19:48:55Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575490883" }, "schema_version": "2.0", "tests": { @@ -55141,46 +55141,46 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179811#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575490883#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179811#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575490883#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179811#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575490883#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179811#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575490883#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179811#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575490883#step:10:1" }, { "comparison": "Current pinned Packetbeat version 9.0.4 passed smoke tests in this run. Regression validation downloaded the candidate Arm64 artifact from https://artifacts.elastic.co/downloads/beats/packetbeat/packetbeat-9.0.5-linux-arm64.tar.gz, and the extracted binary reported version 9.0.5 while passing help and config validation.", "current_version": "9.0.4", "decision": "next_install_validated", - "duration_seconds": 5, + "duration_seconds": 2, "latest_version": "9.0.5", "name": "Test 6 - Regression Validation", "next_installed_version": "9.0.5", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179811#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575490883#step:11:1" } ], - "duration_seconds": 5, + "duration_seconds": 2, "failed": 0, "passed": 6, "skipped": 0 @@ -55195,7 +55195,7 @@ "dashboard_link": "/linux/opensource_packages/paddlelite", "job_url_resolution_status": "central_exact", "package_slug": "paddlelite", - "production_refreshed_at": "2026-05-14T19:37:17.409255+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.620157+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -55209,15 +55209,15 @@ }, "run": { "attempt": "1", - "id": "25877403044", + "id": "26658710721", "job_name": "test-paddlelite / test-paddlelite", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:37Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140898" + "timestamp": "2026-05-29T19:48:45Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456355" }, "schema_version": "2.0", "tests": { @@ -55226,31 +55226,31 @@ "duration_seconds": 0, "name": "Test 1 - Check headers exist", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140898#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456355#step:6:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 2 - Check Arm64 shared library exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140898#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456355#step:7:1" }, { - "duration_seconds": 2, + "duration_seconds": 3, "name": "Test 3 - Compile smoke program", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140898#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456355#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140898#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456355#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140898#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456355#step:10:1" }, { "comparison": "Current pinned Paddle-Lite release 2.11 passed smoke tests in this run. Regression validation installed the official Linux Arm64 archive for candidate release 2.12, verified the shared library is AArch64, and compiled plus ran a real C++ smoke program against the candidate library. Paddle-Lite does not expose a standalone Linux version banner for this archive, so the installed version is tracked from the validated release asset.", @@ -55262,10 +55262,10 @@ "next_installed_version": "2.12", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140898#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456355#step:11:1" } ], - "duration_seconds": 3, + "duration_seconds": 4, "failed": 0, "passed": 6, "skipped": 0 @@ -55280,7 +55280,7 @@ "dashboard_link": "/linux/opensource_packages/pandas", "job_url_resolution_status": "central_exact", "package_slug": "pandas", - "production_refreshed_at": "2026-05-14T19:37:17.409449+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.620363+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -55292,57 +55292,57 @@ }, "run": { "attempt": "1", - "id": "25877415436", + "id": "26658721315", "job_name": "test-pandas / test-pandas", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:50Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181008" + "timestamp": "2026-05-29T19:48:56Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491529" }, "schema_version": "2.0", "tests": { "details": [ { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 1 - Check Import", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181008#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491529#step:6:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181008#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491529#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Module Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181008#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491529#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181008#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491529#step:9:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181008#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491529#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181008#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491529#step:11:1" } ], - "duration_seconds": 2, + "duration_seconds": 1, "failed": 0, "passed": 6, "skipped": 0 @@ -55357,7 +55357,7 @@ "dashboard_link": "/linux/opensource_packages/pants", "job_url_resolution_status": "central_exact", "package_slug": "pants", - "production_refreshed_at": "2026-05-14T19:37:17.409647+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.620550+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -55369,15 +55369,15 @@ }, "run": { "attempt": "1", - "id": "25877403044", + "id": "26658710721", "job_name": "test-pants / test-pants", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:36Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140040" + "timestamp": "2026-05-29T19:48:44Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455444" }, "schema_version": "2.0", "tests": { @@ -55386,37 +55386,37 @@ "duration_seconds": 0, "name": "Test 1 - Check Pants binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140040#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455444#step:6:1" }, { "duration_seconds": 1, "name": "Test 2 - Check version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140040#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455444#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140040#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455444#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140040#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455444#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140040#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455444#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140040#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455444#step:11:1" } ], "duration_seconds": 1, @@ -55434,7 +55434,7 @@ "dashboard_link": "/linux/opensource_packages/paraview", "job_url_resolution_status": "central_exact", "package_slug": "paraview", - "production_refreshed_at": "2026-05-14T19:37:17.409882+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.620722+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -55446,15 +55446,15 @@ }, "run": { "attempt": "1", - "id": "25877427741", + "id": "26658731236", "job_name": "test-paraview / test-paraview", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:08Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218836" + "timestamp": "2026-05-29T19:49:11Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529766" }, "schema_version": "2.0", "tests": { @@ -55463,40 +55463,40 @@ "duration_seconds": 0, "name": "Test 1 - Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218836#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529766#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218836#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529766#step:7:1" }, { "duration_seconds": 1, "name": "Test 3 - Help Output Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218836#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529766#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218836#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529766#step:9:1" }, { - "duration_seconds": 2, + "duration_seconds": 1, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218836#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529766#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218836#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529766#step:11:1" } ], - "duration_seconds": 3, + "duration_seconds": 2, "failed": 0, "passed": 6, "skipped": 0 @@ -55511,7 +55511,7 @@ "dashboard_link": "/linux/opensource_packages/parquet", "job_url_resolution_status": "central_exact", "package_slug": "parquet", - "production_refreshed_at": "2026-05-14T19:37:17.410074+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.620887+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -55523,15 +55523,15 @@ }, "run": { "attempt": "1", - "id": "25877427741", + "id": "26658731236", "job_name": "test-parquet / test-parquet", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:08Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217543" + "timestamp": "2026-05-29T19:49:11Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575528443" }, "schema_version": "2.0", "tests": { @@ -55540,40 +55540,40 @@ "duration_seconds": 0, "name": "Test 1 - Check parquet-tools binary", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217543#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575528443#step:6:1" }, { - "duration_seconds": 2, + "duration_seconds": 3, "name": "Test 2 - Check parquet-tools help", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217543#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575528443#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check python import (optional)", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217543#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575528443#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217543#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575528443#step:9:1" }, { "duration_seconds": 1, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217543#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575528443#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217543#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575528443#step:11:1" } ], - "duration_seconds": 2, + "duration_seconds": 3, "failed": 0, "passed": 6, "skipped": 0 @@ -55588,7 +55588,7 @@ "dashboard_link": "/linux/opensource_packages/pcb-rnd", "job_url_resolution_status": "central_exact", "package_slug": "pcb-rnd", - "production_refreshed_at": "2026-05-14T19:37:17.410297+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.621074+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -55600,15 +55600,15 @@ }, "run": { "attempt": "1", - "id": "25877431862", + "id": "26658734615", "job_name": "test-pcb-rnd / test-pcb-rnd", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:21Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265925" + "timestamp": "2026-05-29T19:49:17Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538162" }, "schema_version": "2.0", "tests": { @@ -55617,40 +55617,40 @@ "duration_seconds": 0, "name": "Test 1 - Package-manager install evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265925#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538162#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Installed Arm64 package metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265925#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538162#step:7:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 3 - CLI version starts on Arm", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265925#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538162#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Arm64 runner gate", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265925#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538162#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Headless runtime smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265925#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538162#step:10:1" }, { "duration_seconds": 0, "name": "Test 6 - Regression validation applicability", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265925#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538162#step:11:1" } ], - "duration_seconds": 1, + "duration_seconds": 0, "failed": 0, "passed": 6, "skipped": 0 @@ -55665,7 +55665,7 @@ "dashboard_link": "/linux/opensource_packages/pcre", "job_url_resolution_status": "central_exact", "package_slug": "pcre", - "production_refreshed_at": "2026-05-14T19:37:17.410514+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.621265+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -55677,15 +55677,15 @@ }, "run": { "attempt": "1", - "id": "25877359516", + "id": "26658670904", "job_name": "test-pcre / test-pcre", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:43Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991483" + "timestamp": "2026-05-29T19:47:52Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321752" }, "schema_version": "2.0", "tests": { @@ -55694,37 +55694,37 @@ "duration_seconds": 0, "name": "Test 1 - Check binary existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991483#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321752#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Run Regex Match", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991483#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321752#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Run Regex No Match", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991483#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321752#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991483#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321752#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991483#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321752#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991483#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321752#step:11:1" } ], "duration_seconds": 0, @@ -55742,7 +55742,7 @@ "dashboard_link": "/linux/opensource_packages/percona", "job_url_resolution_status": "central_exact", "package_slug": "percona", - "production_refreshed_at": "2026-05-14T19:37:17.410738+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.621456+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -55754,15 +55754,15 @@ }, "run": { "attempt": "1", - "id": "25877379982", + "id": "26658688675", "job_name": "test-percona / test-percona", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:07Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057193" + "timestamp": "2026-05-29T19:48:15Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380849" }, "schema_version": "2.0", "tests": { @@ -55771,40 +55771,40 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057193#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380849#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057193#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380849#step:7:1" }, { "duration_seconds": 1, "name": "Test 3 - Check Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057193#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380849#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057193#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380849#step:9:1" }, { - "duration_seconds": 15, + "duration_seconds": 17, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057193#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380849#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057193#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380849#step:11:1" } ], - "duration_seconds": 16, + "duration_seconds": 17, "failed": 0, "passed": 6, "skipped": 0 @@ -55819,7 +55819,7 @@ "dashboard_link": "/linux/opensource_packages/perf", "job_url_resolution_status": "central_exact", "package_slug": "perf", - "production_refreshed_at": "2026-05-14T19:37:17.410970+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.621646+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -55833,15 +55833,15 @@ }, "run": { "attempt": "1", - "id": "25877375677", + "id": "26658685142", "job_name": "test-perf / test-perf", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:01Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043649" + "timestamp": "2026-05-29T19:48:10Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369853" }, "schema_version": "2.0", "tests": { @@ -55850,43 +55850,43 @@ "duration_seconds": 0, "name": "Test 1 - Check perf binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043649#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369853#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043649#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369853#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043649#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369853#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043649#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369853#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043649#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369853#step:10:1" }, { - "comparison": "Current pinned perf version 6.2.16 passed smoke tests in this run. Regression validation built candidate version 7.0.7 on Arm64, and the candidate perf binary reported version 7.0.7 while help and event-list validation succeeded.", + "comparison": "Current pinned perf version 6.2.16 passed smoke tests in this run. Regression validation built candidate version 7.0.10 on Arm64, and the candidate perf binary reported version 7.0.10 while help and event-list validation succeeded.", "current_version": "6.2.16", "decision": "next_install_validated", "duration_seconds": 51, - "latest_version": "7.0.7", + "latest_version": "7.0.10", "name": "Test 6 - Regression Validation", - "next_installed_version": "7.0.7", + "next_installed_version": "7.0.10", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043649#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369853#step:11:1" } ], "duration_seconds": 51, @@ -55904,7 +55904,7 @@ "dashboard_link": "/linux/opensource_packages/perl", "job_url_resolution_status": "central_exact", "package_slug": "perl", - "production_refreshed_at": "2026-05-14T19:37:17.411179+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.621833+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -55916,15 +55916,15 @@ }, "run": { "attempt": "1", - "id": "25877419588", + "id": "26658724696", "job_name": "test-perl / test-perl", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:57Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192279" + "timestamp": "2026-05-29T19:49:02Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504178" }, "schema_version": "2.0", "tests": { @@ -55933,37 +55933,37 @@ "duration_seconds": 0, "name": "Test 1 - Check binary existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192279#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504178#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Run Simple Script", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192279#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504178#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Module Loading", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192279#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504178#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192279#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504178#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192279#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504178#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192279#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504178#step:11:1" } ], "duration_seconds": 0, @@ -55981,7 +55981,7 @@ "dashboard_link": "/linux/opensource_packages/phoronix_test_suite", "job_url_resolution_status": "central_exact", "package_slug": "phoronix_test_suite", - "production_refreshed_at": "2026-05-14T19:37:17.411386+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.622018+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -55995,15 +55995,15 @@ }, "run": { "attempt": "1", - "id": "25877379982", + "id": "26658688675", "job_name": "test-phoronix_test_suite / test-phoronix_test_suite", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:05Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057323" + "timestamp": "2026-05-29T19:48:14Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380553" }, "schema_version": "2.0", "tests": { @@ -56012,31 +56012,31 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057323#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380553#step:6:1" }, { - "duration_seconds": 1, + "duration_seconds": 2, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057323#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380553#step:7:1" }, { "duration_seconds": 1, "name": "Test 3 - Check Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057323#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380553#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057323#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380553#step:9:1" }, { - "duration_seconds": 23, + "duration_seconds": 11, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057323#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380553#step:10:1" }, { "comparison": "Current pinned Phoronix Test Suite version 10.8.3 passed smoke tests in this run. Regression validation installed candidate version 10.8.4 on Arm64, and the isolated candidate install reported version 10.8.4 while system-info remained functional.", @@ -56048,10 +56048,10 @@ "next_installed_version": "10.8.4", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057323#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380553#step:11:1" } ], - "duration_seconds": 29, + "duration_seconds": 18, "failed": 0, "passed": 6, "skipped": 0 @@ -56066,7 +56066,7 @@ "dashboard_link": "/linux/opensource_packages/php", "job_url_resolution_status": "central_exact", "package_slug": "php", - "production_refreshed_at": "2026-05-14T19:37:17.411581+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.622200+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -56078,15 +56078,15 @@ }, "run": { "attempt": "1", - "id": "25877379982", + "id": "26658688675", "job_name": "test-php / test-php", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:05Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057317" + "timestamp": "2026-05-29T19:48:15Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380788" }, "schema_version": "2.0", "tests": { @@ -56095,37 +56095,37 @@ "duration_seconds": 0, "name": "Test 1 - Check binary existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057317#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380788#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Run Simple Script", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057317#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380788#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Modules", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057317#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380788#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057317#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380788#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057317#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380788#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057317#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380788#step:11:1" } ], "duration_seconds": 0, @@ -56143,7 +56143,7 @@ "dashboard_link": "/linux/opensource_packages/physics-nemo", "job_url_resolution_status": "central_exact", "package_slug": "physics-nemo", - "production_refreshed_at": "2026-05-14T19:37:17.411773+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.622407+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -56157,15 +56157,15 @@ }, "run": { "attempt": "1", - "id": "25877431862", + "id": "26658734615", "job_name": "test-physics-nemo / test-physics-nemo", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:22Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265654" + "timestamp": "2026-05-29T19:49:16Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538276" }, "schema_version": "2.0", "tests": { @@ -56174,46 +56174,46 @@ "duration_seconds": 0, "name": "Test 1 - Check package-specific baseline markers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265654#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538276#step:8:1" }, { "duration_seconds": 0, "name": "Test 2 - Check published package metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265654#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538276#step:9:1" }, { "duration_seconds": 0, "name": "Test 3 - Check package-specific docs and manifests", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265654#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538276#step:10:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265654#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538276#step:11:1" }, { "duration_seconds": 0, "name": "Test 5 - Run scoped Arm preflight proof", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265654#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538276#step:12:1" }, { "comparison": "Test 6 limited_cpu_smoke_validated: reran the same bounded scoped Arm source/compile/import/help/manifest preflight against the next stable candidate. This is CPU-side preflight evidence only; no GPU/CUDA driver/runtime, accelerator execution, Kubernetes cluster, or full product runtime is claimed.", "current_version": "0.3.0", "decision": "limited_cpu_smoke_validated", - "duration_seconds": 5, - "latest_version": "2.0.0", + "duration_seconds": 6, + "latest_version": "2.1.0", "name": "Test 6 - Regression Validation", - "next_installed_version": "2.0.0", + "next_installed_version": "2.1.0", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265654#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538276#step:13:1" } ], - "duration_seconds": 5, + "duration_seconds": 6, "failed": 0, "passed": 6, "skipped": 0 @@ -56228,7 +56228,7 @@ "dashboard_link": "/linux/opensource_packages/picassoJS", "job_url_resolution_status": "central_exact", "package_slug": "picassoJS", - "production_refreshed_at": "2026-05-14T19:37:17.411998+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.622598+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -56242,15 +56242,15 @@ }, "run": { "attempt": "1", - "id": "25877419588", + "id": "26658724696", "job_name": "test-picassojs / test-picassojs", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:05Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192614" + "timestamp": "2026-05-29T19:49:06Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504133" }, "schema_version": "2.0", "tests": { @@ -56259,46 +56259,46 @@ "duration_seconds": 0, "name": "Test 1 - Check package installation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192614#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504133#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192614#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504133#step:8:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 3 - Check npm dependency resolution", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192614#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504133#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192614#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504133#step:10:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192614#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504133#step:11:1" }, { "comparison": "Baseline Picasso.js 0.5.1 imported successfully. Test 6 installed candidate 0.5.2 and validated the chart API on Arm64.", "current_version": "0.5.1", "decision": "next_install_validated", - "duration_seconds": 2, + "duration_seconds": 1, "latest_version": "0.5.2", "name": "Test 6 - Regression Validation", "next_installed_version": "0.5.2", "regression_result": "Next version installed and imported successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192614#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504133#step:12:1" } ], - "duration_seconds": 3, + "duration_seconds": 2, "failed": 0, "passed": 6, "skipped": 0 @@ -56313,7 +56313,7 @@ "dashboard_link": "/linux/opensource_packages/pigz", "job_url_resolution_status": "central_exact", "package_slug": "pigz", - "production_refreshed_at": "2026-05-14T19:37:17.412180+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.622783+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -56325,15 +56325,15 @@ }, "run": { "attempt": "1", - "id": "25877363365", + "id": "26658674448", "job_name": "test-pigz / test-pigz", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:47Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000928" + "timestamp": "2026-05-29T19:47:57Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334431" }, "schema_version": "2.0", "tests": { @@ -56342,37 +56342,37 @@ "duration_seconds": 0, "name": "Test 1 - Check binary existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000928#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334431#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000928#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334431#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Functional Test (Compress/Decompress)", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000928#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334431#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000928#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334431#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000928#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334431#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000928#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334431#step:11:1" } ], "duration_seconds": 0, @@ -56390,7 +56390,7 @@ "dashboard_link": "/linux/opensource_packages/pilon", "job_url_resolution_status": "central_exact", "package_slug": "pilon", - "production_refreshed_at": "2026-05-14T19:37:17.412401+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.622964+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -56404,15 +56404,15 @@ }, "run": { "attempt": "1", - "id": "25877423406", + "id": "26658727918", "job_name": "test-pilon / test-pilon", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:01Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209899" + "timestamp": "2026-05-29T19:49:05Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515040" }, "schema_version": "2.0", "tests": { @@ -56421,31 +56421,31 @@ "duration_seconds": 0, "name": "Test 1 - Check Pilon JAR exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209899#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515040#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209899#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515040#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209899#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515040#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209899#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515040#step:9:1" }, { "duration_seconds": 1, "name": "Test 5 - Functional validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209899#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515040#step:10:1" }, { "comparison": "Current pinned Pilon version 1.23 passed smoke tests in this run. Regression validation installed candidate version 1.24 on Arm64, and the candidate JAR reported version 1.24 in both runtime help output and manifest metadata.", @@ -56457,7 +56457,7 @@ "next_installed_version": "1.24", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209899#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515040#step:11:1" } ], "duration_seconds": 1, @@ -56475,7 +56475,7 @@ "dashboard_link": "/linux/opensource_packages/pinot", "job_url_resolution_status": "central_exact", "package_slug": "pinot", - "production_refreshed_at": "2026-05-14T19:37:17.412580+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.623147+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -56489,15 +56489,15 @@ }, "run": { "attempt": "1", - "id": "25877359516", + "id": "26658670904", "job_name": "test-pinot / test-pinot", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:56Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991618" + "timestamp": "2026-05-29T19:48:05Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321439" }, "schema_version": "2.0", "tests": { @@ -56506,46 +56506,46 @@ "duration_seconds": 1, "name": "Test 1 - Check Pinot admin launcher exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991618#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321439#step:11:1" }, { "duration_seconds": 0, "name": "Test 2 - Check exact release version", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991618#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321439#step:12:1" }, { - "duration_seconds": 5, + "duration_seconds": 6, "name": "Test 3 - Check Pinot quickstart admin path", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991618#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321439#step:13:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991618#step:14:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321439#step:14:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 5 - Functional validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991618#step:15:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321439#step:15:1" }, { "comparison": "Current pinned Pinot version 1.2.0 passed smoke tests in this run. Regression validation downloaded candidate archive 1.3.0 on Arm64 from apache_binary_archive, and the extracted distribution path plus bounded QuickStart and AddTable help/admin paths validated candidate version 1.3.0.", "current_version": "1.2.0", "decision": "next_install_validated", - "duration_seconds": 1336, + "duration_seconds": 383, "latest_version": "1.3.0", "name": "Test 6 - Regression Validation", "next_installed_version": "1.3.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991618#step:16:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321439#step:16:1" } ], - "duration_seconds": 1342, + "duration_seconds": 389, "failed": 0, "passed": 6, "skipped": 0 @@ -56560,7 +56560,7 @@ "dashboard_link": "/linux/opensource_packages/platform-mesh-operator", "job_url_resolution_status": "central_exact", "package_slug": "platform-mesh-operator", - "production_refreshed_at": "2026-05-14T19:37:17.412767+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.623357+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -56574,15 +56574,15 @@ }, "run": { "attempt": "1", - "id": "25877435852", + "id": "26658737633", "job_name": "test-platform-mesh-operator / test-platform-mesh-operator", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:16Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251996" + "timestamp": "2026-05-29T19:49:22Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550075" }, "schema_version": "2.0", "tests": { @@ -56591,31 +56591,31 @@ "duration_seconds": 0, "name": "Test 1 - Download baseline source tag", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251996#step:5:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550075#step:5:1" }, { "duration_seconds": 0, "name": "Test 2 - Verify expected source layout", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251996#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550075#step:6:1" }, { "duration_seconds": 0, "name": "Test 3 - Validate Arm64 image manifest", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251996#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550075#step:7:1" }, { "duration_seconds": 0, "name": "Test 4 - Pull baseline Arm64 image", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251996#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550075#step:8:1" }, { "duration_seconds": 0, "name": "Test 5 - Inspect baseline image on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251996#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550075#step:9:1" }, { "comparison": "Platform Mesh Operator candidate image(s) expose linux/arm64 manifests and pull successfully.", @@ -56627,7 +56627,7 @@ "next_installed_version": "0.72.14", "regression_result": "Next image validation passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251996#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550075#step:10:1" } ], "duration_seconds": 13, @@ -56645,7 +56645,7 @@ "dashboard_link": "/linux/opensource_packages/playit", "job_url_resolution_status": "central_exact", "package_slug": "playit", - "production_refreshed_at": "2026-05-14T19:37:17.412999+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.623535+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -56659,15 +56659,15 @@ }, "run": { "attempt": "1", - "id": "25877431862", + "id": "26658734615", "job_name": "test-playit / test-playit", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:22Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265842" + "timestamp": "2026-05-29T19:49:13Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538035" }, "schema_version": "2.0", "tests": { @@ -56676,31 +56676,31 @@ "duration_seconds": 0, "name": "Test 1 - Check package-specific baseline markers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265842#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538035#step:8:1" }, { "duration_seconds": 0, "name": "Test 2 - Check published package metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265842#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538035#step:9:1" }, { "duration_seconds": 0, "name": "Test 3 - Check package-specific docs and manifests", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265842#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538035#step:10:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265842#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538035#step:11:1" }, { "duration_seconds": 1, "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265842#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538035#step:12:1" }, { "comparison": "Test 6 reran the scoped Playit Arm preflight against the next stable source tag: Rust workspace metadata, binary build, executable architecture check, and help/version smoke. Account auth, tunnel creation, and external traffic remain out of scope.", @@ -56712,7 +56712,7 @@ "next_installed_version": "0.17.1", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265842#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538035#step:13:1" } ], "duration_seconds": 48, @@ -56730,7 +56730,7 @@ "dashboard_link": "/linux/opensource_packages/playwright", "job_url_resolution_status": "central_exact", "package_slug": "playwright", - "production_refreshed_at": "2026-05-14T19:37:17.413199+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.623705+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -56744,15 +56744,15 @@ }, "run": { "attempt": "1", - "id": "25877431862", + "id": "26658734615", "job_name": "test-playwright / test-playwright", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:24Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265909" + "timestamp": "2026-05-29T19:49:16Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538153" }, "schema_version": "2.0", "tests": { @@ -56761,46 +56761,46 @@ "duration_seconds": 0, "name": "Test 1 - Check package-specific baseline markers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265909#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538153#step:8:1" }, { "duration_seconds": 0, "name": "Test 2 - Check published package metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265909#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538153#step:9:1" }, { "duration_seconds": 0, "name": "Test 3 - Check package-specific docs and manifests", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265909#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538153#step:10:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265909#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538153#step:11:1" }, { - "duration_seconds": 125, + "duration_seconds": 117, "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265909#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538153#step:12:1" }, { "comparison": "A bounded Arm64 CPU-side source probe validated the next Playwright candidate checkout and package metadata. This does not install browser dependencies or run browser tests.", "current_version": "1.17.0", "decision": "limited_cpu_smoke_validated", - "duration_seconds": 5, + "duration_seconds": 2, "latest_version": "1.60.0", "name": "Test 6 - Regression Validation", "next_installed_version": "1.60.0", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265909#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538153#step:13:1" } ], - "duration_seconds": 5, + "duration_seconds": 2, "failed": 0, "passed": 6, "skipped": 0 @@ -56815,7 +56815,7 @@ "dashboard_link": "/linux/opensource_packages/plink", "job_url_resolution_status": "central_exact", "package_slug": "plink", - "production_refreshed_at": "2026-05-14T19:37:17.413399+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.623875+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -56827,57 +56827,57 @@ }, "run": { "attempt": "1", - "id": "25877392111", + "id": "26658699892", "job_name": "test-plink / test-plink", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:22Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096724" + "timestamp": "2026-05-29T19:48:30Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421139" }, "schema_version": "2.0", "tests": { "details": [ { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 1 - Check package import exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096724#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421139#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check exact release version", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096724#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421139#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check package metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096724#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421139#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096724#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421139#step:9:1" }, { - "duration_seconds": 0, + "duration_seconds": 3, "name": "Test 5 - Functional validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096724#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421139#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096724#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421139#step:11:1" } ], - "duration_seconds": 1, + "duration_seconds": 3, "failed": 0, "passed": 6, "skipped": 0 @@ -56892,7 +56892,7 @@ "dashboard_link": "/linux/opensource_packages/pmdk", "job_url_resolution_status": "central_exact", "package_slug": "pmdk", - "production_refreshed_at": "2026-05-14T19:37:17.413576+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.624044+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "no_newer_stable_available", @@ -56906,15 +56906,15 @@ }, "run": { "attempt": "1", - "id": "25877423406", + "id": "26658727918", "job_name": "test-pmdk / test-pmdk", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:06Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209591" + "timestamp": "2026-05-29T19:49:05Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515910" }, "schema_version": "2.0", "tests": { @@ -56923,31 +56923,31 @@ "duration_seconds": 0, "name": "Test 1 - Check pmempool utility exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209591#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515910#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check exact release version", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209591#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515910#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check pmempool help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209591#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515910#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209591#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515910#step:9:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 5 - Functional validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209591#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515910#step:10:1" }, { "comparison": "Current pinned PMDK version 2.1.1 already matches the newest public stable PMDK release. Tests 1-5 validate the real Arm64 source-build and libpmem persistence fixture, but there is no newer stable upstream candidate for a genuine Test 6 upgrade check.", @@ -56959,10 +56959,10 @@ "next_installed_version": "not_installed", "regression_result": "No newer stable release available for Test 6", "status": "skipped", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209591#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515910#step:11:1" } ], - "duration_seconds": 0, + "duration_seconds": 1, "failed": 0, "passed": 5, "skipped": 1 @@ -56977,7 +56977,7 @@ "dashboard_link": "/linux/opensource_packages/podman", "job_url_resolution_status": "central_exact", "package_slug": "podman", - "production_refreshed_at": "2026-05-14T19:37:17.414127+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.624531+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -56991,15 +56991,15 @@ }, "run": { "attempt": "1", - "id": "25877435852", + "id": "26658737633", "job_name": "test-podman / test-podman", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:20Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251985" + "timestamp": "2026-05-29T19:49:20Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550294" }, "schema_version": "2.0", "tests": { @@ -57008,31 +57008,31 @@ "duration_seconds": 0, "name": "Test 1 - Install Podman Arm64 remote client", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251985#step:5:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550294#step:5:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Podman version", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251985#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550294#step:6:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 3 - Check Podman help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251985#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550294#step:7:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify Arm64 binary", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251985#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550294#step:8:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 5 - Run bounded client command smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251985#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550294#step:9:1" }, { "comparison": "Podman candidate 5.8.2 downloaded, installed, and returned help/version output on the Arm64 runner.", @@ -57044,7 +57044,7 @@ "next_installed_version": "5.8.2", "regression_result": "Next version install validation passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251985#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550294#step:10:1" } ], "duration_seconds": 2, @@ -57062,7 +57062,7 @@ "dashboard_link": "/linux/opensource_packages/podman-compose", "job_url_resolution_status": "central_exact", "package_slug": "podman-compose", - "production_refreshed_at": "2026-05-14T19:37:17.413895+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.624345+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -57076,15 +57076,15 @@ }, "run": { "attempt": "1", - "id": "25877435852", + "id": "26658737633", "job_name": "test-podman-compose / test-podman-compose", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:18Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252018" + "timestamp": "2026-05-29T19:49:21Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550158" }, "schema_version": "2.0", "tests": { @@ -57093,31 +57093,31 @@ "duration_seconds": 0, "name": "Test 1 - Install Podman Compose Python package", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252018#step:5:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550158#step:5:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Podman Compose version", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252018#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550158#step:6:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Podman Compose help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252018#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550158#step:7:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify dependencies on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252018#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550158#step:8:1" }, { "duration_seconds": 0, "name": "Test 5 - Render dry-run Compose config", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252018#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550158#step:9:1" }, { "comparison": "Baseline Podman Compose 1.4.1 passed Tests 1-5, and PyPI latest 1.5.0 installed on the Arm64 runner with the Podman CLI dependency, reported the expected version/help output, passed dependency checks, and rendered the same dry-run Compose config.", @@ -57129,7 +57129,7 @@ "next_installed_version": "1.5.0", "regression_result": "Next Podman Compose version installed and passed bounded Arm64 dry-run validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252018#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550158#step:10:1" } ], "duration_seconds": 12, @@ -57147,7 +57147,7 @@ "dashboard_link": "/linux/opensource_packages/popins2", "job_url_resolution_status": "central_exact", "package_slug": "popins2", - "production_refreshed_at": "2026-05-14T19:37:17.414331+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.624725+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "no_newer_stable_available", @@ -57161,15 +57161,15 @@ }, "run": { "attempt": "1", - "id": "25877395502", + "id": "26658703674", "job_name": "test-popins2 / test-popins2", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:25Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109707" + "timestamp": "2026-05-29T19:48:33Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432196" }, "schema_version": "2.0", "tests": { @@ -57178,31 +57178,31 @@ "duration_seconds": 0, "name": "Test 1 - Check binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109707#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432196#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check exact release provenance", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109707#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432196#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109707#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432196#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109707#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432196#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109707#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432196#step:10:1" }, { "comparison": "Current pinned baseline already matches the newest public stable upstream release, so there is no newer stable Arm64 candidate for a genuine Test 6 upgrade check.", @@ -57214,7 +57214,7 @@ "next_installed_version": "0.13.0", "regression_result": "No newer stable release available for Test 6", "status": "skipped", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109707#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432196#step:11:1" } ], "duration_seconds": 0, @@ -57232,7 +57232,7 @@ "dashboard_link": "/linux/opensource_packages/porting_advisor", "job_url_resolution_status": "central_exact", "package_slug": "porting_advisor", - "production_refreshed_at": "2026-05-14T19:37:17.414524+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.624911+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -57246,15 +57246,15 @@ }, "run": { "attempt": "1", - "id": "25877383844", + "id": "26658692522", "job_name": "test-porting_advisor / test-porting_advisor", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:12Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071837" + "timestamp": "2026-05-29T19:48:20Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394683" }, "schema_version": "2.0", "tests": { @@ -57263,31 +57263,31 @@ "duration_seconds": 0, "name": "Test 1 - Check binary existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071837#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394683#step:6:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 2 - Check version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071837#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394683#step:7:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071837#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394683#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071837#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394683#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071837#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394683#step:10:1" }, { "comparison": "Current pinned Porting Advisor version 1.4 passed smoke tests in this run. Regression validation installed candidate version 1.4.1 on Arm64, and the candidate reported version 1.4.1 while passing a real sample analysis.", @@ -57299,7 +57299,7 @@ "next_installed_version": "1.4.1", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071837#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394683#step:11:1" } ], "duration_seconds": 8, @@ -57317,7 +57317,7 @@ "dashboard_link": "/linux/opensource_packages/postgis", "job_url_resolution_status": "central_exact", "package_slug": "postgis", - "production_refreshed_at": "2026-05-14T19:37:17.414738+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.625105+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -57329,15 +57329,15 @@ }, "run": { "attempt": "1", - "id": "25877379982", + "id": "26658688675", "job_name": "test-postgis / test-postgis", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:08Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057476" + "timestamp": "2026-05-29T19:48:16Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380765" }, "schema_version": "2.0", "tests": { @@ -57346,40 +57346,40 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057476#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380765#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057476#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380765#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057476#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380765#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057476#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380765#step:9:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057476#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380765#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057476#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380765#step:11:1" } ], - "duration_seconds": 1, + "duration_seconds": 0, "failed": 0, "passed": 6, "skipped": 0 @@ -57394,7 +57394,7 @@ "dashboard_link": "/linux/opensource_packages/postgres", "job_url_resolution_status": "central_exact", "package_slug": "postgres", - "production_refreshed_at": "2026-05-14T19:37:17.414962+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.625318+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -57402,19 +57402,19 @@ }, "package": { "name": "PostgreSQL", - "version": "16.13" + "version": "16.14" }, "run": { "attempt": "1", - "id": "25877355625", + "id": "26658667828", "job_name": "test-postgres / test-postgres", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:37Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976533" + "timestamp": "2026-05-29T19:47:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308777" }, "schema_version": "2.0", "tests": { @@ -57423,40 +57423,40 @@ "duration_seconds": 0, "name": "Test 1 - Check client and server binaries", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976533#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308777#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976533#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308777#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976533#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308777#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify architecture", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976533#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308777#step:9:1" }, { - "duration_seconds": 2, + "duration_seconds": 3, "name": "Test 5 - Functional start and query", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976533#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308777#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976533#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308777#step:11:1" } ], - "duration_seconds": 2, + "duration_seconds": 3, "failed": 0, "passed": 6, "skipped": 0 @@ -57471,7 +57471,7 @@ "dashboard_link": "/linux/opensource_packages/postman", "job_url_resolution_status": "central_exact", "package_slug": "postman", - "production_refreshed_at": "2026-05-14T19:37:17.415167+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.625502+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -57485,15 +57485,15 @@ }, "run": { "attempt": "1", - "id": "25877415436", + "id": "26658721315", "job_name": "test-postman / test-postman", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:50Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180518" + "timestamp": "2026-05-29T19:48:56Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491631" }, "schema_version": "2.0", "tests": { @@ -57502,43 +57502,43 @@ "duration_seconds": 0, "name": "Test 1 - Check binary existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180518#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491631#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180518#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491631#step:7:1" }, { "duration_seconds": 20, "name": "Test 3 - Check boot log startup signal", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180518#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491631#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180518#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491631#step:9:1" }, { "duration_seconds": 25, "name": "Test 5 - Functional validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180518#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491631#step:10:1" }, { - "comparison": "Current pinned Postman version 11.71.7 passed smoke tests in this run. Regression validation downloaded the latest Arm64 tarball, extracted candidate version 12.10.5, and confirmed a real bounded startup on Arm64.", + "comparison": "Current pinned Postman version 11.71.7 passed smoke tests in this run. Regression validation downloaded the latest Arm64 tarball, extracted candidate version 12.12.6, and confirmed a real bounded startup on Arm64.", "current_version": "11.71.7", "decision": "next_install_validated", "duration_seconds": 28, - "latest_version": "12.10.5", + "latest_version": "12.12.6", "name": "Test 6 - Regression Validation", - "next_installed_version": "12.10.5", + "next_installed_version": "12.12.6", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180518#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491631#step:11:1" } ], "duration_seconds": 73, @@ -57556,7 +57556,7 @@ "dashboard_link": "/linux/opensource_packages/powershell", "job_url_resolution_status": "central_exact", "package_slug": "powershell", - "production_refreshed_at": "2026-05-14T19:37:17.415371+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.625687+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -57570,15 +57570,15 @@ }, "run": { "attempt": "1", - "id": "25877359516", + "id": "26658670904", "job_name": "test-powershell / test-powershell", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:44Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991380" + "timestamp": "2026-05-29T19:47:53Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321642" }, "schema_version": "2.0", "tests": { @@ -57587,31 +57587,31 @@ "duration_seconds": 0, "name": "Test 1 - Check pwsh binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991380#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321642#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991380#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321642#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check PowerShell runtime version", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991380#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321642#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991380#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321642#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991380#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321642#step:10:1" }, { "comparison": "Current pinned PowerShell version 7.5.0 passed smoke tests in this run. Regression validation installed candidate version 7.5.1 on Arm64, and the candidate reported version 7.5.1 through both --version and PowerShell runtime checks.", @@ -57623,7 +57623,7 @@ "next_installed_version": "7.5.1", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991380#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321642#step:11:1" } ], "duration_seconds": 2, @@ -57641,7 +57641,7 @@ "dashboard_link": "/linux/opensource_packages/predixy", "job_url_resolution_status": "central_exact", "package_slug": "predixy", - "production_refreshed_at": "2026-05-14T19:37:17.415597+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.625874+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -57655,15 +57655,15 @@ }, "run": { "attempt": "1", - "id": "25877379982", + "id": "26658688675", "job_name": "test-predixy / test-predixy", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:06Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057349" + "timestamp": "2026-05-29T19:48:14Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380545" }, "schema_version": "2.0", "tests": { @@ -57672,46 +57672,46 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057349#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380545#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057349#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380545#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057349#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380545#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057349#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380545#step:9:1" }, { "duration_seconds": 2, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057349#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380545#step:10:1" }, { "comparison": "Current pinned Predixy release tag 7.0.0 passed smoke tests in this run. Regression validation rebuilt candidate release tag 7.0.1 on Arm64, and the resulting binary self-reported version 1.0.5 while passing the Redis proxy smoke path. Upstream release tags and embedded binary version strings do not currently match for Predixy.", "current_version": "7.0.0", "decision": "next_install_validated", - "duration_seconds": 32, + "duration_seconds": 33, "latest_version": "7.0.1", "name": "Test 6 - Regression Validation", "next_installed_version": "1.0.5", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057349#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380545#step:11:1" } ], - "duration_seconds": 34, + "duration_seconds": 35, "failed": 0, "passed": 6, "skipped": 0 @@ -57726,7 +57726,7 @@ "dashboard_link": "/linux/opensource_packages/presto", "job_url_resolution_status": "central_exact", "package_slug": "presto", - "production_refreshed_at": "2026-05-14T19:37:17.415816+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.626051+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -57738,15 +57738,15 @@ }, "run": { "attempt": "1", - "id": "25877399008", + "id": "26658707245", "job_name": "test-presto / test-presto", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:31Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125146" + "timestamp": "2026-05-29T19:48:40Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445646" }, "schema_version": "2.0", "tests": { @@ -57755,40 +57755,40 @@ "duration_seconds": 0, "name": "Test 1 - Artifact Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125146#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445646#step:6:1" }, { "duration_seconds": 8, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125146#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445646#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Configuration Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125146#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445646#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125146#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445646#step:9:1" }, { - "duration_seconds": 7, + "duration_seconds": 8, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125146#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445646#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125146#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445646#step:11:1" } ], - "duration_seconds": 14, + "duration_seconds": 16, "failed": 0, "passed": 6, "skipped": 0 @@ -57803,7 +57803,7 @@ "dashboard_link": "/linux/opensource_packages/proj", "job_url_resolution_status": "central_exact", "package_slug": "proj", - "production_refreshed_at": "2026-05-14T19:37:17.416001+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.626220+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -57817,15 +57817,15 @@ }, "run": { "attempt": "1", - "id": "25877406767", + "id": "26658714432", "job_name": "test-proj / test-proj", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:44Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155327" + "timestamp": "2026-05-29T19:48:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469199" }, "schema_version": "2.0", "tests": { @@ -57834,46 +57834,46 @@ "duration_seconds": 0, "name": "Test 1 - Artifact Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155327#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469199#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155327#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469199#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Help Output Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155327#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469199#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155327#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469199#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155327#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469199#step:10:1" }, { "comparison": "Current pinned PROJ version 9.7.1 passed smoke tests in this run. Regression validation rebuilt candidate version 9.8.0 on Arm64, and the installed tool reported version 9.8.0 while passing a real EPSG:4326 lookup.", "current_version": "9.7.1", "decision": "next_install_validated", - "duration_seconds": 262, + "duration_seconds": 258, "latest_version": "9.8.0", "name": "Test 6 - Regression Validation", "next_installed_version": "9.8.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155327#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469199#step:11:1" } ], - "duration_seconds": 262, + "duration_seconds": 258, "failed": 0, "passed": 6, "skipped": 0 @@ -57888,7 +57888,7 @@ "dashboard_link": "/linux/opensource_packages/prometheus", "job_url_resolution_status": "central_exact", "package_slug": "prometheus", - "production_refreshed_at": "2026-05-14T19:37:17.416201+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.626429+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -57902,15 +57902,15 @@ }, "run": { "attempt": "1", - "id": "25877375677", + "id": "26658685142", "job_name": "test-prometheus / test-prometheus", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:03Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044532" + "timestamp": "2026-05-29T19:48:12Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370307" }, "schema_version": "2.0", "tests": { @@ -57919,46 +57919,46 @@ "duration_seconds": 0, "name": "Test 1 - Artifact Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044532#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370307#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044532#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370307#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Config Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044532#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370307#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044532#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370307#step:9:1" }, { "duration_seconds": 2, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044532#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370307#step:10:1" }, { "comparison": "Current pinned Prometheus version 3.1.0 passed smoke tests in this run. Regression validation installed candidate version 3.2.0 on Arm64, and the candidate binary reported runtime version 3.2.0 while passing config and health checks.", "current_version": "3.1.0", "decision": "next_install_validated", - "duration_seconds": 4, + "duration_seconds": 6, "latest_version": "3.2.0", "name": "Test 6 - Regression Validation", "next_installed_version": "3.2.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044532#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370307#step:11:1" } ], - "duration_seconds": 6, + "duration_seconds": 8, "failed": 0, "passed": 6, "skipped": 0 @@ -57973,7 +57973,7 @@ "dashboard_link": "/linux/opensource_packages/prophet", "job_url_resolution_status": "central_exact", "package_slug": "prophet", - "production_refreshed_at": "2026-05-14T19:37:17.416406+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.626612+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -57987,15 +57987,15 @@ }, "run": { "attempt": "1", - "id": "25877431862", + "id": "26658734615", "job_name": "test-prophet / test-prophet", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:22Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265894" + "timestamp": "2026-05-29T19:49:14Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537999" }, "schema_version": "2.0", "tests": { @@ -58004,31 +58004,31 @@ "duration_seconds": 0, "name": "Test 1 - Check package-specific baseline markers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265894#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537999#step:8:1" }, { "duration_seconds": 0, "name": "Test 2 - Check published package metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265894#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537999#step:9:1" }, { "duration_seconds": 0, "name": "Test 3 - Check package-specific docs and manifests", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265894#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537999#step:10:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265894#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537999#step:11:1" }, { - "duration_seconds": 10, + "duration_seconds": 9, "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265894#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537999#step:12:1" }, { "comparison": "A bounded Python compile proof completed on the Arm64 runner against the next stable Prophet source candidate. This validates candidate Python forecasting sources on Arm64 without claiming a full Stan-backed modeling runtime.", @@ -58040,7 +58040,7 @@ "next_installed_version": "1.3.0", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265894#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537999#step:13:1" } ], "duration_seconds": 2, @@ -58058,7 +58058,7 @@ "dashboard_link": "/linux/opensource_packages/protobuf", "job_url_resolution_status": "central_exact", "package_slug": "protobuf", - "production_refreshed_at": "2026-05-14T19:37:17.416607+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.626785+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -58070,15 +58070,15 @@ }, "run": { "attempt": "1", - "id": "25877411197", + "id": "26658717942", "job_name": "test-protobuf / test-protobuf", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:51Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175656" + "timestamp": "2026-05-29T19:48:52Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479962" }, "schema_version": "2.0", "tests": { @@ -58087,37 +58087,37 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175656#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479962#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175656#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479962#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175656#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479962#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175656#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479962#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175656#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479962#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175656#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479962#step:11:1" } ], "duration_seconds": 0, @@ -58135,7 +58135,7 @@ "dashboard_link": "/linux/opensource_packages/psmc", "job_url_resolution_status": "central_exact", "package_slug": "psmc", - "production_refreshed_at": "2026-05-14T19:37:17.416827+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.626955+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "no_newer_stable_available", @@ -58149,15 +58149,15 @@ }, "run": { "attempt": "1", - "id": "25877419588", + "id": "26658724696", "job_name": "test-psmc / test-psmc", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:01Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192595" + "timestamp": "2026-05-29T19:49:01Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504199" }, "schema_version": "2.0", "tests": { @@ -58166,31 +58166,31 @@ "duration_seconds": 0, "name": "Test 1 - Artifact Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192595#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504199#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Version Metadata Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192595#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504199#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Help Output Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192595#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504199#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192595#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504199#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192595#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504199#step:10:1" }, { "comparison": "PSMC's public stable release line currently stops at 0.6.5. Baseline Arm64 smoke coverage exists, but there is no newer public stable release to use as a credible Test 6 upgrade candidate.", @@ -58202,7 +58202,7 @@ "next_installed_version": "0.6.5", "regression_result": "No newer stable release available for Test 6", "status": "skipped", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192595#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504199#step:11:1" } ], "duration_seconds": 0, @@ -58220,7 +58220,7 @@ "dashboard_link": "/linux/opensource_packages/psutil", "job_url_resolution_status": "central_exact", "package_slug": "psutil", - "production_refreshed_at": "2026-05-14T19:37:17.417018+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.627133+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -58234,15 +58234,15 @@ }, "run": { "attempt": "1", - "id": "25877367704", + "id": "26658677990", "job_name": "test-psutil / test-psutil", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:55Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026817" + "timestamp": "2026-05-29T19:48:02Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347617" }, "schema_version": "2.0", "tests": { @@ -58251,43 +58251,43 @@ "duration_seconds": 0, "name": "Test 1 - Check psutil module import", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026817#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347617#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version via python", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026817#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347617#step:7:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 3 - Check pip show", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026817#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347617#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026817#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347617#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026817#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347617#step:10:1" }, { "comparison": "Baseline psutil 6.0.0 passed CPU and memory probes. Test 6 installed candidate 6.1.0 from PyPI and ran the same functional probe on Arm64.", "current_version": "6.0.0", "decision": "next_install_validated", - "duration_seconds": 4, + "duration_seconds": 5, "latest_version": "6.1.0", "name": "Test 6 - Regression Validation", "next_installed_version": "6.1.0", "regression_result": "Next version installed and ran successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026817#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347617#step:11:1" } ], "duration_seconds": 5, @@ -58305,7 +58305,7 @@ "dashboard_link": "/linux/opensource_packages/pulsar", "job_url_resolution_status": "central_exact", "package_slug": "pulsar", - "production_refreshed_at": "2026-05-14T19:37:17.417225+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.627338+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -58317,15 +58317,15 @@ }, "run": { "attempt": "1", - "id": "25877355625", + "id": "26658667828", "job_name": "test-pulsar / test-pulsar", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:37Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976398" + "timestamp": "2026-05-29T19:47:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309073" }, "schema_version": "2.0", "tests": { @@ -58334,40 +58334,40 @@ "duration_seconds": 0, "name": "Test 1 - Check container running", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976398#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309073#step:6:1" }, { "duration_seconds": 10, "name": "Test 2 - Check Admin API", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976398#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309073#step:7:1" }, { - "duration_seconds": 3, + "duration_seconds": 4, "name": "Test 3 - Produce Message", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976398#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309073#step:8:1" }, { "duration_seconds": 4, "name": "Test 4 - Consume Message", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976398#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309073#step:9:1" }, { "duration_seconds": 3, "name": "Test 5 - Check Topic Stats", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976398#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309073#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976398#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309073#step:11:1" } ], - "duration_seconds": 20, + "duration_seconds": 21, "failed": 0, "passed": 6, "skipped": 0 @@ -58382,7 +58382,7 @@ "dashboard_link": "/linux/opensource_packages/pulumi", "job_url_resolution_status": "central_exact", "package_slug": "pulumi", - "production_refreshed_at": "2026-05-14T19:37:17.417424+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.627511+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -58396,15 +58396,15 @@ }, "run": { "attempt": "1", - "id": "25877419588", + "id": "26658724696", "job_name": "test-pulumi / test-pulumi", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:05Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192368" + "timestamp": "2026-05-29T19:49:02Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504157" }, "schema_version": "2.0", "tests": { @@ -58413,46 +58413,46 @@ "duration_seconds": 0, "name": "Test 1 - Check pulumi binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192368#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504157#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192368#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504157#step:7:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192368#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504157#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192368#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504157#step:9:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192368#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504157#step:10:1" }, { "comparison": "Current pinned Pulumi version 3.147.0 passed smoke tests in this run. Regression validation downloaded the candidate Arm64 artifact from https://get.pulumi.com/releases/sdk/pulumi-v3.148.0-linux-arm64.tar.gz, and the candidate binary completed version, help, and real file-backend stack validation successfully.", "current_version": "3.147.0", "decision": "next_install_validated", - "duration_seconds": 3, + "duration_seconds": 4, "latest_version": "3.148.0", "name": "Test 6 - Regression Validation", "next_installed_version": "3.148.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192368#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504157#step:11:1" } ], - "duration_seconds": 4, + "duration_seconds": 5, "failed": 0, "passed": 6, "skipped": 0 @@ -58467,7 +58467,7 @@ "dashboard_link": "/linux/opensource_packages/puppet", "job_url_resolution_status": "central_exact", "package_slug": "puppet", - "production_refreshed_at": "2026-05-14T19:37:17.417607+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.627684+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -58479,15 +58479,15 @@ }, "run": { "attempt": "1", - "id": "25877406767", + "id": "26658714432", "job_name": "test-puppet / test-puppet", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:46Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155317" + "timestamp": "2026-05-29T19:48:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469219" }, "schema_version": "2.0", "tests": { @@ -58496,40 +58496,40 @@ "duration_seconds": 0, "name": "Test 1 - Check puppet binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155317#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469219#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155317#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469219#step:7:1" }, { "duration_seconds": 1, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155317#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469219#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155317#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469219#step:9:1" }, { - "duration_seconds": 1, + "duration_seconds": 2, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155317#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469219#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155317#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469219#step:11:1" } ], - "duration_seconds": 2, + "duration_seconds": 3, "failed": 0, "passed": 6, "skipped": 0 @@ -58544,7 +58544,7 @@ "dashboard_link": "/linux/opensource_packages/py3c", "job_url_resolution_status": "central_exact", "package_slug": "py3c", - "production_refreshed_at": "2026-05-14T19:37:17.417829+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.627863+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -58556,15 +58556,15 @@ }, "run": { "attempt": "1", - "id": "25877399008", + "id": "26658707245", "job_name": "test-py3c / test-py3c", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:32Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125929" + "timestamp": "2026-05-29T19:48:38Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445523" }, "schema_version": "2.0", "tests": { @@ -58573,40 +58573,40 @@ "duration_seconds": 0, "name": "Test 1 - Check header files exist", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125929#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445523#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check package version", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125929#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445523#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check API surface", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125929#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445523#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125929#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445523#step:9:1" }, { - "duration_seconds": 5, + "duration_seconds": 1, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125929#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445523#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125929#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445523#step:11:1" } ], - "duration_seconds": 5, + "duration_seconds": 1, "failed": 0, "passed": 6, "skipped": 0 @@ -58621,7 +58621,7 @@ "dashboard_link": "/linux/opensource_packages/pycaret", "job_url_resolution_status": "central_exact", "package_slug": "pycaret", - "production_refreshed_at": "2026-05-14T19:37:17.418032+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.628045+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -58635,15 +58635,15 @@ }, "run": { "attempt": "1", - "id": "25877431862", + "id": "26658734615", "job_name": "test-pycaret / test-pycaret", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:25Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265847" + "timestamp": "2026-05-29T19:49:17Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538563" }, "schema_version": "2.0", "tests": { @@ -58652,46 +58652,46 @@ "duration_seconds": 1, "name": "Test 1 - Package installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265847#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538563#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Version metadata matches baseline", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265847#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538563#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Installed files metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265847#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538563#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265847#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538563#step:10:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265847#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538563#step:11:1" }, { "comparison": "Current pinned package version 3.0.0 passed smoke tests in this run, and the newer stable PyPI candidate 3.0.1 installed successfully on Arm64.", "current_version": "3.0.0", "decision": "next_install_validated", - "duration_seconds": 44, + "duration_seconds": 41, "latest_version": "3.0.1", "name": "Test 6 - Regression Validation", "next_installed_version": "3.0.1", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265847#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538563#step:12:1" } ], - "duration_seconds": 45, + "duration_seconds": 42, "failed": 0, "passed": 6, "skipped": 0 @@ -58706,7 +58706,7 @@ "dashboard_link": "/linux/opensource_packages/pyinstaller", "job_url_resolution_status": "central_exact", "package_slug": "pyinstaller", - "production_refreshed_at": "2026-05-14T19:37:17.418212+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.628228+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -58718,15 +58718,15 @@ }, "run": { "attempt": "1", - "id": "25877411197", + "id": "26658717942", "job_name": "test-pyinstaller / test-pyinstaller", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:59Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175237" + "timestamp": "2026-05-29T19:49:02Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479816" }, "schema_version": "2.0", "tests": { @@ -58735,40 +58735,40 @@ "duration_seconds": 0, "name": "Test 1 - Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175237#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479816#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175237#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479816#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175237#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479816#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175237#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479816#step:10:1" }, { - "duration_seconds": 10, + "duration_seconds": 11, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175237#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479816#step:11:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175237#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479816#step:12:1" } ], - "duration_seconds": 10, + "duration_seconds": 11, "failed": 0, "passed": 6, "skipped": 0 @@ -58783,7 +58783,7 @@ "dashboard_link": "/linux/opensource_packages/pyspice", "job_url_resolution_status": "central_exact", "package_slug": "pyspice", - "production_refreshed_at": "2026-05-14T19:37:17.418412+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.628435+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -58797,15 +58797,15 @@ }, "run": { "attempt": "1", - "id": "25877431862", + "id": "26658734615", "job_name": "test-pyspice / test-pyspice", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:22Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265836" + "timestamp": "2026-05-29T19:49:22Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538502" }, "schema_version": "2.0", "tests": { @@ -58814,46 +58814,46 @@ "duration_seconds": 0, "name": "Test 1 - Package installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265836#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538502#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Version metadata matches baseline", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265836#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538502#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Installed files metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265836#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538502#step:9:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265836#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538502#step:10:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265836#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538502#step:11:1" }, { "comparison": "Current pinned package version 0.2.0 passed smoke tests in this run, and the newer stable PyPI candidate 0.2.1 installed successfully on Arm64.", "current_version": "0.2.0", "decision": "next_install_validated", - "duration_seconds": 7, + "duration_seconds": 6, "latest_version": "0.2.1", "name": "Test 6 - Regression Validation", "next_installed_version": "0.2.1", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265836#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538502#step:12:1" } ], - "duration_seconds": 7, + "duration_seconds": 6, "failed": 0, "passed": 6, "skipped": 0 @@ -58868,7 +58868,7 @@ "dashboard_link": "/linux/opensource_packages/python", "job_url_resolution_status": "central_exact", "package_slug": "python", - "production_refreshed_at": "2026-05-14T19:37:17.419138+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.629058+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -58880,15 +58880,15 @@ }, "run": { "attempt": "1", - "id": "25877411197", + "id": "26658717942", "job_name": "test-python / test-python", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:57Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175850" + "timestamp": "2026-05-29T19:49:01Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479878" }, "schema_version": "2.0", "tests": { @@ -58897,37 +58897,37 @@ "duration_seconds": 0, "name": "Test 1 - Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175850#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479878#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175850#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479878#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175850#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479878#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175850#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479878#step:10:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175850#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479878#step:11:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175850#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479878#step:12:1" } ], "duration_seconds": 0, @@ -58945,7 +58945,7 @@ "dashboard_link": "/linux/opensource_packages/python-dlpy", "job_url_resolution_status": "central_exact", "package_slug": "python-dlpy", - "production_refreshed_at": "2026-05-14T19:37:17.418708+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.628705+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -58959,63 +58959,63 @@ }, "run": { "attempt": "1", - "id": "25877367704", + "id": "26658677990", "job_name": "test-python-dlpy / test-python-dlpy", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:55Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026663" + "timestamp": "2026-05-29T19:48:03Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347607" }, "schema_version": "2.0", "tests": { "details": [ { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 1 - Check Python-DLPy import", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026663#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347607#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check distribution versions", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026663#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347607#step:7:1" }, { "duration_seconds": 1, "name": "Test 3 - Check package metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026663#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347607#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026663#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347607#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026663#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347607#step:10:1" }, { "comparison": "Current pinned sas-dlpy version 0.7.0 passed smoke tests in this run. Regression validation installed the latest stable PyPI release 1.3.0 on Arm64 after preinstalling source-built python-swat 1.17.1, and the candidate completed the shared DLPy utility and SWAT option-surface smoke successfully.", "current_version": "0.7.0", "decision": "next_install_validated", - "duration_seconds": 22, + "duration_seconds": 23, "latest_version": "1.3.0", "name": "Test 6 - Regression Validation", "next_installed_version": "1.3.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026663#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347607#step:11:1" } ], - "duration_seconds": 23, + "duration_seconds": 25, "failed": 0, "passed": 6, "skipped": 0 @@ -59030,7 +59030,7 @@ "dashboard_link": "/linux/opensource_packages/python-xmlsec", "job_url_resolution_status": "central_exact", "package_slug": "python-xmlsec", - "production_refreshed_at": "2026-05-14T19:37:17.418940+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.628885+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -59042,15 +59042,15 @@ }, "run": { "attempt": "1", - "id": "25877359516", + "id": "26658670904", "job_name": "test-python-xmlsec / test-python-xmlsec", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:47Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991053" + "timestamp": "2026-05-29T19:47:53Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321811" }, "schema_version": "2.0", "tests": { @@ -59059,37 +59059,37 @@ "duration_seconds": 0, "name": "Test 1 - Check module import", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991053#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321811#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check internal constants", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991053#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321811#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check encryption capabilities", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991053#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321811#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991053#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321811#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation (Constants check)", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991053#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321811#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991053#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321811#step:11:1" } ], "duration_seconds": 0, @@ -59107,7 +59107,7 @@ "dashboard_link": "/linux/opensource_packages/python_swat", "job_url_resolution_status": "central_exact", "package_slug": "python_swat", - "production_refreshed_at": "2026-05-14T19:37:17.419355+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.629235+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -59119,54 +59119,54 @@ }, "run": { "attempt": "1", - "id": "25877392111", + "id": "26658699892", "job_name": "test-python_swat / test-python_swat", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:25Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096588" + "timestamp": "2026-05-29T19:48:29Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420990" }, "schema_version": "2.0", "tests": { "details": [ { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 1 - Check module import", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096588#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420990#step:6:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 2 - Check version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096588#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420990#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check API surface", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096588#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420990#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096588#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420990#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096588#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420990#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096588#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420990#step:11:1" } ], "duration_seconds": 1, @@ -59184,7 +59184,7 @@ "dashboard_link": "/linux/opensource_packages/pytorch", "job_url_resolution_status": "central_exact", "package_slug": "pytorch", - "production_refreshed_at": "2026-05-14T19:37:17.419556+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.629440+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -59196,15 +59196,15 @@ }, "run": { "attempt": "1", - "id": "25877403044", + "id": "26658710721", "job_name": "test-pytorch / test-pytorch", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:36Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140844" + "timestamp": "2026-05-29T19:48:43Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456221" }, "schema_version": "2.0", "tests": { @@ -59213,40 +59213,40 @@ "duration_seconds": 1, "name": "Test 1 - Import PyTorch", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140844#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456221#step:6:1" }, { - "duration_seconds": 2, + "duration_seconds": 1, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140844#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456221#step:7:1" }, { - "duration_seconds": 3, + "duration_seconds": 4, "name": "Test 3 - Check Module Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140844#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456221#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140844#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456221#step:9:1" }, { - "duration_seconds": 2, + "duration_seconds": 1, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140844#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456221#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140844#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456221#step:11:1" } ], - "duration_seconds": 8, + "duration_seconds": 7, "failed": 0, "passed": 6, "skipped": 0 @@ -59261,7 +59261,7 @@ "dashboard_link": "/linux/opensource_packages/pyzmq", "job_url_resolution_status": "central_exact", "package_slug": "pyzmq", - "production_refreshed_at": "2026-05-14T19:37:17.419763+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.629618+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -59273,15 +59273,15 @@ }, "run": { "attempt": "1", - "id": "25877367704", + "id": "26658677990", "job_name": "test-pyzmq / test-pyzmq", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:56Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027085" + "timestamp": "2026-05-29T19:48:02Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347548" }, "schema_version": "2.0", "tests": { @@ -59290,37 +59290,37 @@ "duration_seconds": 0, "name": "Test 1 - Check zmq module import", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027085#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347548#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check zmq version via python", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027085#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347548#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check pip show", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027085#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347548#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027085#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347548#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027085#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347548#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027085#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347548#step:11:1" } ], "duration_seconds": 0, @@ -59338,7 +59338,7 @@ "dashboard_link": "/linux/opensource_packages/qdrant", "job_url_resolution_status": "central_exact", "package_slug": "qdrant", - "production_refreshed_at": "2026-05-14T19:37:17.419952+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.629787+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -59350,15 +59350,15 @@ }, "run": { "attempt": "1", - "id": "25877423406", + "id": "26658727918", "job_name": "test-qdrant / test-qdrant", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:01Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209617" + "timestamp": "2026-05-29T19:49:05Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515037" }, "schema_version": "2.0", "tests": { @@ -59367,40 +59367,40 @@ "duration_seconds": 0, "name": "Test 1 - Check Qdrant image exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209617#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515037#step:6:1" }, { - "duration_seconds": 4, + "duration_seconds": 3, "name": "Test 2 - Check version endpoint", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209617#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515037#step:7:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 3 - Check container configuration", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209617#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515037#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209617#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515037#step:9:1" }, { "duration_seconds": 3, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209617#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515037#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209617#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515037#step:11:1" } ], - "duration_seconds": 6, + "duration_seconds": 7, "failed": 0, "passed": 6, "skipped": 0 @@ -59415,7 +59415,7 @@ "dashboard_link": "/linux/opensource_packages/qemu", "job_url_resolution_status": "central_exact", "package_slug": "qemu", - "production_refreshed_at": "2026-05-14T19:37:17.420162+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.629960+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -59427,15 +59427,15 @@ }, "run": { "attempt": "1", - "id": "25877419588", + "id": "26658724696", "job_name": "test-qemu / test-qemu", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:58Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192329" + "timestamp": "2026-05-29T19:49:02Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504089" }, "schema_version": "2.0", "tests": { @@ -59444,40 +59444,40 @@ "duration_seconds": 0, "name": "Test 1 - Check QEMU binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192329#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504089#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check QEMU version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192329#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504089#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check qemu-img help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192329#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504089#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192329#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504089#step:9:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192329#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504089#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192329#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504089#step:11:1" } ], - "duration_seconds": 1, + "duration_seconds": 0, "failed": 0, "passed": 6, "skipped": 0 @@ -59492,7 +59492,7 @@ "dashboard_link": "/linux/opensource_packages/qflow", "job_url_resolution_status": "central_exact", "package_slug": "qflow", - "production_refreshed_at": "2026-05-14T19:37:17.420361+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.630134+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -59506,15 +59506,15 @@ }, "run": { "attempt": "1", - "id": "25877431862", + "id": "26658734615", "job_name": "test-qflow / test-qflow", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:22Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265865" + "timestamp": "2026-05-29T19:49:21Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538188" }, "schema_version": "2.0", "tests": { @@ -59523,46 +59523,46 @@ "duration_seconds": 0, "name": "Test 1 - Check package-specific baseline markers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265865#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538188#step:8:1" }, { "duration_seconds": 0, "name": "Test 2 - Check published package metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265865#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538188#step:9:1" }, { "duration_seconds": 0, "name": "Test 3 - Check package-specific docs and manifests", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265865#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538188#step:10:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265865#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538188#step:11:1" }, { "duration_seconds": 2, "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265865#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538188#step:12:1" }, { "comparison": "Test 6 built the next qflow source candidate on the Arm64 runner, installed it into a local prefix, ran qflow --version, and synthesized a tiny Verilog module through the qflow/yosys path. Full place/route, DRC, LVS, and foundry-scale EDA flows remain out of scope.", "current_version": "1.1.23-1", "decision": "limited_cpu_smoke_validated", - "duration_seconds": 64, + "duration_seconds": 54, "latest_version": "1.4.104", "name": "Test 6 - Regression Validation", "next_installed_version": "1.4.104", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265865#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538188#step:13:1" } ], - "duration_seconds": 64, + "duration_seconds": 54, "failed": 0, "passed": 6, "skipped": 0 @@ -59577,7 +59577,7 @@ "dashboard_link": "/linux/opensource_packages/qiniu-qshell", "job_url_resolution_status": "central_exact", "package_slug": "qiniu-qshell", - "production_refreshed_at": "2026-05-14T19:37:17.420548+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.630342+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -59591,15 +59591,15 @@ }, "run": { "attempt": "1", - "id": "25877387746", + "id": "26658696365", "job_name": "test-qiniu-qshell / test-qiniu-qshell", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:15Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084640" + "timestamp": "2026-05-29T19:48:24Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407744" }, "schema_version": "2.0", "tests": { @@ -59608,46 +59608,46 @@ "duration_seconds": 0, "name": "Test 1 - Check binary existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084640#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407744#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084640#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407744#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084640#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407744#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084640#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407744#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084640#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407744#step:10:1" }, { "comparison": "Current pinned Qshell version 2.18.0 passed smoke tests in this run. Regression validation installed candidate Arm64 archive qshell-v2.19.0-linux-arm64.tar.gz successfully and confirmed version, help, and base64 encode/decode successfully.", "current_version": "2.18.0", "decision": "next_install_validated", - "duration_seconds": 1, + "duration_seconds": 0, "latest_version": "2.19.0", "name": "Test 6 - Regression Validation", "next_installed_version": "2.19.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084640#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407744#step:11:1" } ], - "duration_seconds": 1, + "duration_seconds": 0, "failed": 0, "passed": 6, "skipped": 0 @@ -59662,7 +59662,7 @@ "dashboard_link": "/linux/opensource_packages/qperf", "job_url_resolution_status": "central_exact", "package_slug": "qperf", - "production_refreshed_at": "2026-05-14T19:37:17.420767+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.630534+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -59674,15 +59674,15 @@ }, "run": { "attempt": "1", - "id": "25877399008", + "id": "26658707245", "job_name": "test-qperf / test-qperf", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:33Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125109" + "timestamp": "2026-05-29T19:48:39Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575444690" }, "schema_version": "2.0", "tests": { @@ -59691,40 +59691,40 @@ "duration_seconds": 0, "name": "Test 1 - Check qperf binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125109#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575444690#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125109#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575444690#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125109#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575444690#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125109#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575444690#step:9:1" }, { - "duration_seconds": 6, + "duration_seconds": 7, "name": "Test 5 - Functional validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125109#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575444690#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125109#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575444690#step:11:1" } ], - "duration_seconds": 6, + "duration_seconds": 7, "failed": 0, "passed": 6, "skipped": 0 @@ -59739,7 +59739,7 @@ "dashboard_link": "/linux/opensource_packages/qrouter", "job_url_resolution_status": "central_exact", "package_slug": "qrouter", - "production_refreshed_at": "2026-05-14T19:37:17.420966+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.630710+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -59753,15 +59753,15 @@ }, "run": { "attempt": "1", - "id": "25877431862", + "id": "26658734615", "job_name": "test-qrouter / test-qrouter", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:22Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265743" + "timestamp": "2026-05-29T19:49:20Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538068" }, "schema_version": "2.0", "tests": { @@ -59770,46 +59770,46 @@ "duration_seconds": 0, "name": "Test 1 - Check package-specific baseline markers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265743#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538068#step:8:1" }, { "duration_seconds": 0, "name": "Test 2 - Check published package metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265743#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538068#step:9:1" }, { "duration_seconds": 0, "name": "Test 3 - Check package-specific docs and manifests", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265743#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538068#step:10:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265743#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538068#step:11:1" }, { - "duration_seconds": 6, + "duration_seconds": 4, "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265743#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538068#step:12:1" }, { "comparison": "Test 6 built the next qrouter source candidate on the Arm64 runner, verified the installed no-graphics helper is AArch64, captured CLI help, and executed a tiny Tcl batch script inside qrouter. Real LEF/DEF routing quality, GUI operation, and full ASIC signoff flows remain out of scope.", "current_version": "1.3.33-1", "decision": "limited_cpu_smoke_validated", - "duration_seconds": 25, + "duration_seconds": 20, "latest_version": "1.4.90", "name": "Test 6 - Regression Validation", "next_installed_version": "1.4.90", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265743#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538068#step:13:1" } ], - "duration_seconds": 25, + "duration_seconds": 20, "failed": 0, "passed": 6, "skipped": 0 @@ -59824,7 +59824,7 @@ "dashboard_link": "/linux/opensource_packages/qt", "job_url_resolution_status": "central_exact", "package_slug": "qt", - "production_refreshed_at": "2026-05-14T19:37:17.421148+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.630886+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -59836,15 +59836,15 @@ }, "run": { "attempt": "1", - "id": "25877406767", + "id": "26658714432", "job_name": "test-qt / test-qt", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:43Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154379" + "timestamp": "2026-05-29T19:48:48Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468622" }, "schema_version": "2.0", "tests": { @@ -59853,37 +59853,37 @@ "duration_seconds": 0, "name": "Test 1 - Check qmake6 binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154379#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468622#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154379#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468622#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154379#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468622#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154379#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468622#step:9:1" }, { - "duration_seconds": 2, + "duration_seconds": 3, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154379#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468622#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154379#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468622#step:11:1" } ], "duration_seconds": 0, @@ -59901,7 +59901,7 @@ "dashboard_link": "/linux/opensource_packages/quartz", "job_url_resolution_status": "central_exact", "package_slug": "quartz", - "production_refreshed_at": "2026-05-14T19:37:17.421366+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.631062+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -59915,15 +59915,15 @@ }, "run": { "attempt": "1", - "id": "25877371674", + "id": "26658681575", "job_name": "test-quartz / test-quartz", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:59Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031804" + "timestamp": "2026-05-29T19:48:07Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358237" }, "schema_version": "2.0", "tests": { @@ -59932,31 +59932,31 @@ "duration_seconds": 0, "name": "Test 1 - Check Quartz artifact exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031804#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358237#step:6:1" }, { "duration_seconds": 1, "name": "Test 2 - Check version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031804#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358237#step:7:1" }, { "duration_seconds": 1, "name": "Test 3 - Check dependency resolution", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031804#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358237#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031804#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358237#step:9:1" }, { "duration_seconds": 4, "name": "Test 5 - Functional validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031804#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358237#step:10:1" }, { "comparison": "Current pinned Quartz version 2.5.0 passed smoke tests in this run. Regression validation resolved candidate version 2.5.1 on Arm64, and the candidate dependency reported version 2.5.1 and completed the scheduler job-run smoke successfully.", @@ -59968,7 +59968,7 @@ "next_installed_version": "2.5.1", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031804#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358237#step:11:1" } ], "duration_seconds": 12, @@ -59986,7 +59986,7 @@ "dashboard_link": "/linux/opensource_packages/quilt", "job_url_resolution_status": "central_exact", "package_slug": "quilt", - "production_refreshed_at": "2026-05-14T19:37:17.421565+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.631261+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -59998,15 +59998,15 @@ }, "run": { "attempt": "1", - "id": "25877419588", + "id": "26658724696", "job_name": "test-quilt / test-quilt", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:06Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048191507" + "timestamp": "2026-05-29T19:49:10Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503357" }, "schema_version": "2.0", "tests": { @@ -60015,37 +60015,37 @@ "duration_seconds": 0, "name": "Test 1 - Check module import", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048191507#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503357#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048191507#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503357#step:8:1" }, { "duration_seconds": 1, "name": "Test 3 - Check CLI help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048191507#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503357#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048191507#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503357#step:10:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048191507#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503357#step:11:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048191507#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503357#step:12:1" } ], "duration_seconds": 1, @@ -60063,7 +60063,7 @@ "dashboard_link": "/linux/opensource_packages/rabbitmq", "job_url_resolution_status": "central_exact", "package_slug": "rabbitmq", - "production_refreshed_at": "2026-05-14T19:37:17.421785+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.631447+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -60075,15 +60075,15 @@ }, "run": { "attempt": "1", - "id": "25877383844", + "id": "26658692522", "job_name": "test-rabbitmq / test-rabbitmq", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:12Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071803" + "timestamp": "2026-05-29T19:48:19Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394313" }, "schema_version": "2.0", "tests": { @@ -60092,40 +60092,40 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071803#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394313#step:6:1" }, { "duration_seconds": 1, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071803#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394313#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071803#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394313#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071803#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394313#step:9:1" }, { "duration_seconds": 3, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071803#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394313#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071803#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394313#step:11:1" } ], - "duration_seconds": 4, + "duration_seconds": 3, "failed": 0, "passed": 6, "skipped": 0 @@ -60140,7 +60140,7 @@ "dashboard_link": "/linux/opensource_packages/raft", "job_url_resolution_status": "central_exact", "package_slug": "raft", - "production_refreshed_at": "2026-05-14T19:37:17.421983+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.631628+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -60154,15 +60154,15 @@ }, "run": { "attempt": "1", - "id": "25877431862", + "id": "26658734615", "job_name": "test-raft / test-raft", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:22Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265851" + "timestamp": "2026-05-29T19:49:17Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538252" }, "schema_version": "2.0", "tests": { @@ -60171,46 +60171,46 @@ "duration_seconds": 0, "name": "Test 1 - Check package-specific baseline markers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265851#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538252#step:8:1" }, { "duration_seconds": 0, "name": "Test 2 - Check published package metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265851#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538252#step:9:1" }, { "duration_seconds": 0, "name": "Test 3 - Check package-specific docs and manifests", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265851#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538252#step:10:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265851#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538252#step:11:1" }, { "duration_seconds": 0, "name": "Test 5 - Run scoped Arm preflight proof", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265851#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538252#step:12:1" }, { "comparison": "Test 6 limited_cpu_smoke_validated: reran the same bounded scoped Arm source/compile/import/help/manifest preflight against the next stable candidate. This is CPU-side preflight evidence only; no GPU/CUDA driver/runtime, accelerator execution, Kubernetes cluster, or full product runtime is claimed.", "current_version": "23.12.00", "decision": "limited_cpu_smoke_validated", - "duration_seconds": 2, + "duration_seconds": 1, "latest_version": "26.04.00", "name": "Test 6 - Regression Validation", "next_installed_version": "26.04.00", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265851#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538252#step:13:1" } ], - "duration_seconds": 2, + "duration_seconds": 1, "failed": 0, "passed": 6, "skipped": 0 @@ -60225,7 +60225,7 @@ "dashboard_link": "/linux/opensource_packages/ragflow", "job_url_resolution_status": "central_exact", "package_slug": "ragflow", - "production_refreshed_at": "2026-05-14T19:37:17.422179+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.631804+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -60239,15 +60239,15 @@ }, "run": { "attempt": "1", - "id": "25877431862", + "id": "26658734615", "job_name": "test-ragflow / test-ragflow", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:22Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265890" + "timestamp": "2026-05-29T19:49:22Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538163" }, "schema_version": "2.0", "tests": { @@ -60256,46 +60256,46 @@ "duration_seconds": 0, "name": "Test 1 - Check package-specific baseline markers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265890#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538163#step:8:1" }, { "duration_seconds": 0, "name": "Test 2 - Check published package metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265890#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538163#step:9:1" }, { "duration_seconds": 0, "name": "Test 3 - Check package-specific docs and manifests", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265890#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538163#step:10:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265890#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538163#step:11:1" }, { - "duration_seconds": 2, + "duration_seconds": 3, "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265890#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538163#step:12:1" }, { "comparison": "Compiled the next RAGFlow Python source candidate on the Arm64 runner and validated its Docker Compose service graph. Full service runtime remains scoped because the full stack requires DB/vector/object-store/LLM services.", "current_version": "0.7.0", "decision": "limited_cpu_smoke_validated", "duration_seconds": 4, - "latest_version": "0.25.4", + "latest_version": "0.25.6", "name": "Test 6 - Regression Validation", - "next_installed_version": "0.25.4", + "next_installed_version": "0.25.6", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265890#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538163#step:13:1" } ], - "duration_seconds": 6, + "duration_seconds": 7, "failed": 0, "passed": 6, "skipped": 0 @@ -60310,7 +60310,7 @@ "dashboard_link": "/linux/opensource_packages/ramalama", "job_url_resolution_status": "central_exact", "package_slug": "ramalama", - "production_refreshed_at": "2026-05-14T19:37:17.422359+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.631977+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -60322,15 +60322,15 @@ }, "run": { "attempt": "1", - "id": "25877423406", + "id": "26658727918", "job_name": "test-ramalama / test-ramalama", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:05Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210154" + "timestamp": "2026-05-29T19:49:06Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515997" }, "schema_version": "2.0", "tests": { @@ -60339,37 +60339,37 @@ "duration_seconds": 0, "name": "Test 1 - Check ramalama binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210154#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515997#step:6:1" }, { "duration_seconds": 1, "name": "Test 2 - Check ramalama version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210154#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515997#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check ramalama help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210154#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515997#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210154#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515997#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210154#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515997#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210154#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515997#step:11:1" } ], "duration_seconds": 1, @@ -60387,7 +60387,7 @@ "dashboard_link": "/linux/opensource_packages/rancher", "job_url_resolution_status": "central_exact", "package_slug": "rancher", - "production_refreshed_at": "2026-05-14T19:37:17.422530+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.632141+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -60399,15 +60399,15 @@ }, "run": { "attempt": "1", - "id": "25877371674", + "id": "26658681575", "job_name": "test-rancher / test-rancher", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:58Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031837" + "timestamp": "2026-05-29T19:48:07Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358352" }, "schema_version": "2.0", "tests": { @@ -60416,37 +60416,37 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031837#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358352#step:6:1" }, { "duration_seconds": 1, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031837#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358352#step:7:1" }, { "duration_seconds": 1, "name": "Test 3 - Check Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031837#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358352#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031837#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358352#step:9:1" }, { - "duration_seconds": 48, + "duration_seconds": 49, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031837#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358352#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031837#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358352#step:11:1" } ], "duration_seconds": 48, @@ -60464,7 +60464,7 @@ "dashboard_link": "/linux/opensource_packages/ranger", "job_url_resolution_status": "central_exact", "package_slug": "ranger", - "production_refreshed_at": "2026-05-14T19:37:17.422699+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.632342+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -60476,57 +60476,57 @@ }, "run": { "attempt": "1", - "id": "25877406767", + "id": "26658714432", "job_name": "test-ranger / test-ranger", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:44Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155764" + "timestamp": "2026-05-29T19:48:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469427" }, "schema_version": "2.0", "tests": { "details": [ { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 1 - Check Ranger executable exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155764#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469427#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Check exact version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155764#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469427#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155764#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469427#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155764#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469427#step:10:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 5 - Functional validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155764#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469427#step:11:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155764#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469427#step:12:1" } ], - "duration_seconds": 0, + "duration_seconds": 1, "failed": 0, "passed": 6, "skipped": 0 @@ -60541,7 +60541,7 @@ "dashboard_link": "/linux/opensource_packages/rav1e", "job_url_resolution_status": "central_exact", "package_slug": "rav1e", - "production_refreshed_at": "2026-05-14T19:37:17.422927+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.632519+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -60555,63 +60555,63 @@ }, "run": { "attempt": "1", - "id": "25877431862", + "id": "26658734615", "job_name": "test-rav1e / test-rav1e", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:22Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265679" + "timestamp": "2026-05-29T19:49:16Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538618" }, "schema_version": "2.0", "tests": { "details": [ { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 1 - Check package-specific baseline markers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265679#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538618#step:8:1" }, { "duration_seconds": 0, "name": "Test 2 - Check published package metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265679#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538618#step:9:1" }, { "duration_seconds": 0, "name": "Test 3 - Check package-specific docs and manifests", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265679#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538618#step:10:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265679#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538618#step:11:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265679#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538618#step:12:1" }, { "comparison": "Test 6 downloaded the next rav1e linux-aarch64 release CLI, verified version/help, and encoded a one-frame 16x16 Y4M fixture to IVF on the Arm64 runner. Throughput, quality metrics, and long-form encode coverage remain out of scope.", "current_version": "0.3.2", "decision": "limited_cpu_smoke_validated", - "duration_seconds": 3, + "duration_seconds": 1, "latest_version": "0.8.1", "name": "Test 6 - Regression Validation", "next_installed_version": "0.8.1", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265679#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538618#step:13:1" } ], - "duration_seconds": 3, + "duration_seconds": 2, "failed": 0, "passed": 6, "skipped": 0 @@ -60626,7 +60626,7 @@ "dashboard_link": "/linux/opensource_packages/raxml", "job_url_resolution_status": "central_exact", "package_slug": "raxml", - "production_refreshed_at": "2026-05-14T19:37:17.423143+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.632698+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -60638,15 +60638,15 @@ }, "run": { "attempt": "1", - "id": "25877392111", + "id": "26658699892", "job_name": "test-raxml / test-raxml", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:21Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096372" + "timestamp": "2026-05-29T19:48:30Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421195" }, "schema_version": "2.0", "tests": { @@ -60655,37 +60655,37 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096372#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421195#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096372#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421195#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096372#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421195#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096372#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421195#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096372#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421195#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096372#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421195#step:11:1" } ], "duration_seconds": 0, @@ -60703,7 +60703,7 @@ "dashboard_link": "/linux/opensource_packages/ray", "job_url_resolution_status": "central_exact", "package_slug": "ray", - "production_refreshed_at": "2026-05-14T19:37:17.423462+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.632965+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -60715,15 +60715,15 @@ }, "run": { "attempt": "1", - "id": "25877367704", + "id": "26658677990", "job_name": "test-ray / test-ray", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:53Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026750" + "timestamp": "2026-05-29T19:48:02Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347216" }, "schema_version": "2.0", "tests": { @@ -60732,37 +60732,37 @@ "duration_seconds": 0, "name": "Test 1 - Check ray binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026750#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347216#step:6:1" }, { "duration_seconds": 1, "name": "Test 2 - Check ray version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026750#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347216#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check ray help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026750#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347216#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026750#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347216#step:9:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026750#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347216#step:10:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026750#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347216#step:11:1" } ], "duration_seconds": 1, @@ -60780,7 +60780,7 @@ "dashboard_link": "/linux/opensource_packages/re2", "job_url_resolution_status": "central_exact", "package_slug": "re2", - "production_refreshed_at": "2026-05-14T19:37:17.423658+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.633148+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -60792,15 +60792,15 @@ }, "run": { "attempt": "1", - "id": "25877387746", + "id": "26658696365", "job_name": "test-re2 / test-re2", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:16Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048085095" + "timestamp": "2026-05-29T19:48:25Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407335" }, "schema_version": "2.0", "tests": { @@ -60809,40 +60809,40 @@ "duration_seconds": 0, "name": "Test 1 - Check Library Artifacts", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048085095#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407335#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048085095#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407335#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Build Configuration", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048085095#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407335#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048085095#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407335#step:9:1" }, { - "duration_seconds": 2, + "duration_seconds": 3, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048085095#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407335#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048085095#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407335#step:11:1" } ], - "duration_seconds": 2, + "duration_seconds": 3, "failed": 0, "passed": 6, "skipped": 0 @@ -60857,7 +60857,7 @@ "dashboard_link": "/linux/opensource_packages/re2c", "job_url_resolution_status": "central_exact", "package_slug": "re2c", - "production_refreshed_at": "2026-05-14T19:37:17.423851+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.633356+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -60871,15 +60871,15 @@ }, "run": { "attempt": "1", - "id": "25877419588", + "id": "26658724696", "job_name": "test-re2c / test-re2c", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:01Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192570" + "timestamp": "2026-05-29T19:49:01Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504203" }, "schema_version": "2.0", "tests": { @@ -60888,46 +60888,46 @@ "duration_seconds": 0, "name": "Test 1 - Check re2c binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192570#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504203#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check exact version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192570#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504203#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192570#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504203#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192570#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504203#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192570#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504203#step:10:1" }, { "comparison": "Current pinned Re2c version 4.3 passed smoke tests in this run. Regression validation built candidate version 4.3.1 on Arm64, the isolated candidate binary reported version 4.3.1, and it successfully generated the sample scanner source.", "current_version": "4.3", "decision": "next_install_validated", - "duration_seconds": 334, + "duration_seconds": 331, "latest_version": "4.3.1", "name": "Test 6 - Regression Validation", "next_installed_version": "4.3.1", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192570#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504203#step:11:1" } ], - "duration_seconds": 334, + "duration_seconds": 331, "failed": 0, "passed": 6, "skipped": 0 @@ -60942,7 +60942,7 @@ "dashboard_link": "/linux/opensource_packages/redis", "job_url_resolution_status": "central_exact", "package_slug": "redis", - "production_refreshed_at": "2026-05-14T19:37:17.424041+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.633540+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -60956,15 +60956,15 @@ }, "run": { "attempt": "1", - "id": "25877415436", + "id": "26658721315", "job_name": "test-redis / test-redis", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:49Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180937" + "timestamp": "2026-05-29T19:48:56Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491866" }, "schema_version": "2.0", "tests": { @@ -60973,31 +60973,31 @@ "duration_seconds": 0, "name": "Test 1 - Check Redis binaries exist", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180937#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491866#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Redis version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180937#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491866#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Redis CLI help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180937#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491866#step:8:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 4 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180937#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491866#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180937#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491866#step:10:1" }, { "comparison": "Current pinned Redis version 7.2.9 passed smoke tests in this run. Regression validation built the next stable Arm64 source release 7.2.10, and the candidate redis-server/redis-cli binaries reported version 7.2.10 while a real ping plus set/get smoke test succeeded on Arm64.", @@ -61009,10 +61009,10 @@ "next_installed_version": "7.2.10", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180937#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491866#step:11:1" } ], - "duration_seconds": 39, + "duration_seconds": 38, "failed": 0, "passed": 6, "skipped": 0 @@ -61027,7 +61027,7 @@ "dashboard_link": "/linux/opensource_packages/redpanda", "job_url_resolution_status": "central_exact", "package_slug": "redpanda", - "production_refreshed_at": "2026-05-14T19:37:17.424231+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.633727+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -61039,15 +61039,15 @@ }, "run": { "attempt": "1", - "id": "25877403044", + "id": "26658710721", "job_name": "test-redpanda / test-redpanda", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:37Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140809" + "timestamp": "2026-05-29T19:48:44Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456407" }, "schema_version": "2.0", "tests": { @@ -61056,37 +61056,37 @@ "duration_seconds": 0, "name": "Test 1 - Artifact Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140809#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456407#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140809#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456407#step:7:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 3 - Help Output Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140809#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456407#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140809#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456407#step:9:1" }, { - "duration_seconds": 2, + "duration_seconds": 3, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140809#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456407#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140809#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456407#step:11:1" } ], "duration_seconds": 3, @@ -61104,7 +61104,7 @@ "dashboard_link": "/linux/opensource_packages/relic", "job_url_resolution_status": "central_exact", "package_slug": "relic", - "production_refreshed_at": "2026-05-14T19:37:17.424404+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.633915+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -61116,15 +61116,15 @@ }, "run": { "attempt": "1", - "id": "25877387746", + "id": "26658696365", "job_name": "test-relic / test-relic", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:15Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083688" + "timestamp": "2026-05-29T19:48:24Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575406559" }, "schema_version": "2.0", "tests": { @@ -61133,37 +61133,37 @@ "duration_seconds": 0, "name": "Test 1 - Check relic binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083688#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575406559#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check relic version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083688#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575406559#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check relic help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083688#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575406559#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083688#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575406559#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083688#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575406559#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083688#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575406559#step:11:1" } ], "duration_seconds": 0, @@ -61181,7 +61181,7 @@ "dashboard_link": "/linux/opensource_packages/relion", "job_url_resolution_status": "central_exact", "package_slug": "relion", - "production_refreshed_at": "2026-05-14T19:37:17.424583+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.634095+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -61195,15 +61195,15 @@ }, "run": { "attempt": "1", - "id": "25877375677", + "id": "26658685142", "job_name": "test-relion / test-relion", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:03Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043699" + "timestamp": "2026-05-29T19:48:12Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369872" }, "schema_version": "2.0", "tests": { @@ -61212,46 +61212,46 @@ "duration_seconds": 0, "name": "Test 1 - Check Relion binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043699#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369872#step:6:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 2 - Check Relion help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043699#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369872#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Relion CLI options", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043699#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369872#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043699#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369872#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043699#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369872#step:10:1" }, { "comparison": "Current pinned Relion source tag 5.0.0 passed CPU-only Arm64 source-build validation in this run. Regression validation rebuilt candidate source tag 5.0.1 with GUI and CUDA disabled, then executed the resulting relion_image_handler binary successfully on Arm64.", "current_version": "5.0.0", "decision": "next_install_validated", - "duration_seconds": 286, + "duration_seconds": 290, "latest_version": "5.0.1", "name": "Test 6 - Regression Validation", "next_installed_version": "5.0.1", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043699#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369872#step:11:1" } ], - "duration_seconds": 287, + "duration_seconds": 290, "failed": 0, "passed": 6, "skipped": 0 @@ -61266,7 +61266,7 @@ "dashboard_link": "/linux/opensource_packages/repeatafterme", "job_url_resolution_status": "central_exact", "package_slug": "repeatafterme", - "production_refreshed_at": "2026-05-14T19:37:17.424784+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.634297+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -61280,15 +61280,15 @@ }, "run": { "attempt": "1", - "id": "25877359516", + "id": "26658670904", "job_name": "test-repeatafterme / test-repeatafterme", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:44Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990930" + "timestamp": "2026-05-29T19:47:52Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321523" }, "schema_version": "2.0", "tests": { @@ -61297,31 +61297,31 @@ "duration_seconds": 0, "name": "Test 1 - Check RAMExtend binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990930#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321523#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990930#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321523#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Verify Aarch64 binary", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990930#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321523#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990930#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321523#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990930#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321523#step:10:1" }, { "comparison": "Current pinned RepeatAfterMe version 0.0.6 passed smoke tests in this run. Regression validation rebuilt candidate version 0.0.7 on Arm64, the binary was confirmed as AArch64, and the command-line usage path still works.", @@ -61333,7 +61333,7 @@ "next_installed_version": "0.0.7", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990930#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321523#step:11:1" } ], "duration_seconds": 5, @@ -61351,7 +61351,7 @@ "dashboard_link": "/linux/opensource_packages/repeatmasker", "job_url_resolution_status": "central_exact", "package_slug": "repeatmasker", - "production_refreshed_at": "2026-05-14T19:37:17.424977+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.634478+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -61365,15 +61365,15 @@ }, "run": { "attempt": "1", - "id": "25877375677", + "id": "26658685142", "job_name": "test-repeatmasker / test-repeatmasker", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:04Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043698" + "timestamp": "2026-05-29T19:48:12Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370682" }, "schema_version": "2.0", "tests": { @@ -61382,46 +61382,46 @@ "duration_seconds": 0, "name": "Test 1 - Check RepeatMasker files exist", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043698#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370682#step:6:1" }, { "duration_seconds": 1, "name": "Test 2 - Check RepeatMasker version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043698#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370682#step:7:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 3 - Check RepeatMasker help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043698#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370682#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043698#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370682#step:9:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043698#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370682#step:10:1" }, { "comparison": "Current pinned RepeatMasker version 4.1.0 passed public source-bundle smoke checks in this run. Regression validation extracted candidate version 4.2.3 on Arm64 and confirmed exact version output, Perl syntax validity, and noninteractive help output. External search-engine and library configuration remain outside this public install-validation scope.", "current_version": "4.1.0", "decision": "next_install_validated", - "duration_seconds": 14, + "duration_seconds": 6, "latest_version": "4.2.3", "name": "Test 6 - Regression Validation", "next_installed_version": "4.2.3", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043698#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370682#step:11:1" } ], - "duration_seconds": 15, + "duration_seconds": 7, "failed": 0, "passed": 6, "skipped": 0 @@ -61436,7 +61436,7 @@ "dashboard_link": "/linux/opensource_packages/repeatscout", "job_url_resolution_status": "central_exact", "package_slug": "repeatscout", - "production_refreshed_at": "2026-05-14T19:37:17.425158+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.634652+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -61450,15 +61450,15 @@ }, "run": { "attempt": "1", - "id": "25877419588", + "id": "26658724696", "job_name": "test-repeatscout / test-repeatscout", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:58Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192530" + "timestamp": "2026-05-29T19:49:02Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504062" }, "schema_version": "2.0", "tests": { @@ -61467,31 +61467,31 @@ "duration_seconds": 0, "name": "Test 1 - Check RepeatScout binaries exist", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192530#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504062#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check RepeatScout version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192530#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504062#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check RepeatScout help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192530#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504062#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify Aarch64 binaries", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192530#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504062#step:9:1" }, { - "duration_seconds": 27, + "duration_seconds": 26, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192530#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504062#step:10:1" }, { "comparison": "Current pinned RepeatScout version 1.0.6 passed smoke tests in this run. Regression validation rebuilt candidate version 1.0.7 on Arm64, confirmed the binaries are AArch64, and completed the bundled sample run successfully.", @@ -61503,10 +61503,10 @@ "next_installed_version": "1.0.7", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192530#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504062#step:11:1" } ], - "duration_seconds": 55, + "duration_seconds": 54, "failed": 0, "passed": 6, "skipped": 0 @@ -61521,7 +61521,7 @@ "dashboard_link": "/linux/opensource_packages/resiliency-extension", "job_url_resolution_status": "central_exact", "package_slug": "resiliency-extension", - "production_refreshed_at": "2026-05-14T19:37:17.425339+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.634837+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -61535,15 +61535,15 @@ }, "run": { "attempt": "1", - "id": "25877431862", + "id": "26658734615", "job_name": "test-resiliency-extension / test-resiliency-extension", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:22Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265748" + "timestamp": "2026-05-29T19:49:20Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538474" }, "schema_version": "2.0", "tests": { @@ -61552,46 +61552,46 @@ "duration_seconds": 0, "name": "Test 1 - Check package-specific baseline markers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265748#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538474#step:8:1" }, { "duration_seconds": 0, "name": "Test 2 - Check published package metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265748#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538474#step:9:1" }, { "duration_seconds": 0, "name": "Test 3 - Check package-specific docs and manifests", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265748#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538474#step:10:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265748#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538474#step:11:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 5 - Run scoped Arm preflight proof", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265748#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538474#step:12:1" }, { "comparison": "Test 6 limited_cpu_smoke_validated: reran the same bounded scoped Arm source/compile/import/help/manifest preflight against the next stable candidate. This is CPU-side preflight evidence only; no GPU/CUDA driver/runtime, accelerator execution, Kubernetes cluster, or full product runtime is claimed.", "current_version": "0.3.0", "decision": "limited_cpu_smoke_validated", - "duration_seconds": 1, + "duration_seconds": 0, "latest_version": "0.5.0", "name": "Test 6 - Regression Validation", "next_installed_version": "0.5.0", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265748#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538474#step:13:1" } ], - "duration_seconds": 0, + "duration_seconds": 1, "failed": 0, "passed": 6, "skipped": 0 @@ -61606,7 +61606,7 @@ "dashboard_link": "/linux/opensource_packages/restreamer", "job_url_resolution_status": "central_exact", "package_slug": "restreamer", - "production_refreshed_at": "2026-05-14T19:37:17.425517+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.635025+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "no_newer_stable_available", @@ -61620,15 +61620,15 @@ }, "run": { "attempt": "1", - "id": "25877431862", + "id": "26658734615", "job_name": "test-restreamer / test-restreamer", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:21Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265750" + "timestamp": "2026-05-29T19:49:15Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538133" }, "schema_version": "2.0", "tests": { @@ -61637,31 +61637,31 @@ "duration_seconds": 0, "name": "Test 1 - Check package-specific baseline markers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265750#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538133#step:8:1" }, { "duration_seconds": 0, "name": "Test 2 - Check published package metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265750#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538133#step:9:1" }, { "duration_seconds": 0, "name": "Test 3 - Check package-specific docs and manifests", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265750#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538133#step:10:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265750#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538133#step:11:1" }, { - "duration_seconds": 10, + "duration_seconds": 14, "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265750#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538133#step:12:1" }, { "comparison": "Tests 1-5 run the current Arm64 Restreamer image 2.12.0. Docker Hub exposes no newer stable semver Arm64 image beyond 2.12.0; dev/nightly tags are intentionally excluded from Test 6.", @@ -61673,10 +61673,10 @@ "next_installed_version": "not_installed", "regression_result": "No newer stable Arm64 Restreamer image is available for Test 6", "status": "skipped", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265750#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538133#step:13:1" } ], - "duration_seconds": 11, + "duration_seconds": 15, "failed": 0, "passed": 5, "skipped": 1 @@ -61691,7 +61691,7 @@ "dashboard_link": "/linux/opensource_packages/rethinkdb", "job_url_resolution_status": "central_exact", "package_slug": "rethinkdb", - "production_refreshed_at": "2026-05-14T19:37:17.425690+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.635202+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -61705,15 +61705,15 @@ }, "run": { "attempt": "1", - "id": "25877371674", + "id": "26658681575", "job_name": "test-rethinkdb / test-rethinkdb", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:59Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031585" + "timestamp": "2026-05-29T19:48:07Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358090" }, "schema_version": "2.0", "tests": { @@ -61722,46 +61722,46 @@ "duration_seconds": 0, "name": "Test 1 - Check built rethinkdb binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031585#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358090#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check exact version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031585#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358090#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031585#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358090#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031585#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358090#step:9:1" }, { - "duration_seconds": 1, + "duration_seconds": 2, "name": "Test 5 - Functional validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031585#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358090#step:10:1" }, { "comparison": "Current pinned RethinkDB version 2.4.4 passed smoke tests in this run. Regression validation rebuilt candidate version 2.4.5 on Arm64, the isolated candidate binary reported version 2.4.5, and the server reached the expected Arm64 startup state.", "current_version": "2.4.4", "decision": "next_install_validated", - "duration_seconds": 793, + "duration_seconds": 791, "latest_version": "2.4.5", "name": "Test 6 - Regression Validation", "next_installed_version": "2.4.5", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031585#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358090#step:11:1" } ], - "duration_seconds": 794, + "duration_seconds": 793, "failed": 0, "passed": 6, "skipped": 0 @@ -61776,7 +61776,7 @@ "dashboard_link": "/linux/opensource_packages/reveal", "job_url_resolution_status": "central_exact", "package_slug": "reveal", - "production_refreshed_at": "2026-05-14T19:37:17.425894+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.635418+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -61790,15 +61790,15 @@ }, "run": { "attempt": "1", - "id": "25877375677", + "id": "26658685142", "job_name": "test-reveal / test-reveal", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:07Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045023" + "timestamp": "2026-05-29T19:48:16Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370279" }, "schema_version": "2.0", "tests": { @@ -61807,43 +61807,43 @@ "duration_seconds": 0, "name": "Test 1 - Artifact Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045023#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370279#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045023#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370279#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Configuration Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045023#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370279#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045023#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370279#step:10:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045023#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370279#step:11:1" }, { "comparison": "Baseline Reveal.js 5.2.1 instantiated a deck in jsdom. Test 6 installed candidate 6.0.0 and verified its package metadata plus shipped runtime browser bundle on Arm64; the latest upstream export shape no longer exposes the same CommonJS constructor path as the baseline.", "current_version": "5.2.1", "decision": "next_install_validated", - "duration_seconds": 2, + "duration_seconds": 1, "latest_version": "6.0.0", "name": "Test 6 - Regression Validation", "next_installed_version": "6.0.0", "regression_result": "Next version installed and shipped runtime bundle validated successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045023#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370279#step:12:1" } ], "duration_seconds": 2, @@ -61861,7 +61861,7 @@ "dashboard_link": "/linux/opensource_packages/rinetd", "job_url_resolution_status": "central_exact", "package_slug": "rinetd", - "production_refreshed_at": "2026-05-14T19:37:17.426080+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.635603+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -61875,15 +61875,15 @@ }, "run": { "attempt": "1", - "id": "25877367704", + "id": "26658677990", "job_name": "test-rinetd / test-rinetd", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:55Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027007" + "timestamp": "2026-05-29T19:48:03Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346982" }, "schema_version": "2.0", "tests": { @@ -61892,31 +61892,31 @@ "duration_seconds": 0, "name": "Test 1 - Check rinetd binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027007#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346982#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check exact version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027007#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346982#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027007#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346982#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027007#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346982#step:9:1" }, { "duration_seconds": 1, "name": "Test 5 - Functional validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027007#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346982#step:10:1" }, { "comparison": "Current pinned Rinetd version 0.62.0sam passed smoke tests in this run. Regression validation built candidate version 0.73 on Arm64, the isolated candidate binary reported version 0.73, and it successfully forwarded TCP traffic.", @@ -61928,7 +61928,7 @@ "next_installed_version": "0.73", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027007#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346982#step:11:1" } ], "duration_seconds": 5, @@ -61946,7 +61946,7 @@ "dashboard_link": "/linux/opensource_packages/ringdove-eda", "job_url_resolution_status": "central_exact", "package_slug": "ringdove-eda", - "production_refreshed_at": "2026-05-14T19:37:17.426255+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.635779+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -61958,15 +61958,15 @@ }, "run": { "attempt": "1", - "id": "25877431862", + "id": "26658734615", "job_name": "test-ringdove-eda / test-ringdove-eda", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:22Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265726" + "timestamp": "2026-05-29T19:49:17Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537984" }, "schema_version": "2.0", "tests": { @@ -61975,40 +61975,40 @@ "duration_seconds": 0, "name": "Test 1 - Package-manager install evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265726#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537984#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Installed Arm64 package metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265726#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537984#step:7:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 3 - CLI version starts on Arm", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265726#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537984#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Arm64 runner gate", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265726#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537984#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Headless runtime smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265726#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537984#step:10:1" }, { "duration_seconds": 0, "name": "Test 6 - Regression validation applicability", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265726#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537984#step:11:1" } ], - "duration_seconds": 1, + "duration_seconds": 0, "failed": 0, "passed": 6, "skipped": 0 @@ -62023,7 +62023,7 @@ "dashboard_link": "/linux/opensource_packages/rke2", "job_url_resolution_status": "central_exact", "package_slug": "rke2", - "production_refreshed_at": "2026-05-14T19:37:17.426425+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.635957+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -62037,15 +62037,15 @@ }, "run": { "attempt": "1", - "id": "25877375677", + "id": "26658685142", "job_name": "test-rke2 / test-rke2", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:01Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044936" + "timestamp": "2026-05-29T19:48:10Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370332" }, "schema_version": "2.0", "tests": { @@ -62054,31 +62054,31 @@ "duration_seconds": 0, "name": "Test 1 - Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044936#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370332#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044936#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370332#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Help Output Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044936#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370332#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044936#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370332#step:9:1" }, { "duration_seconds": 25, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044936#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370332#step:10:1" }, { "comparison": "Current pinned RKE2 release 1.33.5+rke2r1 passed smoke tests in this run. Regression validation installed candidate version 1.33.6+rke2r1 from the official Linux arm64 tarball, and the extracted rke2 binary reported version 1.33.6+rke2r1 on Arm64.", @@ -62090,7 +62090,7 @@ "next_installed_version": "1.33.6+rke2r1", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044936#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370332#step:11:1" } ], "duration_seconds": 26, @@ -62108,7 +62108,7 @@ "dashboard_link": "/linux/opensource_packages/rmblast", "job_url_resolution_status": "central_exact", "package_slug": "rmblast", - "production_refreshed_at": "2026-05-14T19:37:17.426595+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.636141+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -62122,15 +62122,15 @@ }, "run": { "attempt": "1", - "id": "25877379982", + "id": "26658688675", "job_name": "test-rmblast / test-rmblast", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:05Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056514" + "timestamp": "2026-05-29T19:48:14Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380546" }, "schema_version": "2.0", "tests": { @@ -62139,46 +62139,46 @@ "duration_seconds": 0, "name": "Test 1 - Check RMBlast binaries exist", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056514#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380546#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check pinned release version", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056514#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380546#step:7:1" }, { "duration_seconds": 1, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056514#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380546#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056514#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380546#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056514#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380546#step:10:1" }, { "comparison": "Current pinned RMBlast release 2.14.1 passed a full Arm64 source build plus makeblastdb/rmblastn self-hit smoke in Tests 1-5. Test 6 downloaded the next public RMBlast patch 2.17.1, selected NCBI BLAST source 2.17.0, applied the patch on the Arm64 runner, built and installed the candidate, verified the candidate rmblastn binary is AArch64, and reran the makeblastdb/rmblastn self-hit runtime smoke successfully.", "current_version": "2.14.1", "decision": "next_install_validated", - "duration_seconds": 2337, + "duration_seconds": 2325, "latest_version": "2.17.1", "name": "Test 6 - Regression Validation", "next_installed_version": "2.17.1", "regression_result": "Next version built and passed runtime smoke on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056514#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380546#step:11:1" } ], - "duration_seconds": 2338, + "duration_seconds": 2326, "failed": 0, "passed": 6, "skipped": 0 @@ -62193,7 +62193,7 @@ "dashboard_link": "/linux/opensource_packages/rmm", "job_url_resolution_status": "central_exact", "package_slug": "rmm", - "production_refreshed_at": "2026-05-14T19:37:17.426783+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.636361+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -62207,63 +62207,63 @@ }, "run": { "attempt": "1", - "id": "25877431862", + "id": "26658734615", "job_name": "test-rmm / test-rmm", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:21Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265787" + "timestamp": "2026-05-29T19:49:17Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537933" }, "schema_version": "2.0", "tests": { "details": [ { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 1 - Check package-specific baseline markers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265787#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537933#step:8:1" }, { "duration_seconds": 0, "name": "Test 2 - Check published package metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265787#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537933#step:9:1" }, { "duration_seconds": 0, "name": "Test 3 - Check package-specific docs and manifests", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265787#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537933#step:10:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265787#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537933#step:11:1" }, { "duration_seconds": 0, "name": "Test 5 - Run scoped Arm preflight proof", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265787#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537933#step:12:1" }, { "comparison": "Test 6 limited_cpu_smoke_validated: reran the same bounded scoped Arm source/compile/import/help/manifest preflight against the next stable candidate. This is CPU-side preflight evidence only; no GPU/CUDA driver/runtime, accelerator execution, Kubernetes cluster, or full product runtime is claimed.", "current_version": "23.12.00", "decision": "limited_cpu_smoke_validated", - "duration_seconds": 0, + "duration_seconds": 1, "latest_version": "26.04.00", "name": "Test 6 - Regression Validation", "next_installed_version": "26.04.00", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265787#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537933#step:13:1" } ], - "duration_seconds": 0, + "duration_seconds": 1, "failed": 0, "passed": 6, "skipped": 0 @@ -62278,7 +62278,7 @@ "dashboard_link": "/linux/opensource_packages/robot-framework", "job_url_resolution_status": "central_exact", "package_slug": "robot-framework", - "production_refreshed_at": "2026-05-14T19:37:17.426990+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.636544+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -62290,15 +62290,15 @@ }, "run": { "attempt": "1", - "id": "25877359516", + "id": "26658670904", "job_name": "test-robot-framework / test-robot-framework", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:44Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991266" + "timestamp": "2026-05-29T19:47:51Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321879" }, "schema_version": "2.0", "tests": { @@ -62307,40 +62307,40 @@ "duration_seconds": 0, "name": "Test 1 - Check robot binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991266#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321879#step:6:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 2 - Check robot version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991266#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321879#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check robot help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991266#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321879#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991266#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321879#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation (Real Test Execution)", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991266#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321879#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991266#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321879#step:11:1" } ], - "duration_seconds": 1, + "duration_seconds": 0, "failed": 0, "passed": 6, "skipped": 0 @@ -62355,7 +62355,7 @@ "dashboard_link": "/linux/opensource_packages/rocketmq", "job_url_resolution_status": "central_exact", "package_slug": "rocketmq", - "production_refreshed_at": "2026-05-14T19:37:17.427187+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.636714+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -62369,15 +62369,15 @@ }, "run": { "attempt": "1", - "id": "25877399008", + "id": "26658707245", "job_name": "test-rocketmq / test-rocketmq", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:32Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126184" + "timestamp": "2026-05-29T19:48:39Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445401" }, "schema_version": "2.0", "tests": { @@ -62386,31 +62386,31 @@ "duration_seconds": 0, "name": "Test 1 - Check RocketMQ binaries exist", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126184#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445401#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check pinned release version", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126184#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445401#step:7:1" }, { - "duration_seconds": 2, + "duration_seconds": 1, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126184#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445401#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126184#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445401#step:9:1" }, { - "duration_seconds": 6, + "duration_seconds": 8, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126184#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445401#step:10:1" }, { "comparison": "Current pinned RocketMQ release 5.3.3 passed smoke tests in this run. Regression validation downloaded candidate 5.3.4, the extracted lib payload reported 5.3.4, and the candidate nameserver passed the real clusterList smoke on Arm64.", @@ -62422,10 +62422,10 @@ "next_installed_version": "5.3.4", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126184#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445401#step:11:1" } ], - "duration_seconds": 22, + "duration_seconds": 23, "failed": 0, "passed": 6, "skipped": 0 @@ -62440,7 +62440,7 @@ "dashboard_link": "/linux/opensource_packages/rocksdb", "job_url_resolution_status": "central_exact", "package_slug": "rocksdb", - "production_refreshed_at": "2026-05-14T19:37:17.427418+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.636886+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -62452,15 +62452,15 @@ }, "run": { "attempt": "1", - "id": "25877355625", + "id": "26658667828", "job_name": "test-rocksdb / test-rocksdb", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:39Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976563" + "timestamp": "2026-05-29T19:47:54Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308923" }, "schema_version": "2.0", "tests": { @@ -62469,40 +62469,40 @@ "duration_seconds": 0, "name": "Test 1 - Check RocksDB library is installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976563#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308923#step:7:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 2 - Check RocksDB header files exist", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976563#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308923#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Check RocksDB shared library exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976563#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308923#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Check ldb tool (RocksDB command-line tool)", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976563#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308923#step:10:1" }, { "duration_seconds": 0, "name": "Test 5 - Create and query a simple RocksDB database", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976563#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308923#step:11:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976563#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308923#step:12:1" } ], - "duration_seconds": 1, + "duration_seconds": 0, "failed": 0, "passed": 6, "skipped": 0 @@ -62517,7 +62517,7 @@ "dashboard_link": "/linux/opensource_packages/rocksdbjni", "job_url_resolution_status": "central_exact", "package_slug": "rocksdbjni", - "production_refreshed_at": "2026-05-14T19:37:17.427630+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.637058+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -62531,63 +62531,63 @@ }, "run": { "attempt": "1", - "id": "25877371674", + "id": "26658681575", "job_name": "test-rocksdbjni / test-rocksdbjni", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:02Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031749" + "timestamp": "2026-05-29T19:48:08Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358518" }, "schema_version": "2.0", "tests": { "details": [ { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 1 - Check RocksDBjni jar and Arm64 native library", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031749#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358518#step:6:1" }, { - "duration_seconds": 4, + "duration_seconds": 3, "name": "Test 2 - Check RocksDBjni version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031749#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358518#step:7:1" }, { - "duration_seconds": 1, + "duration_seconds": 2, "name": "Test 3 - Check Maven dependency resolution", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031749#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358518#step:8:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031749#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358518#step:9:1" }, { "duration_seconds": 1, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031749#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358518#step:10:1" }, { "comparison": "Current pinned RocksDBjni version 10.5.1 passed smoke tests in this run. Regression validation installed candidate version 10.8.3 from Maven Central on Arm64, confirmed the bundled aarch64 native library, and passed the real put/get smoke successfully.", "current_version": "10.5.1", "decision": "next_install_validated", - "duration_seconds": 6, + "duration_seconds": 7, "latest_version": "10.8.3", "name": "Test 6 - Regression Validation", "next_installed_version": "10.8.3", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031749#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358518#step:11:1" } ], - "duration_seconds": 13, + "duration_seconds": 14, "failed": 0, "passed": 6, "skipped": 0 @@ -62602,7 +62602,7 @@ "dashboard_link": "/linux/opensource_packages/rocky_linux", "job_url_resolution_status": "central_exact", "package_slug": "rocky_linux", - "production_refreshed_at": "2026-05-14T19:37:17.427981+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.637355+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -62616,15 +62616,15 @@ }, "run": { "attempt": "1", - "id": "25877395502", + "id": "26658703674", "job_name": "test-rocky_linux / test-rocky_linux", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:25Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110147" + "timestamp": "2026-05-29T19:48:34Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432976" }, "schema_version": "2.0", "tests": { @@ -62633,31 +62633,31 @@ "duration_seconds": 0, "name": "Test 1 - Image Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110147#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432976#step:6:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110147#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432976#step:7:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 3 - Help Output or Configuration", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110147#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432976#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110147#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432976#step:9:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110147#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432976#step:10:1" }, { "comparison": "Current pinned Rocky Linux version 9.7 passed smoke tests in this run. Regression validation pulled candidate image rockylinux/rockylinux:10.0 on Arm64 successfully, and the container reported VERSION_ID=10.0 with a working dnf runtime.", @@ -62669,10 +62669,10 @@ "next_installed_version": "10.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110147#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432976#step:11:1" } ], - "duration_seconds": 7, + "duration_seconds": 8, "failed": 0, "passed": 6, "skipped": 0 @@ -62687,7 +62687,7 @@ "dashboard_link": "/linux/opensource_packages/rook", "job_url_resolution_status": "central_exact", "package_slug": "rook", - "production_refreshed_at": "2026-05-14T19:37:17.428183+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.637554+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -62701,15 +62701,15 @@ }, "run": { "attempt": "1", - "id": "25877403044", + "id": "26658710721", "job_name": "test-rook / test-rook", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:38Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140629" + "timestamp": "2026-05-29T19:48:43Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456335" }, "schema_version": "2.0", "tests": { @@ -62718,46 +62718,46 @@ "duration_seconds": 0, "name": "Test 1 - Check Rook binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140629#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456335#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140629#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456335#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140629#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456335#step:8:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 4 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140629#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456335#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140629#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456335#step:10:1" }, { "comparison": "Current pinned Rook version 1.15.8 passed smoke tests in this run. Regression validation built candidate version 1.15.9 from the official source tag on Arm64, stamped the binary with the exact version, and verified the main CLI help path successfully.", "current_version": "1.15.8", "decision": "next_install_validated", - "duration_seconds": 19, + "duration_seconds": 18, "latest_version": "1.15.9", "name": "Test 6 - Regression Validation", "next_installed_version": "1.15.9", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140629#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456335#step:11:1" } ], - "duration_seconds": 20, + "duration_seconds": 18, "failed": 0, "passed": 6, "skipped": 0 @@ -62772,7 +62772,7 @@ "dashboard_link": "/linux/opensource_packages/rqlite", "job_url_resolution_status": "central_exact", "package_slug": "rqlite", - "production_refreshed_at": "2026-05-14T19:37:17.428417+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.637742+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -62786,15 +62786,15 @@ }, "run": { "attempt": "1", - "id": "25877359516", + "id": "26658670904", "job_name": "test-rqlite / test-rqlite", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:43Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991599" + "timestamp": "2026-05-29T19:47:52Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321830" }, "schema_version": "2.0", "tests": { @@ -62803,43 +62803,43 @@ "duration_seconds": 0, "name": "Test 1 - Check rqlite binaries exist", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991599#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321830#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991599#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321830#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991599#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321830#step:8:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 4 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991599#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321830#step:9:1" }, { "duration_seconds": 2, "name": "Test 5 - Functional validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991599#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321830#step:10:1" }, { "comparison": "Current pinned Rqlite version 8.36.17 passed smoke tests in this run. Regression validation installed candidate version 8.36.18 on Arm64, the candidate binaries reported the expected version, and the isolated rqlited instance completed a create/insert/query HTTP smoke successfully.", "current_version": "8.36.17", "decision": "next_install_validated", - "duration_seconds": 3, + "duration_seconds": 2, "latest_version": "8.36.18", "name": "Test 6 - Regression Validation", "next_installed_version": "8.36.18", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991599#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321830#step:11:1" } ], "duration_seconds": 5, @@ -62857,7 +62857,7 @@ "dashboard_link": "/linux/opensource_packages/ruby", "job_url_resolution_status": "central_exact", "package_slug": "ruby", - "production_refreshed_at": "2026-05-14T19:37:17.428621+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.637930+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -62871,15 +62871,15 @@ }, "run": { "attempt": "1", - "id": "25877423406", + "id": "26658727918", "job_name": "test-ruby / test-ruby", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:06Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210296" + "timestamp": "2026-05-29T19:49:07Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515874" }, "schema_version": "2.0", "tests": { @@ -62888,46 +62888,46 @@ "duration_seconds": 0, "name": "Test 1 - Check Ruby binaries exist", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210296#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515874#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210296#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515874#step:7:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210296#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515874#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210296#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515874#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210296#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515874#step:10:1" }, { - "comparison": "Current pinned Ruby version 3.4.0 passed smoke tests in this run. Regression validation built candidate version 4.0.4 from the official source tarball on Arm64, confirmed the installed interpreter reports the expected version, and reran the Ruby/gem/irb smoke path successfully.", + "comparison": "Current pinned Ruby version 3.4.0 passed smoke tests in this run. Regression validation built candidate version 4.0.5 from the official source tarball on Arm64, confirmed the installed interpreter reports the expected version, and reran the Ruby/gem/irb smoke path successfully.", "current_version": "3.4.0", "decision": "next_install_validated", "duration_seconds": 133, - "latest_version": "4.0.4", + "latest_version": "4.0.5", "name": "Test 6 - Regression Validation", - "next_installed_version": "4.0.4", + "next_installed_version": "4.0.5", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210296#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515874#step:11:1" } ], - "duration_seconds": 134, + "duration_seconds": 133, "failed": 0, "passed": 6, "skipped": 0 @@ -62942,7 +62942,7 @@ "dashboard_link": "/linux/opensource_packages/rubyonrails", "job_url_resolution_status": "central_exact", "package_slug": "rubyonrails", - "production_refreshed_at": "2026-05-14T19:37:17.428853+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.638111+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -62954,15 +62954,15 @@ }, "run": { "attempt": "1", - "id": "25877403044", + "id": "26658710721", "job_name": "test-rubyonrails / test-rubyonrails", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:39Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140557" + "timestamp": "2026-05-29T19:48:46Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456267" }, "schema_version": "2.0", "tests": { @@ -62971,37 +62971,37 @@ "duration_seconds": 0, "name": "Test 1 - Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140557#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456267#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140557#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456267#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140557#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456267#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140557#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456267#step:10:1" }, { "duration_seconds": 48, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140557#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456267#step:11:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140557#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456267#step:12:1" } ], "duration_seconds": 48, @@ -63019,7 +63019,7 @@ "dashboard_link": "/linux/opensource_packages/rundeck", "job_url_resolution_status": "central_exact", "package_slug": "rundeck", - "production_refreshed_at": "2026-05-14T19:37:17.429076+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.638303+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -63033,15 +63033,15 @@ }, "run": { "attempt": "1", - "id": "25877415436", + "id": "26658721315", "job_name": "test-rundeck / test-rundeck", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:55Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181309" + "timestamp": "2026-05-29T19:48:56Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491569" }, "schema_version": "2.0", "tests": { @@ -63050,31 +63050,31 @@ "duration_seconds": 0, "name": "Test 1 - Check Rundeck launcher exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181309#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491569#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check pinned release artifact metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181309#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491569#step:7:1" }, { "duration_seconds": 3, "name": "Test 3 - Check launcher help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181309#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491569#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181309#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491569#step:9:1" }, { "duration_seconds": 2, "name": "Test 5 - Functional validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181309#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491569#step:10:1" }, { "comparison": "Current pinned Rundeck version 5.11.0 passed smoke tests in this run. Regression validation downloaded the official community launcher war for 5.11.1, confirmed the expected application resources are present, and ran the bounded launcher help output successfully on Arm64.", @@ -63086,7 +63086,7 @@ "next_installed_version": "5.11.1", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181309#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491569#step:11:1" } ], "duration_seconds": 7, @@ -63104,7 +63104,7 @@ "dashboard_link": "/linux/opensource_packages/rust", "job_url_resolution_status": "central_exact", "package_slug": "rust", - "production_refreshed_at": "2026-05-14T19:37:17.429271+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.638482+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -63116,15 +63116,15 @@ }, "run": { "attempt": "1", - "id": "25877392111", + "id": "26658699892", "job_name": "test-rust / test-rust", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:22Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096514" + "timestamp": "2026-05-29T19:48:30Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420577" }, "schema_version": "2.0", "tests": { @@ -63133,40 +63133,40 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096514#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420577#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096514#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420577#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096514#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420577#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096514#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420577#step:9:1" }, { - "duration_seconds": 5, + "duration_seconds": 4, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096514#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420577#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096514#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420577#step:11:1" } ], - "duration_seconds": 5, + "duration_seconds": 4, "failed": 0, "passed": 6, "skipped": 0 @@ -63181,7 +63181,7 @@ "dashboard_link": "/linux/opensource_packages/salmon", "job_url_resolution_status": "central_exact", "package_slug": "salmon", - "production_refreshed_at": "2026-05-14T19:37:17.429485+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.638654+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -63195,15 +63195,15 @@ }, "run": { "attempt": "1", - "id": "25877415436", + "id": "26658721315", "job_name": "test-salmon / test-salmon", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:50Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179915" + "timestamp": "2026-05-29T19:48:56Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575490862" }, "schema_version": "2.0", "tests": { @@ -63212,31 +63212,31 @@ "duration_seconds": 0, "name": "Test 1 - Check salmon binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179915#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575490862#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179915#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575490862#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179915#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575490862#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179915#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575490862#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179915#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575490862#step:10:1" }, { "comparison": "Current pinned Salmon version 1.10.1 passed smoke tests in this run. Regression validation installed candidate 1.11.0 via official_aarch64_asset, the candidate binary reported the expected version, and it completed the same tiny transcriptome index plus quantification smoke successfully on Arm64.", @@ -63248,7 +63248,7 @@ "next_installed_version": "1.11.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179915#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575490862#step:11:1" } ], "duration_seconds": 2, @@ -63266,7 +63266,7 @@ "dashboard_link": "/linux/opensource_packages/salt", "job_url_resolution_status": "central_exact", "package_slug": "salt", - "production_refreshed_at": "2026-05-14T19:37:17.429704+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.638834+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -63278,15 +63278,15 @@ }, "run": { "attempt": "1", - "id": "25877419588", + "id": "26658724696", "job_name": "test-salt / test-salt", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:01Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192289" + "timestamp": "2026-05-29T19:49:02Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504156" }, "schema_version": "2.0", "tests": { @@ -63295,37 +63295,37 @@ "duration_seconds": 0, "name": "Test 1 - Check salt-call CLI exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192289#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504156#step:6:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 2 - Check version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192289#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504156#step:7:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192289#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504156#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192289#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504156#step:9:1" }, { "duration_seconds": 2, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192289#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504156#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192289#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504156#step:11:1" } ], "duration_seconds": 3, @@ -63343,7 +63343,7 @@ "dashboard_link": "/linux/opensource_packages/samba", "job_url_resolution_status": "central_exact", "package_slug": "samba", - "production_refreshed_at": "2026-05-14T19:37:17.429956+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.639002+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -63357,15 +63357,15 @@ }, "run": { "attempt": "1", - "id": "25877379982", + "id": "26658688675", "job_name": "test-samba / test-samba", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:06Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057179" + "timestamp": "2026-05-29T19:48:15Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380576" }, "schema_version": "2.0", "tests": { @@ -63374,46 +63374,46 @@ "duration_seconds": 0, "name": "Test 1 - Check smbclient binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057179#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380576#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check exact version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057179#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380576#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057179#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380576#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057179#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380576#step:9:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 5 - Functional validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057179#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380576#step:10:1" }, { "comparison": "Current pinned Samba version 4.23.6 passed smoke tests in this run. Regression validation rebuilt candidate version 4.23.7 on Arm64, the candidate binary reported version 4.23.7, and the bounded localhost client-connection smoke completed successfully.", "current_version": "4.23.6", "decision": "next_install_validated", - "duration_seconds": 126, + "duration_seconds": 135, "latest_version": "4.23.7", "name": "Test 6 - Regression Validation", "next_installed_version": "4.23.7", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057179#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380576#step:11:1" } ], - "duration_seconds": 126, + "duration_seconds": 135, "failed": 0, "passed": 6, "skipped": 0 @@ -63428,7 +63428,7 @@ "dashboard_link": "/linux/opensource_packages/saspy", "job_url_resolution_status": "central_exact", "package_slug": "saspy", - "production_refreshed_at": "2026-05-14T19:37:17.430190+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.639181+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -63440,15 +63440,15 @@ }, "run": { "attempt": "1", - "id": "25877403044", + "id": "26658710721", "job_name": "test-saspy / test-saspy", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:38Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140637" + "timestamp": "2026-05-29T19:48:44Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456272" }, "schema_version": "2.0", "tests": { @@ -63457,37 +63457,37 @@ "duration_seconds": 0, "name": "Test 1 - Check module import", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140637#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456272#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140637#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456272#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check API surface", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140637#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456272#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140637#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456272#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140637#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456272#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140637#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456272#step:11:1" } ], "duration_seconds": 0, @@ -63505,7 +63505,7 @@ "dashboard_link": "/linux/opensource_packages/scala", "job_url_resolution_status": "central_exact", "package_slug": "scala", - "production_refreshed_at": "2026-05-14T19:37:17.430390+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.639404+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -63519,15 +63519,15 @@ }, "run": { "attempt": "1", - "id": "25877383844", + "id": "26658692522", "job_name": "test-scala / test-scala", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:13Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071312" + "timestamp": "2026-05-29T19:48:22Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394942" }, "schema_version": "2.0", "tests": { @@ -63536,46 +63536,46 @@ "duration_seconds": 0, "name": "Test 1 - Check scala and scalac exist", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071312#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394942#step:6:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 2 - Check exact version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071312#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394942#step:7:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071312#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394942#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071312#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394942#step:9:1" }, { - "duration_seconds": 6, + "duration_seconds": 5, "name": "Test 5 - Functional validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071312#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394942#step:10:1" }, { "comparison": "Current pinned Scala version 3.6.4 passed smoke tests in this run. Regression validation installed candidate version 3.7.0 from the official Arm64 tarball, the candidate launcher reported version 3.7.0, and the compile-and-run Hello World smoke completed successfully.", "current_version": "3.6.4", "decision": "next_install_validated", - "duration_seconds": 7, + "duration_seconds": 6, "latest_version": "3.7.0", "name": "Test 6 - Regression Validation", "next_installed_version": "3.7.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071312#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394942#step:11:1" } ], - "duration_seconds": 14, + "duration_seconds": 12, "failed": 0, "passed": 6, "skipped": 0 @@ -63590,7 +63590,7 @@ "dashboard_link": "/linux/opensource_packages/scikit-learn", "job_url_resolution_status": "central_exact", "package_slug": "scikit-learn", - "production_refreshed_at": "2026-05-14T19:37:17.430597+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.639596+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -63602,57 +63602,57 @@ }, "run": { "attempt": "1", - "id": "25877371674", + "id": "26658681575", "job_name": "test-scikit-learn / test-scikit-learn", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:58Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031709" + "timestamp": "2026-05-29T19:48:07Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358285" }, "schema_version": "2.0", "tests": { "details": [ { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 1 - Check Scikit-learn module import", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031709#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358285#step:6:1" }, { "duration_seconds": 1, "name": "Test 2 - Check version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031709#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358285#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check pip show", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031709#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358285#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031709#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358285#step:9:1" }, { "duration_seconds": 1, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031709#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358285#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031709#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358285#step:11:1" } ], - "duration_seconds": 3, + "duration_seconds": 2, "failed": 0, "passed": 6, "skipped": 0 @@ -63667,7 +63667,7 @@ "dashboard_link": "/linux/opensource_packages/scipy", "job_url_resolution_status": "central_exact", "package_slug": "scipy", - "production_refreshed_at": "2026-05-14T19:37:17.430813+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.639777+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -63679,15 +63679,15 @@ }, "run": { "attempt": "1", - "id": "25877411197", + "id": "26658717942", "job_name": "test-scipy / test-scipy", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:59Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175604" + "timestamp": "2026-05-29T19:48:59Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480020" }, "schema_version": "2.0", "tests": { @@ -63696,40 +63696,40 @@ "duration_seconds": 0, "name": "Test 1 - Package Availability", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175604#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480020#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175604#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480020#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Configuration Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175604#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480020#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175604#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480020#step:10:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175604#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480020#step:11:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175604#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480020#step:12:1" } ], - "duration_seconds": 1, + "duration_seconds": 0, "failed": 0, "passed": 6, "skipped": 0 @@ -63744,7 +63744,7 @@ "dashboard_link": "/linux/opensource_packages/seastar", "job_url_resolution_status": "central_exact", "package_slug": "seastar", - "production_refreshed_at": "2026-05-14T19:37:17.431001+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.639949+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -63758,15 +63758,15 @@ }, "run": { "attempt": "1", - "id": "25877399008", + "id": "26658707245", "job_name": "test-seastar / test-seastar", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:31Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048124809" + "timestamp": "2026-05-29T19:48:39Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575444569" }, "schema_version": "2.0", "tests": { @@ -63775,31 +63775,31 @@ "duration_seconds": 0, "name": "Test 1 - Check baseline source tree", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048124809#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575444569#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check release tag version", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048124809#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575444569#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check configure help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048124809#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575444569#step:8:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048124809#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575444569#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional source validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048124809#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575444569#step:10:1" }, { "comparison": "Current pinned Seastar release 17.05.0 passed source validation in this run. Regression validation cloned the next stable source tag 18.08.0, and its configure and dependency scripts validated successfully on Arm64.", @@ -63811,10 +63811,10 @@ "next_installed_version": "18.08.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048124809#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575444569#step:11:1" } ], - "duration_seconds": 2, + "duration_seconds": 1, "failed": 0, "passed": 6, "skipped": 0 @@ -63829,7 +63829,7 @@ "dashboard_link": "/linux/opensource_packages/seata", "job_url_resolution_status": "central_exact", "package_slug": "seata", - "production_refreshed_at": "2026-05-14T19:37:17.431184+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.640119+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "no_newer_stable_available", @@ -63843,15 +63843,15 @@ }, "run": { "attempt": "1", - "id": "25877367704", + "id": "26658677990", "job_name": "test-seata / test-seata", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:55Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026691" + "timestamp": "2026-05-29T19:48:03Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347488" }, "schema_version": "2.0", "tests": { @@ -63860,31 +63860,31 @@ "duration_seconds": 0, "name": "Test 1 - Check Seata Script", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026691#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347488#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Java dependency", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026691#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347488#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Seata Config", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026691#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347488#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026691#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347488#step:10:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026691#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347488#step:11:1" }, { "comparison": "Current pinned Seata version 2.6.0 passed smoke tests in this run. The public Apache mirror currently exposes 2.6.0 as the stable binary available for this dashboard path, so there is no newer stable Seata binary for a real Test 6 upgrade validation.", @@ -63896,7 +63896,7 @@ "next_installed_version": "2.6.0", "regression_result": "No newer stable Seata binary is available from the public Apache mirror", "status": "skipped", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026691#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347488#step:12:1" } ], "duration_seconds": 0, @@ -63914,7 +63914,7 @@ "dashboard_link": "/linux/opensource_packages/sendbird-uikit", "job_url_resolution_status": "central_exact", "package_slug": "sendbird-uikit", - "production_refreshed_at": "2026-05-14T19:37:17.431361+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.640322+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -63928,15 +63928,15 @@ }, "run": { "attempt": "1", - "id": "25877411197", + "id": "26658717942", "job_name": "test-sendbird-uikit / test-sendbird-uikit", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:53Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174612" + "timestamp": "2026-05-29T19:48:56Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478601" }, "schema_version": "2.0", "tests": { @@ -63945,31 +63945,31 @@ "duration_seconds": 0, "name": "Test 1 - Package Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174612#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478601#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174612#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478601#step:8:1" }, { "duration_seconds": 1, "name": "Test 3 - Dependency Tree Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174612#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478601#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174612#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478601#step:10:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174612#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478601#step:11:1" }, { "comparison": "Baseline Sendbird UIKit 3.0.0 rendered a provider subtree. Test 6 installed candidate 3.0.1 and repeated the bounded React render on Arm64.", @@ -63981,10 +63981,10 @@ "next_installed_version": "3.0.1", "regression_result": "Next version installed and rendered successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174612#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478601#step:12:1" } ], - "duration_seconds": 7, + "duration_seconds": 8, "failed": 0, "passed": 6, "skipped": 0 @@ -63999,7 +63999,7 @@ "dashboard_link": "/linux/opensource_packages/sennajs", "job_url_resolution_status": "central_exact", "package_slug": "sennajs", - "production_refreshed_at": "2026-05-14T19:37:17.431580+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.640518+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "current_is_latest_stable", @@ -64013,15 +64013,15 @@ }, "run": { "attempt": "1", - "id": "25877375677", + "id": "26658685142", "job_name": "test-sennajs / test-sennajs", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:10Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044647" + "timestamp": "2026-05-29T19:48:14Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370350" }, "schema_version": "2.0", "tests": { @@ -64030,31 +64030,31 @@ "duration_seconds": 0, "name": "Test 1 - Check Library Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044647#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370350#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044647#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370350#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Module Configuration", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044647#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370350#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044647#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370350#step:10:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044647#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370350#step:11:1" }, { "comparison": "Baseline Senna.js 2.8.0 constructed an App in jsdom; npm did not report a newer stable candidate for Test 6.", @@ -64066,10 +64066,10 @@ "next_installed_version": "not_installed", "regression_result": "No newer stable Senna.js version is available from npm", "status": "skipped", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044647#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370350#step:12:1" } ], - "duration_seconds": 1, + "duration_seconds": 0, "failed": 0, "passed": 5, "skipped": 1 @@ -64084,7 +64084,7 @@ "dashboard_link": "/linux/opensource_packages/sensu", "job_url_resolution_status": "central_exact", "package_slug": "sensu", - "production_refreshed_at": "2026-05-14T19:37:17.431790+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.640693+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -64096,15 +64096,15 @@ }, "run": { "attempt": "1", - "id": "25877423406", + "id": "26658727918", "job_name": "test-sensu / test-sensu", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:12Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210353" + "timestamp": "2026-05-29T19:49:05Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515867" }, "schema_version": "2.0", "tests": { @@ -64113,40 +64113,40 @@ "duration_seconds": 0, "name": "Test 1 - Artifact Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210353#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515867#step:6:1" }, { - "duration_seconds": 2, + "duration_seconds": 1, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210353#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515867#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Help Output Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210353#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515867#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210353#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515867#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210353#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515867#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210353#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515867#step:11:1" } ], - "duration_seconds": 2, + "duration_seconds": 1, "failed": 0, "passed": 6, "skipped": 0 @@ -64161,7 +64161,7 @@ "dashboard_link": "/linux/opensource_packages/sentry-go", "job_url_resolution_status": "central_exact", "package_slug": "sentry-go", - "production_refreshed_at": "2026-05-14T19:37:17.432015+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.640861+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -64175,15 +64175,15 @@ }, "run": { "attempt": "1", - "id": "25877406767", + "id": "26658714432", "job_name": "test-sentry-go / test-sentry-go", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:52Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154268" + "timestamp": "2026-05-29T19:48:57Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468651" }, "schema_version": "2.0", "tests": { @@ -64192,31 +64192,31 @@ "duration_seconds": 0, "name": "Test 1 - Module Availability", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154268#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468651#step:7:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154268#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468651#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154268#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468651#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154268#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468651#step:10:1" }, { - "duration_seconds": 8, + "duration_seconds": 9, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154268#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468651#step:11:1" }, { "comparison": "Baseline Sentry-Go v0.36.0 compiled and captured an event. Test 6 installed candidate v0.36.1 and ran the same custom-transport capture on Arm64.", @@ -64228,7 +64228,7 @@ "next_installed_version": "v0.36.1", "regression_result": "Next version compiled and ran successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154268#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468651#step:12:1" } ], "duration_seconds": 10, @@ -64246,7 +64246,7 @@ "dashboard_link": "/linux/opensource_packages/sentry-javascript", "job_url_resolution_status": "central_exact", "package_slug": "sentry-javascript", - "production_refreshed_at": "2026-05-14T19:37:17.432212+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.641038+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -64260,15 +64260,15 @@ }, "run": { "attempt": "1", - "id": "25877395502", + "id": "26658703674", "job_name": "test-sentry-javascript / test-sentry-javascript", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:31Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109586" + "timestamp": "2026-05-29T19:48:38Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432180" }, "schema_version": "2.0", "tests": { @@ -64277,31 +64277,31 @@ "duration_seconds": 0, "name": "Test 1 - Package Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109586#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432180#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109586#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432180#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Configuration Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109586#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432180#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109586#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432180#step:10:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109586#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432180#step:11:1" }, { "comparison": "Baseline @sentry/node 10.43.0 captured an event with a local transport. Test 6 installed candidate 10.44.0 and ran the same capture smoke on Arm64.", @@ -64313,10 +64313,10 @@ "next_installed_version": "10.44.0", "regression_result": "Next version installed and ran successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109586#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432180#step:12:1" } ], - "duration_seconds": 4, + "duration_seconds": 3, "failed": 0, "passed": 6, "skipped": 0 @@ -64331,7 +64331,7 @@ "dashboard_link": "/linux/opensource_packages/sentry-python", "job_url_resolution_status": "central_exact", "package_slug": "sentry-python", - "production_refreshed_at": "2026-05-14T19:37:17.432412+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.641212+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -64339,58 +64339,58 @@ }, "package": { "name": "Sentry-Python", - "version": "2.60.0" + "version": "2.61.0" }, "run": { "attempt": "1", - "id": "25877383844", + "id": "26658692522", "job_name": "test-sentry-python / test-sentry-python", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:13Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071730" + "timestamp": "2026-05-29T19:48:19Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394674" }, "schema_version": "2.0", "tests": { "details": [ { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 1 - Check Module Import", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071730#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394674#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Build Sentry client", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071730#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394674#step:7:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 3 - Capture scoped message", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071730#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394674#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Capture exception event", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071730#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394674#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071730#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394674#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071730#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394674#step:11:1" } ], "duration_seconds": 1, @@ -64408,7 +64408,7 @@ "dashboard_link": "/linux/opensource_packages/shap", "job_url_resolution_status": "central_exact", "package_slug": "shap", - "production_refreshed_at": "2026-05-14T19:37:17.432599+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.641415+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -64422,15 +64422,15 @@ }, "run": { "attempt": "1", - "id": "25877435852", + "id": "26658737633", "job_name": "test-shap / test-shap", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:24Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251101" + "timestamp": "2026-05-29T19:49:31Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549322" }, "schema_version": "2.0", "tests": { @@ -64439,46 +64439,46 @@ "duration_seconds": 0, "name": "Test 1 - Check package-specific baseline markers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251101#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549322#step:9:1" }, { "duration_seconds": 0, "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251101#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549322#step:10:1" }, { "duration_seconds": 0, "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251101#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549322#step:11:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251101#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549322#step:12:1" }, { - "duration_seconds": 23, + "duration_seconds": 28, "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251101#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549322#step:13:1" }, { "comparison": "Installed the next SHAP candidate on Arm64, trained a tiny model, and computed SHAP values.", "current_version": "0.42.1", "decision": "limited_cpu_smoke_validated", - "duration_seconds": 36, + "duration_seconds": 27, "latest_version": "0.51.0", "name": "Test 6 - Regression Validation", "next_installed_version": "0.51.0", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251101#step:15:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549322#step:15:1" } ], - "duration_seconds": 59, + "duration_seconds": 55, "failed": 0, "passed": 6, "skipped": 0 @@ -64493,7 +64493,7 @@ "dashboard_link": "/linux/opensource_packages/shiny", "job_url_resolution_status": "central_exact", "package_slug": "shiny", - "production_refreshed_at": "2026-05-14T19:37:17.432907+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.641686+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -64505,54 +64505,54 @@ }, "run": { "attempt": "1", - "id": "25877392111", + "id": "26658699892", "job_name": "test-shiny / test-shiny", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:21Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096563" + "timestamp": "2026-05-29T19:48:30Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420814" }, "schema_version": "2.0", "tests": { "details": [ { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 1 - Check Package Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096563#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420814#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096563#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420814#step:7:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 3 - Check Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096563#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420814#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096563#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420814#step:9:1" }, { - "duration_seconds": 1, + "duration_seconds": 2, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096563#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420814#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096563#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420814#step:11:1" } ], "duration_seconds": 2, @@ -64570,7 +64570,7 @@ "dashboard_link": "/linux/opensource_packages/shopify", "job_url_resolution_status": "central_exact", "package_slug": "shopify", - "production_refreshed_at": "2026-05-14T19:37:17.433091+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.641863+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -64582,15 +64582,15 @@ }, "run": { "attempt": "1", - "id": "25877383844", + "id": "26658692522", "job_name": "test-shopify / test-shopify", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:13Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048070659" + "timestamp": "2026-05-29T19:48:19Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575393148" }, "schema_version": "2.0", "tests": { @@ -64599,40 +64599,40 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048070659#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575393148#step:6:1" }, { "duration_seconds": 2, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048070659#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575393148#step:7:1" }, { - "duration_seconds": 2, + "duration_seconds": 3, "name": "Test 3 - Check Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048070659#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575393148#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048070659#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575393148#step:9:1" }, { "duration_seconds": 1, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048070659#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575393148#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048070659#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575393148#step:11:1" } ], - "duration_seconds": 5, + "duration_seconds": 6, "failed": 0, "passed": 6, "skipped": 0 @@ -64647,7 +64647,7 @@ "dashboard_link": "/linux/opensource_packages/signalfx-agent", "job_url_resolution_status": "central_exact", "package_slug": "signalfx-agent", - "production_refreshed_at": "2026-05-14T19:37:17.433295+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.642032+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -64661,15 +64661,15 @@ }, "run": { "attempt": "1", - "id": "25877423406", + "id": "26658727918", "job_name": "test-signalfx-agent / test-signalfx-agent", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:09Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209693" + "timestamp": "2026-05-29T19:49:11Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515035" }, "schema_version": "2.0", "tests": { @@ -64678,31 +64678,31 @@ "duration_seconds": 0, "name": "Test 1 - Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209693#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515035#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209693#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515035#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Help Output Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209693#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515035#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209693#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515035#step:10:1" }, { "duration_seconds": 8, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209693#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515035#step:11:1" }, { "comparison": "Current pinned SignalFX-Agent version 5.27.0 passed smoke tests in this run. Regression validation rebuilt and executed the candidate Arm64 source from https://codeload.github.com/signalfx/signalfx-agent/tar.gz/refs/tags/v5.27.1 successfully.", @@ -64714,7 +64714,7 @@ "next_installed_version": "5.27.1", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209693#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515035#step:12:1" } ], "duration_seconds": 26, @@ -64732,7 +64732,7 @@ "dashboard_link": "/linux/opensource_packages/signoz", "job_url_resolution_status": "central_exact", "package_slug": "signoz", - "production_refreshed_at": "2026-05-14T19:37:17.433523+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.642207+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -64746,15 +64746,15 @@ }, "run": { "attempt": "1", - "id": "25877387746", + "id": "26658696365", "job_name": "test-signoz / test-signoz", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:16Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048085133" + "timestamp": "2026-05-29T19:48:24Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408047" }, "schema_version": "2.0", "tests": { @@ -64763,43 +64763,43 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048085133#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408047#step:6:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048085133#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408047#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048085133#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408047#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048085133#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408047#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048085133#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408047#step:10:1" }, { "comparison": "Current pinned SigNoz version 0.115.0 passed smoke tests in this run. Regression validation reinstalled and executed the candidate Arm64 artifact from https://github.com/SigNoz/signoz/releases/download/v0.116.0/signoz-community_linux_arm64.tar.gz successfully.", "current_version": "0.115.0", "decision": "next_install_validated", - "duration_seconds": 1, + "duration_seconds": 2, "latest_version": "0.116.0", "name": "Test 6 - Regression Validation", "next_installed_version": "0.116.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048085133#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408047#step:11:1" } ], "duration_seconds": 2, @@ -64817,7 +64817,7 @@ "dashboard_link": "/linux/opensource_packages/skopeo", "job_url_resolution_status": "central_exact", "package_slug": "skopeo", - "production_refreshed_at": "2026-05-14T19:37:17.433729+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.642419+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -64831,15 +64831,15 @@ }, "run": { "attempt": "1", - "id": "25877435852", + "id": "26658737633", "job_name": "test-skopeo / test-skopeo", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:17Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252011" + "timestamp": "2026-05-29T19:49:22Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550009" }, "schema_version": "2.0", "tests": { @@ -64848,31 +64848,31 @@ "duration_seconds": 0, "name": "Test 1 - Validate baseline image manifest and pull", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252011#step:5:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550009#step:5:1" }, { "duration_seconds": 0, "name": "Test 2 - Inspect pulled baseline image", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252011#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550009#step:6:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Skopeo version", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252011#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550009#step:7:1" }, { "duration_seconds": 0, "name": "Test 4 - Check Skopeo help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252011#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550009#step:8:1" }, { "duration_seconds": 0, "name": "Test 5 - Run daemonless Skopeo inspect smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252011#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550009#step:9:1" }, { "comparison": "Skopeo candidate image(s) expose linux/arm64 manifests and pull successfully.", @@ -64884,10 +64884,10 @@ "next_installed_version": "latest", "regression_result": "Next image validation passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252011#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550009#step:10:1" } ], - "duration_seconds": 25, + "duration_seconds": 36, "failed": 0, "passed": 6, "skipped": 0 @@ -64902,7 +64902,7 @@ "dashboard_link": "/linux/opensource_packages/slang", "job_url_resolution_status": "central_exact", "package_slug": "slang", - "production_refreshed_at": "2026-05-14T19:37:17.433978+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.642598+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -64916,48 +64916,48 @@ }, "run": { "attempt": "1", - "id": "25877435852", + "id": "26658737633", "job_name": "test-slang / test-slang", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:15Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251194" + "timestamp": "2026-05-29T19:49:21Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549419" }, "schema_version": "2.0", "tests": { "details": [ { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 1 - Package installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251194#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549419#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Version metadata matches baseline", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251194#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549419#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Installed files metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251194#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549419#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251194#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549419#step:10:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251194#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549419#step:11:1" }, { "comparison": "Current pinned package version 8.0.0 passed smoke tests in this run, and the newer stable PyPI candidate 8.1.0 installed successfully on Arm64.", @@ -64969,7 +64969,7 @@ "next_installed_version": "8.1.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251194#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549419#step:12:1" } ], "duration_seconds": 5, @@ -64987,7 +64987,7 @@ "dashboard_link": "/linux/opensource_packages/slurm", "job_url_resolution_status": "central_exact", "package_slug": "slurm", - "production_refreshed_at": "2026-05-14T19:37:17.434220+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.642778+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -65001,15 +65001,15 @@ }, "run": { "attempt": "1", - "id": "25877411197", + "id": "26658717942", "job_name": "test-slurm / test-slurm", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:48Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175374" + "timestamp": "2026-05-29T19:48:51Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479541" }, "schema_version": "2.0", "tests": { @@ -65018,46 +65018,46 @@ "duration_seconds": 0, "name": "Test 1 - Check srun binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175374#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479541#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check exact version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175374#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479541#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175374#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479541#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175374#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479541#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175374#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479541#step:10:1" }, { "comparison": "Current pinned Slurm version 25.05.7 passed smoke tests in this run. Regression validation rebuilt and executed the candidate official Slurm source 25.11.4 successfully on Arm64.", "current_version": "25.05.7", "decision": "next_install_validated", - "duration_seconds": 168, + "duration_seconds": 171, "latest_version": "25.11.4", "name": "Test 6 - Regression Validation", "next_installed_version": "25.11.4", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175374#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479541#step:11:1" } ], - "duration_seconds": 168, + "duration_seconds": 171, "failed": 0, "passed": 6, "skipped": 0 @@ -65072,7 +65072,7 @@ "dashboard_link": "/linux/opensource_packages/smcpp", "job_url_resolution_status": "central_exact", "package_slug": "smcpp", - "production_refreshed_at": "2026-05-14T19:37:17.434434+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.642949+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -65084,15 +65084,15 @@ }, "run": { "attempt": "1", - "id": "25877423406", + "id": "26658727918", "job_name": "test-smcpp / test-smcpp", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:16Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209998" + "timestamp": "2026-05-29T19:49:09Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515070" }, "schema_version": "2.0", "tests": { @@ -65101,40 +65101,40 @@ "duration_seconds": 0, "name": "Test 1 - Check smc++ command exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209998#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515070#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Check exact version", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209998#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515070#step:8:1" }, { - "duration_seconds": 2, + "duration_seconds": 1, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209998#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515070#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209998#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515070#step:10:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209998#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515070#step:11:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209998#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515070#step:12:1" } ], - "duration_seconds": 2, + "duration_seconds": 1, "failed": 0, "passed": 6, "skipped": 0 @@ -65149,7 +65149,7 @@ "dashboard_link": "/linux/opensource_packages/snapcraft", "job_url_resolution_status": "central_exact", "package_slug": "snapcraft", - "production_refreshed_at": "2026-05-14T19:37:17.434612+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.643120+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -65161,15 +65161,15 @@ }, "run": { "attempt": "1", - "id": "25877371674", + "id": "26658681575", "job_name": "test-snapcraft / test-snapcraft", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:59Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031823" + "timestamp": "2026-05-29T19:48:08Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357972" }, "schema_version": "2.0", "tests": { @@ -65178,37 +65178,37 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031823#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357972#step:6:1" }, { "duration_seconds": 2, "name": "Test 2 - Check Version", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031823#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357972#step:7:1" }, { "duration_seconds": 1, "name": "Test 3 - Check Binary Help", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031823#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357972#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031823#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357972#step:9:1" }, { "duration_seconds": 2, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031823#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357972#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031823#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357972#step:11:1" } ], "duration_seconds": 5, @@ -65226,7 +65226,7 @@ "dashboard_link": "/linux/opensource_packages/snappy", "job_url_resolution_status": "central_exact", "package_slug": "snappy", - "production_refreshed_at": "2026-05-14T19:37:17.435043+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.643475+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -65240,15 +65240,15 @@ }, "run": { "attempt": "1", - "id": "25877395502", + "id": "26658703674", "job_name": "test-snappy / test-snappy", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:26Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109595" + "timestamp": "2026-05-29T19:48:34Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432290" }, "schema_version": "2.0", "tests": { @@ -65257,31 +65257,31 @@ "duration_seconds": 0, "name": "Test 1 - Check headers and library artifacts exist", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109595#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432290#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109595#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432290#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check API surface", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109595#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432290#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109595#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432290#step:9:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109595#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432290#step:10:1" }, { "comparison": "Current pinned Snappy version 1.2.1 passed smoke tests in this run. Regression validation rebuilt candidate version 1.2.2 from official source on Arm64 and confirmed the real compression/decompression round-trip succeeds.", @@ -65293,10 +65293,10 @@ "next_installed_version": "1.2.2", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109595#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432290#step:11:1" } ], - "duration_seconds": 3, + "duration_seconds": 4, "failed": 0, "passed": 6, "skipped": 0 @@ -65311,7 +65311,7 @@ "dashboard_link": "/linux/opensource_packages/snappy-java", "job_url_resolution_status": "central_exact", "package_slug": "snappy-java", - "production_refreshed_at": "2026-05-14T19:37:17.434841+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.643303+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -65323,15 +65323,15 @@ }, "run": { "attempt": "1", - "id": "25877423406", + "id": "26658727918", "job_name": "test-snappy-java / test-snappy-java", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:07Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209999" + "timestamp": "2026-05-29T19:49:05Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515846" }, "schema_version": "2.0", "tests": { @@ -65340,37 +65340,37 @@ "duration_seconds": 0, "name": "Test 1 - Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209999#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515846#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209999#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515846#step:8:1" }, { "duration_seconds": 3, "name": "Test 3 - Help Output or Configuration", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209999#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515846#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209999#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515846#step:10:1" }, { "duration_seconds": 7, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209999#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515846#step:11:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209999#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515846#step:12:1" } ], "duration_seconds": 10, @@ -65388,7 +65388,7 @@ "dashboard_link": "/linux/opensource_packages/snort", "job_url_resolution_status": "central_exact", "package_slug": "snort", - "production_refreshed_at": "2026-05-14T19:37:17.435250+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.643649+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -65400,15 +65400,15 @@ }, "run": { "attempt": "1", - "id": "25877379982", + "id": "26658688675", "job_name": "test-snort / test-snort", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:09Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057360" + "timestamp": "2026-05-29T19:48:14Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380461" }, "schema_version": "2.0", "tests": { @@ -65417,37 +65417,37 @@ "duration_seconds": 0, "name": "Test 1 - Check snort binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057360#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380461#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check snort version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057360#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380461#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check snort help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057360#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380461#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057360#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380461#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057360#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380461#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057360#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380461#step:11:1" } ], "duration_seconds": 0, @@ -65465,7 +65465,7 @@ "dashboard_link": "/linux/opensource_packages/solr", "job_url_resolution_status": "central_exact", "package_slug": "solr", - "production_refreshed_at": "2026-05-14T19:37:17.435446+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.643815+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -65479,15 +65479,15 @@ }, "run": { "attempt": "1", - "id": "25877367704", + "id": "26658677990", "job_name": "test-solr / test-solr", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:54Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026926" + "timestamp": "2026-05-29T19:48:04Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347242" }, "schema_version": "2.0", "tests": { @@ -65496,46 +65496,46 @@ "duration_seconds": 0, "name": "Test 1 - Check solr binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026926#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347242#step:6:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 2 - Check version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026926#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347242#step:7:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 3 - Check start help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026926#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347242#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026926#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347242#step:9:1" }, { - "duration_seconds": 7, + "duration_seconds": 6, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026926#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347242#step:10:1" }, { "comparison": "Current pinned Solr version 9.10.1 passed smoke tests in this run. Regression validation installed candidate version 10.0.0 from the official Apache Solr tarball on Arm64, the candidate binary reported 10.0.0 6c6c48a6f78486130682ea9c1f7a2723af5a87be - anshum - 2026-02-12 16:07:59, and the isolated admin system endpoint responded successfully.", "current_version": "9.10.1", "decision": "next_install_validated", - "duration_seconds": 25, + "duration_seconds": 36, "latest_version": "10.0.0", "name": "Test 6 - Regression Validation", "next_installed_version": "10.0.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026926#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347242#step:11:1" } ], - "duration_seconds": 28, + "duration_seconds": 38, "failed": 0, "passed": 6, "skipped": 0 @@ -65550,7 +65550,7 @@ "dashboard_link": "/linux/opensource_packages/sonarqube", "job_url_resolution_status": "central_exact", "package_slug": "sonarqube", - "production_refreshed_at": "2026-05-14T19:37:17.435648+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.643984+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -65564,15 +65564,15 @@ }, "run": { "attempt": "1", - "id": "25877395502", + "id": "26658703674", "job_name": "test-sonarqube / test-sonarqube", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:25Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109512" + "timestamp": "2026-05-29T19:48:33Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432353" }, "schema_version": "2.0", "tests": { @@ -65581,46 +65581,46 @@ "duration_seconds": 0, "name": "Test 1 - Image Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109512#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432353#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109512#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432353#step:7:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 3 - Help Output or Configuration", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109512#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432353#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109512#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432353#step:9:1" }, { - "duration_seconds": 9, + "duration_seconds": 12, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109512#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432353#step:10:1" }, { "comparison": "Current pinned SonarQube Server version 9.9.0 passed smoke tests in this run. Regression validation pulled candidate image sonarqube:9.9.1-community on Arm64 successfully, confirmed embedded build 9.9.1.69595, and reached the isolated system-status API successfully.", "current_version": "9.9.0", "decision": "next_install_validated", - "duration_seconds": 21, + "duration_seconds": 23, "latest_version": "9.9.1", "name": "Test 6 - Regression Validation", "next_installed_version": "9.9.1.69595", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109512#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432353#step:11:1" } ], - "duration_seconds": 29, + "duration_seconds": 33, "failed": 0, "passed": 6, "skipped": 0 @@ -65635,7 +65635,7 @@ "dashboard_link": "/linux/opensource_packages/sonic", "job_url_resolution_status": "central_exact", "package_slug": "sonic", - "production_refreshed_at": "2026-05-14T19:37:17.435867+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.644152+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -65647,15 +65647,15 @@ }, "run": { "attempt": "1", - "id": "25877379982", + "id": "26658688675", "job_name": "test-sonic / test-sonic", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:05Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057186" + "timestamp": "2026-05-29T19:48:14Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380716" }, "schema_version": "2.0", "tests": { @@ -65664,40 +65664,40 @@ "duration_seconds": 0, "name": "Test 1 - Check sonic binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057186#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380716#step:6:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 2 - Check sonic version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057186#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380716#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check sonic help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057186#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380716#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057186#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380716#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057186#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380716#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057186#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380716#step:11:1" } ], - "duration_seconds": 1, + "duration_seconds": 0, "failed": 0, "passed": 6, "skipped": 0 @@ -65712,7 +65712,7 @@ "dashboard_link": "/linux/opensource_packages/spack", "job_url_resolution_status": "central_exact", "package_slug": "spack", - "production_refreshed_at": "2026-05-14T19:37:17.436043+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.644339+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -65726,15 +65726,15 @@ }, "run": { "attempt": "1", - "id": "25877403044", + "id": "26658710721", "job_name": "test-spack / test-spack", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:36Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140009" + "timestamp": "2026-05-29T19:48:42Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455642" }, "schema_version": "2.0", "tests": { @@ -65743,43 +65743,43 @@ "duration_seconds": 0, "name": "Test 1 - Check Spack binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140009#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455642#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140009#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455642#step:7:1" }, { "duration_seconds": 1, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140009#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455642#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140009#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455642#step:9:1" }, { - "duration_seconds": 91, + "duration_seconds": 58, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140009#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455642#step:10:1" }, { "comparison": "Current pinned Spack version 0.23.0 passed smoke tests in this run. Regression validation cloned candidate version 0.23.1 from GitHub on Arm64, confirmed the reported version, and completed the real spec resolution path successfully.", "current_version": "0.23.0", "decision": "next_install_validated", - "duration_seconds": 54, + "duration_seconds": 49, "latest_version": "0.23.1", "name": "Test 6 - Regression Validation", "next_installed_version": "0.23.1", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140009#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455642#step:11:1" } ], "duration_seconds": 0, @@ -65797,7 +65797,7 @@ "dashboard_link": "/linux/opensource_packages/spacy", "job_url_resolution_status": "central_exact", "package_slug": "spacy", - "production_refreshed_at": "2026-05-14T19:37:17.436257+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.644511+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -65809,15 +65809,15 @@ }, "run": { "attempt": "1", - "id": "25877395502", + "id": "26658703674", "job_name": "test-spacy / test-spacy", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:26Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110076" + "timestamp": "2026-05-29T19:48:34Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433193" }, "schema_version": "2.0", "tests": { @@ -65826,37 +65826,37 @@ "duration_seconds": 0, "name": "Test 1 - Check module import", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110076#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433193#step:6:1" }, { "duration_seconds": 1, "name": "Test 2 - Check version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110076#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433193#step:7:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 3 - Check CLI help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110076#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433193#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110076#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433193#step:9:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110076#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433193#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110076#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433193#step:11:1" } ], "duration_seconds": 2, @@ -65874,7 +65874,7 @@ "dashboard_link": "/linux/opensource_packages/spark", "job_url_resolution_status": "central_exact", "package_slug": "spark", - "production_refreshed_at": "2026-05-14T19:37:17.436664+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.644872+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -65888,15 +65888,15 @@ }, "run": { "attempt": "1", - "id": "25877355625", + "id": "26658667828", "job_name": "test-spark / test-spark", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:39Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976532" + "timestamp": "2026-05-29T19:47:52Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308769" }, "schema_version": "2.0", "tests": { @@ -65905,46 +65905,46 @@ "duration_seconds": 0, "name": "Test 1 - Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976532#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308769#step:11:1" }, { "duration_seconds": 2, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976532#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308769#step:12:1" }, { "duration_seconds": 2, "name": "Test 3 - Help Or Configuration Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976532#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308769#step:13:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976532#step:14:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308769#step:14:1" }, { - "duration_seconds": 10, + "duration_seconds": 15, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976532#step:15:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308769#step:15:1" }, { "comparison": "Current pinned Spark version 3.5.3 passed smoke tests in this run. Regression validation installed candidate version 3.5.4 on Arm64, the extracted Spark distribution reported version 3.5.4, and the isolated candidate runtime completed both SparkPi and PySpark DataFrame smoke successfully.", "current_version": "3.5.3", "decision": "next_install_validated", - "duration_seconds": 873, + "duration_seconds": 580, "latest_version": "3.5.4", "name": "Test 6 - Regression Validation", "next_installed_version": "3.5.4", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976532#step:16:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308769#step:16:1" } ], - "duration_seconds": 886, + "duration_seconds": 599, "failed": 0, "passed": 6, "skipped": 0 @@ -65959,7 +65959,7 @@ "dashboard_link": "/linux/opensource_packages/spark-sql-kinesis", "job_url_resolution_status": "central_exact", "package_slug": "spark-sql-kinesis", - "production_refreshed_at": "2026-05-14T19:37:17.436452+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.644695+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "no_newer_stable_available", @@ -65973,15 +65973,15 @@ }, "run": { "attempt": "1", - "id": "25877359516", + "id": "26658670904", "job_name": "test-spark-sql-kinesis / test-spark-sql-kinesis", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:43Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991255" + "timestamp": "2026-05-29T19:47:52Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321563" }, "schema_version": "2.0", "tests": { @@ -65990,31 +65990,31 @@ "duration_seconds": 0, "name": "Test 1 - Verify Jar Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991255#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321563#step:7:1" }, { "duration_seconds": 8, "name": "Test 2 - Analyze Dependencies", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991255#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321563#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Check for Kinesis classes", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991255#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321563#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991255#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321563#step:10:1" }, { - "duration_seconds": 3, + "duration_seconds": 4, "name": "Test 5 - Load Kinesis Provider on JVM", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991255#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321563#step:11:1" }, { "comparison": "Current pinned Spark-Sql-Kinesis release 1.2.3_spark-3.2 already matches the newest stable version available on Maven Central for artifact com.roncemer.spark:spark-sql-kinesis_2.13.", @@ -66026,10 +66026,10 @@ "next_installed_version": "1.2.3_spark-3.2", "regression_result": "No newer stable release available for Test 6", "status": "skipped", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991255#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321563#step:12:1" } ], - "duration_seconds": 11, + "duration_seconds": 12, "failed": 0, "passed": 5, "skipped": 1 @@ -66044,7 +66044,7 @@ "dashboard_link": "/linux/opensource_packages/sparks-rapids", "job_url_resolution_status": "central_exact", "package_slug": "sparks-rapids", - "production_refreshed_at": "2026-05-14T19:37:17.436899+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.645050+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -66058,15 +66058,15 @@ }, "run": { "attempt": "1", - "id": "25877435852", + "id": "26658737633", "job_name": "test-sparks-rapids / test-sparks-rapids", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:15Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251141" + "timestamp": "2026-05-29T19:49:20Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549318" }, "schema_version": "2.0", "tests": { @@ -66075,31 +66075,31 @@ "duration_seconds": 0, "name": "Test 1 - Check package-specific baseline markers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251141#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549318#step:8:1" }, { "duration_seconds": 0, "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251141#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549318#step:9:1" }, { "duration_seconds": 0, "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251141#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549318#step:10:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251141#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549318#step:11:1" }, { "duration_seconds": 0, "name": "Test 5 - Run scoped Arm preflight proof", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251141#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549318#step:12:1" }, { "comparison": "Test 6 limited_cpu_smoke_validated: reran the same bounded scoped Arm source/compile/import/help/manifest preflight against the next stable candidate. This is CPU-side preflight evidence only; no GPU/CUDA driver/runtime, accelerator execution, Kubernetes cluster, or full product runtime is claimed.", @@ -66111,7 +66111,7 @@ "next_installed_version": "26.02.2", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251141#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549318#step:13:1" } ], "duration_seconds": 1, @@ -66129,7 +66129,7 @@ "dashboard_link": "/linux/opensource_packages/spdk", "job_url_resolution_status": "central_exact", "package_slug": "spdk", - "production_refreshed_at": "2026-05-14T19:37:17.437106+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.645225+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -66143,15 +66143,15 @@ }, "run": { "attempt": "1", - "id": "25877392111", + "id": "26658699892", "job_name": "test-spdk / test-spdk", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:23Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096349" + "timestamp": "2026-05-29T19:48:30Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420690" }, "schema_version": "2.0", "tests": { @@ -66160,46 +66160,46 @@ "duration_seconds": 0, "name": "Test 1 - Check SPDK binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096349#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420690#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Check source tag version", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096349#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420690#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Check SPDK help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096349#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420690#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096349#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420690#step:10:1" }, { "duration_seconds": 1, "name": "Test 5 - Functional validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096349#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420690#step:12:1" }, { "comparison": "Baseline v22.09 and candidate v23.01 both built from upstream source and passed Arm64 smoke checks.", "current_version": "v22.09", "decision": "next_install_validated", - "duration_seconds": 120, + "duration_seconds": 115, "latest_version": "v23.01", "name": "Test 6 - Regression Validation", "next_installed_version": "v23.01", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096349#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420690#step:13:1" } ], - "duration_seconds": 121, + "duration_seconds": 116, "failed": 0, "passed": 6, "skipped": 0 @@ -66214,7 +66214,7 @@ "dashboard_link": "/linux/opensource_packages/spdlog", "job_url_resolution_status": "central_exact", "package_slug": "spdlog", - "production_refreshed_at": "2026-05-14T19:37:17.437313+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.645425+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -66226,15 +66226,15 @@ }, "run": { "attempt": "1", - "id": "25877427741", + "id": "26658731236", "job_name": "test-spdlog / test-spdlog", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:13Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217752" + "timestamp": "2026-05-29T19:49:10Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575528435" }, "schema_version": "2.0", "tests": { @@ -66243,40 +66243,40 @@ "duration_seconds": 0, "name": "Test 1 - Check header files exist", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217752#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575528435#step:6:1" }, { - "duration_seconds": 11, + "duration_seconds": 6, "name": "Test 2 - Compile C++ example", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217752#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575528435#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Run compiled example", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217752#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575528435#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217752#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575528435#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217752#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575528435#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217752#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575528435#step:11:1" } ], - "duration_seconds": 11, + "duration_seconds": 6, "failed": 0, "passed": 6, "skipped": 0 @@ -66291,7 +66291,7 @@ "dashboard_link": "/linux/opensource_packages/sphinx", "job_url_resolution_status": "central_exact", "package_slug": "sphinx", - "production_refreshed_at": "2026-05-14T19:37:17.437513+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.645608+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -66303,15 +66303,15 @@ }, "run": { "attempt": "1", - "id": "25877383844", + "id": "26658692522", "job_name": "test-sphinx / test-sphinx", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:12Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071786" + "timestamp": "2026-05-29T19:48:19Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394550" }, "schema_version": "2.0", "tests": { @@ -66320,37 +66320,37 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071786#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394550#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071786#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394550#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071786#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394550#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071786#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394550#step:9:1" }, { "duration_seconds": 1, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071786#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394550#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071786#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394550#step:11:1" } ], "duration_seconds": 1, @@ -66368,7 +66368,7 @@ "dashboard_link": "/linux/opensource_packages/spice-opus", "job_url_resolution_status": "central_exact", "package_slug": "spice-opus", - "production_refreshed_at": "2026-05-14T19:37:17.437816+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.645879+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "validated_next_release", @@ -66382,15 +66382,15 @@ }, "run": { "attempt": "1", - "id": "25877435852", + "id": "26658737633", "job_name": "test-spice-opus / test-spice-opus", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:17Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251184" + "timestamp": "2026-05-29T19:49:21Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549415" }, "schema_version": "2.0", "tests": { @@ -66399,46 +66399,46 @@ "duration_seconds": 0, "name": "Test 1 - Check package-specific baseline markers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251184#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549415#step:8:1" }, { "duration_seconds": 0, "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251184#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549415#step:9:1" }, { "duration_seconds": 0, "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251184#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549415#step:10:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251184#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549415#step:11:1" }, { "duration_seconds": 1, "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251184#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549415#step:12:1" }, { "comparison": "Tests 1-5 validated the current Spice Opus release evidence and bounded package smoke on Arm64. The newer stable Arm64 release 3.0.407 resolved successfully from the published Arm64 artifact URLs.", "current_version": "v3.0 r397", "decision": "validated_next_release", - "duration_seconds": 1, + "duration_seconds": 0, "latest_version": "3.0.407", "name": "Test 6 - Regression Validation", "next_installed_version": "3.0.407", "regression_result": "Next stable Arm64 published artifact validated", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251184#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549415#step:13:1" } ], - "duration_seconds": 2, + "duration_seconds": 1, "failed": 0, "passed": 6, "skipped": 0 @@ -66453,7 +66453,7 @@ "dashboard_link": "/linux/opensource_packages/spicedb", "job_url_resolution_status": "central_exact", "package_slug": "spicedb", - "production_refreshed_at": "2026-05-14T19:37:17.438030+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.646060+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -66467,15 +66467,15 @@ }, "run": { "attempt": "1", - "id": "25877403044", + "id": "26658710721", "job_name": "test-spicedb / test-spicedb", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:38Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048141138" + "timestamp": "2026-05-29T19:48:43Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456441" }, "schema_version": "2.0", "tests": { @@ -66484,31 +66484,31 @@ "duration_seconds": 0, "name": "Test 1 - Check spicedb binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048141138#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456441#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048141138#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456441#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048141138#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456441#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048141138#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456441#step:9:1" }, { "duration_seconds": 2, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048141138#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456441#step:10:1" }, { "comparison": "Current pinned Authzed/SpiceDB version 1.49.2 passed smoke tests in this run. Regression validation downloaded and prepared the candidate Arm64 artifact from https://github.com/authzed/spicedb/releases/download/v1.50.0/spicedb_1.50.0_linux_arm64.tar.gz successfully.", @@ -66520,7 +66520,7 @@ "next_installed_version": "1.50.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048141138#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456441#step:11:1" } ], "duration_seconds": 3, @@ -66538,7 +66538,7 @@ "dashboard_link": "/linux/opensource_packages/spinnaker", "job_url_resolution_status": "central_exact", "package_slug": "spinnaker", - "production_refreshed_at": "2026-05-14T19:37:17.438241+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.646235+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "validated_next_release", @@ -66552,15 +66552,15 @@ }, "run": { "attempt": "1", - "id": "25877423406", + "id": "26658727918", "job_name": "test-spinnaker / test-spinnaker", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:09Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209511" + "timestamp": "2026-05-29T19:49:06Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515994" }, "schema_version": "2.0", "tests": { @@ -66569,31 +66569,31 @@ "duration_seconds": 0, "name": "Test 1 - Check spin binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209511#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515994#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209511#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515994#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209511#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515994#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209511#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515994#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209511#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515994#step:10:1" }, { "comparison": "Baseline 1.30.0 and next 2026.1.0 both passed CLI smoke validation; no regression observed in this workflow scope.", @@ -66605,7 +66605,7 @@ "next_installed_version": "2026.1.0", "regression_result": "Validated baseline Spinnaker CLI against the latest release with install and command smoke checks.", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209511#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515994#step:11:1" } ], "duration_seconds": 0, @@ -66623,7 +66623,7 @@ "dashboard_link": "/linux/opensource_packages/spire", "job_url_resolution_status": "central_exact", "package_slug": "spire", - "production_refreshed_at": "2026-05-14T19:37:17.438444+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.646440+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -66637,15 +66637,15 @@ }, "run": { "attempt": "1", - "id": "25877367704", + "id": "26658677990", "job_name": "test-spire / test-spire", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:54Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026074" + "timestamp": "2026-05-29T19:48:02Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575345935" }, "schema_version": "2.0", "tests": { @@ -66654,46 +66654,46 @@ "duration_seconds": 0, "name": "Test 1 - Artifact Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026074#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575345935#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026074#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575345935#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Configuration Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026074#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575345935#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026074#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575345935#step:9:1" }, { "duration_seconds": 15, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026074#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575345935#step:10:1" }, { "comparison": "Current pinned SPIRE version 1.13.2 passed smoke tests in this run. Regression validation downloaded the candidate Arm64 archive from https://github.com/spiffe/spire/releases/download/v1.13.3/spire-1.13.3-linux-arm64-musl.tar.gz, confirmed version 1.13.3, and passed server/agent config validation.", "current_version": "1.13.2", "decision": "next_install_validated", - "duration_seconds": 2, + "duration_seconds": 1, "latest_version": "1.13.3", "name": "Test 6 - Regression Validation", "next_installed_version": "1.13.3", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026074#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575345935#step:11:1" } ], - "duration_seconds": 17, + "duration_seconds": 16, "failed": 0, "passed": 6, "skipped": 0 @@ -66708,7 +66708,7 @@ "dashboard_link": "/linux/opensource_packages/split-evaluator", "job_url_resolution_status": "central_exact", "package_slug": "split-evaluator", - "production_refreshed_at": "2026-05-14T19:37:17.438655+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.646617+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -66722,15 +66722,15 @@ }, "run": { "attempt": "1", - "id": "25877371674", + "id": "26658681575", "job_name": "test-split-evaluator / test-split-evaluator", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:58Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031016" + "timestamp": "2026-05-29T19:48:06Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357338" }, "schema_version": "2.0", "tests": { @@ -66739,46 +66739,46 @@ "duration_seconds": 0, "name": "Test 1 - Artifact Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031016#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357338#step:6:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031016#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357338#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Configuration Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031016#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357338#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031016#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357338#step:9:1" }, { "duration_seconds": 16, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031016#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357338#step:10:1" }, { "comparison": "Current pinned Split-evaluator version 2.8.0 passed smoke tests in this run. Regression validation pulled candidate image splitsoftware/split-evaluator:2.8.1 on Arm64 successfully, the installed image tag resolved to 2.8.1, and the container reached the expected startup error path without architecture issues.", "current_version": "2.8.0", "decision": "next_install_validated", - "duration_seconds": 20, + "duration_seconds": 19, "latest_version": "2.8.1", "name": "Test 6 - Regression Validation", "next_installed_version": "2.8.1", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031016#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357338#step:11:1" } ], - "duration_seconds": 37, + "duration_seconds": 35, "failed": 0, "passed": 6, "skipped": 0 @@ -66793,7 +66793,7 @@ "dashboard_link": "/linux/opensource_packages/spring-cloud-function", "job_url_resolution_status": "central_exact", "package_slug": "spring-cloud-function", - "production_refreshed_at": "2026-05-14T19:37:17.438878+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.646792+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -66805,15 +66805,15 @@ }, "run": { "attempt": "1", - "id": "25877399008", + "id": "26658707245", "job_name": "test-spring-cloud-function / test-spring-cloud-function", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:32Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125850" + "timestamp": "2026-05-29T19:48:39Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445848" }, "schema_version": "2.0", "tests": { @@ -66822,40 +66822,40 @@ "duration_seconds": 0, "name": "Test 1 - Check Smoke Project Files", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125850#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445848#step:6:1" }, { - "duration_seconds": 37, + "duration_seconds": 29, "name": "Test 2 - Check Dependency Version", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125850#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445848#step:7:1" }, { - "duration_seconds": 4, + "duration_seconds": 3, "name": "Test 3 - Check Build Configuration", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125850#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445848#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125850#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445848#step:9:1" }, { - "duration_seconds": 6, + "duration_seconds": 7, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125850#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445848#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125850#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445848#step:11:1" } ], - "duration_seconds": 47, + "duration_seconds": 39, "failed": 0, "passed": 6, "skipped": 0 @@ -66870,7 +66870,7 @@ "dashboard_link": "/linux/opensource_packages/spring-cloud-gateway", "job_url_resolution_status": "central_exact", "package_slug": "spring-cloud-gateway", - "production_refreshed_at": "2026-05-14T19:37:17.439082+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.646963+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -66882,15 +66882,15 @@ }, "run": { "attempt": "1", - "id": "25877375677", + "id": "26658685142", "job_name": "test-spring-cloud-gateway / test-spring-cloud-gateway", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:08Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044929" + "timestamp": "2026-05-29T19:48:17Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370514" }, "schema_version": "2.0", "tests": { @@ -66899,40 +66899,40 @@ "duration_seconds": 0, "name": "Test 1 - Artifact Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044929#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370514#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044929#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370514#step:8:1" }, { - "duration_seconds": 18, + "duration_seconds": 19, "name": "Test 3 - Configuration Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044929#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370514#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044929#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370514#step:10:1" }, { "duration_seconds": 8, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044929#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370514#step:11:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044929#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370514#step:12:1" } ], - "duration_seconds": 26, + "duration_seconds": 27, "failed": 0, "passed": 6, "skipped": 0 @@ -66947,7 +66947,7 @@ "dashboard_link": "/linux/opensource_packages/spring-cloud-openfeign", "job_url_resolution_status": "central_exact", "package_slug": "spring-cloud-openfeign", - "production_refreshed_at": "2026-05-14T19:37:17.439274+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.647129+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -66959,15 +66959,15 @@ }, "run": { "attempt": "1", - "id": "25877419588", + "id": "26658724696", "job_name": "test-spring-cloud-openfeign / test-spring-cloud-openfeign", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:59Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192257" + "timestamp": "2026-05-29T19:49:05Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503985" }, "schema_version": "2.0", "tests": { @@ -66976,40 +66976,40 @@ "duration_seconds": 0, "name": "Test 1 - Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192257#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503985#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192257#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503985#step:8:1" }, { - "duration_seconds": 2, + "duration_seconds": 3, "name": "Test 3 - Help Output or Configuration", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192257#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503985#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192257#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503985#step:10:1" }, { "duration_seconds": 8, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192257#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503985#step:11:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192257#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503985#step:12:1" } ], - "duration_seconds": 10, + "duration_seconds": 11, "failed": 0, "passed": 6, "skipped": 0 @@ -67024,7 +67024,7 @@ "dashboard_link": "/linux/opensource_packages/spring-cloud-sleuth", "job_url_resolution_status": "central_exact", "package_slug": "spring-cloud-sleuth", - "production_refreshed_at": "2026-05-14T19:37:17.439473+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.647308+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -67038,15 +67038,15 @@ }, "run": { "attempt": "1", - "id": "25877359516", + "id": "26658670904", "job_name": "test-spring-cloud-sleuth / test-spring-cloud-sleuth", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:45Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990956" + "timestamp": "2026-05-29T19:47:53Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321492" }, "schema_version": "2.0", "tests": { @@ -67055,46 +67055,46 @@ "duration_seconds": 0, "name": "Test 1 - Create Maven Project", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990956#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321492#step:6:1" }, { - "duration_seconds": 46, + "duration_seconds": 36, "name": "Test 2 - Resolve Dependencies", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990956#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321492#step:7:1" }, { - "duration_seconds": 7, + "duration_seconds": 6, "name": "Test 3 - Compile Spring tiny app and unit test", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990956#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321492#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990956#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321492#step:9:1" }, { - "duration_seconds": 4, + "duration_seconds": 3, "name": "Test 5 - Functional Validation - Spring app unit test", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990956#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321492#step:10:1" }, { "comparison": "Current Spring Cloud Sleuth 3.1.5 completed a tiny Spring route and tracer unit test. Test 6 installed starter 3.1.11 in a copied smoke project and ran the same Maven unit test on Arm64.", "current_version": "3.1.5", "decision": "next_install_validated", - "duration_seconds": 12, + "duration_seconds": 9, "latest_version": "3.1.11", "name": "Test 6 - Regression Validation", "next_installed_version": "3.1.11", "regression_result": "Next version installed and ran successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990956#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321492#step:11:1" } ], - "duration_seconds": 57, + "duration_seconds": 45, "failed": 0, "passed": 6, "skipped": 0 @@ -67109,7 +67109,7 @@ "dashboard_link": "/linux/opensource_packages/spring-cloud-stream", "job_url_resolution_status": "central_exact", "package_slug": "spring-cloud-stream", - "production_refreshed_at": "2026-05-14T19:37:17.439660+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.647486+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -67121,15 +67121,15 @@ }, "run": { "attempt": "1", - "id": "25877411197", + "id": "26658717942", "job_name": "test-spring-cloud-stream / test-spring-cloud-stream", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:50Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175363" + "timestamp": "2026-05-29T19:48:51Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479469" }, "schema_version": "2.0", "tests": { @@ -67138,37 +67138,37 @@ "duration_seconds": 0, "name": "Test 1 - Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175363#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479469#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175363#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479469#step:8:1" }, { "duration_seconds": 3, "name": "Test 3 - Help Output or Configuration", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175363#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479469#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175363#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479469#step:10:1" }, { "duration_seconds": 8, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175363#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479469#step:11:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175363#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479469#step:12:1" } ], "duration_seconds": 11, @@ -67186,7 +67186,7 @@ "dashboard_link": "/linux/opensource_packages/spring_boot", "job_url_resolution_status": "central_exact", "package_slug": "spring_boot", - "production_refreshed_at": "2026-05-14T19:37:17.439878+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.647651+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -67198,15 +67198,15 @@ }, "run": { "attempt": "1", - "id": "25877399008", + "id": "26658707245", "job_name": "test-spring_boot / test-spring_boot", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:30Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125573" + "timestamp": "2026-05-29T19:48:39Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445920" }, "schema_version": "2.0", "tests": { @@ -67215,40 +67215,40 @@ "duration_seconds": 0, "name": "Test 1 - Check Smoke Project Files", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125573#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445920#step:6:1" }, { - "duration_seconds": 17, + "duration_seconds": 13, "name": "Test 2 - Check Dependency Version", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125573#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445920#step:7:1" }, { - "duration_seconds": 2, + "duration_seconds": 1, "name": "Test 3 - Check Build Configuration", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125573#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445920#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125573#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445920#step:9:1" }, { - "duration_seconds": 18, + "duration_seconds": 17, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125573#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445920#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125573#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445920#step:11:1" } ], - "duration_seconds": 36, + "duration_seconds": 31, "failed": 0, "passed": 6, "skipped": 0 @@ -67263,7 +67263,7 @@ "dashboard_link": "/linux/opensource_packages/spring_cloud_config", "job_url_resolution_status": "central_exact", "package_slug": "spring_cloud_config", - "production_refreshed_at": "2026-05-14T19:37:17.440092+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.647815+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -67275,15 +67275,15 @@ }, "run": { "attempt": "1", - "id": "25877392111", + "id": "26658699892", "job_name": "test-spring_cloud_config / test-spring_cloud_config", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:21Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096463" + "timestamp": "2026-05-29T19:48:30Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420544" }, "schema_version": "2.0", "tests": { @@ -67292,40 +67292,40 @@ "duration_seconds": 0, "name": "Test 1 - Check Smoke Project Files", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096463#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420544#step:6:1" }, { - "duration_seconds": 30, + "duration_seconds": 31, "name": "Test 2 - Check Dependency Version", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096463#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420544#step:7:1" }, { - "duration_seconds": 6, + "duration_seconds": 7, "name": "Test 3 - Check Build Configuration", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096463#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420544#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096463#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420544#step:9:1" }, { - "duration_seconds": 13, + "duration_seconds": 15, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096463#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420544#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096463#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420544#step:11:1" } ], - "duration_seconds": 49, + "duration_seconds": 53, "failed": 0, "passed": 6, "skipped": 0 @@ -67340,7 +67340,7 @@ "dashboard_link": "/linux/opensource_packages/spring_cloud_netflix", "job_url_resolution_status": "central_exact", "package_slug": "spring_cloud_netflix", - "production_refreshed_at": "2026-05-14T19:37:17.440276+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.647996+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -67352,15 +67352,15 @@ }, "run": { "attempt": "1", - "id": "25877363365", + "id": "26658674448", "job_name": "test-spring_cloud_netflix / test-spring_cloud_netflix", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:48Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000975" + "timestamp": "2026-05-29T19:47:58Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334560" }, "schema_version": "2.0", "tests": { @@ -67369,40 +67369,40 @@ "duration_seconds": 0, "name": "Test 1 - Check Resolved Artifact", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000975#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334560#step:6:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000975#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334560#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000975#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334560#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000975#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334560#step:9:1" }, { - "duration_seconds": 6, + "duration_seconds": 5, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000975#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334560#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000975#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334560#step:11:1" } ], - "duration_seconds": 0, + "duration_seconds": 1, "failed": 0, "passed": 6, "skipped": 0 @@ -67417,7 +67417,7 @@ "dashboard_link": "/linux/opensource_packages/spring_cloud_task", "job_url_resolution_status": "central_exact", "package_slug": "spring_cloud_task", - "production_refreshed_at": "2026-05-14T19:37:17.440477+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.648166+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -67430,15 +67430,15 @@ }, "run": { "attempt": "1", - "id": "25877363365", + "id": "26658674448", "job_name": "test-spring_cloud_task / test-spring_cloud_task", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:48Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000252" + "timestamp": "2026-05-29T19:47:56Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333723" }, "schema_version": "2.0", "tests": { @@ -67447,40 +67447,40 @@ "duration_seconds": 0, "name": "Test 1 - Check jar files exist in local repo", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000252#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333723#step:6:1" }, { "duration_seconds": 2, "name": "Test 2 - Check dependency tree", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000252#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333723#step:7:1" }, { - "duration_seconds": 8, + "duration_seconds": 6, "name": "Test 3 - Compile Spring Cloud Task app", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000252#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333723#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000252#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333723#step:9:1" }, { "duration_seconds": 3, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000252#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333723#step:10:1" }, { "duration_seconds": 7, "name": "Test 6 - Regression Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000252#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333723#step:11:1" } ], - "duration_seconds": 13, + "duration_seconds": 11, "failed": 0, "passed": 6, "skipped": 0 @@ -67495,7 +67495,7 @@ "dashboard_link": "/linux/opensource_packages/sqlite", "job_url_resolution_status": "central_exact", "package_slug": "sqlite", - "production_refreshed_at": "2026-05-14T19:37:17.440655+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.648352+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -67507,15 +67507,15 @@ }, "run": { "attempt": "1", - "id": "25877359516", + "id": "26658670904", "job_name": "test-sqlite / test-sqlite", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:45Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991212" + "timestamp": "2026-05-29T19:47:52Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321666" }, "schema_version": "2.0", "tests": { @@ -67524,37 +67524,37 @@ "duration_seconds": 0, "name": "Test 1 - Check sqlite3 binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991212#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321666#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check sqlite3 version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991212#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321666#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check sqlite3 help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991212#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321666#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991212#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321666#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation (Create DB)", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991212#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321666#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991212#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321666#step:11:1" } ], "duration_seconds": 0, @@ -67572,7 +67572,7 @@ "dashboard_link": "/linux/opensource_packages/sqoop", "job_url_resolution_status": "central_exact", "package_slug": "sqoop", - "production_refreshed_at": "2026-05-14T19:37:17.440848+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.648527+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -67586,15 +67586,15 @@ }, "run": { "attempt": "1", - "id": "25877375677", + "id": "26658685142", "job_name": "test-sqoop / test-sqoop", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:07Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044536" + "timestamp": "2026-05-29T19:48:15Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370355" }, "schema_version": "2.0", "tests": { @@ -67603,46 +67603,46 @@ "duration_seconds": 0, "name": "Test 1 - Check Sqoop launchers exist", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044536#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370355#step:8:1" }, { "duration_seconds": 0, "name": "Test 2 - Check exact version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044536#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370355#step:9:1" }, { "duration_seconds": 0, "name": "Test 3 - Check shell help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044536#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370355#step:10:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044536#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370355#step:11:1" }, { "duration_seconds": 0, "name": "Test 5 - Check show version shell command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044536#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370355#step:12:1" }, { "comparison": "Current pinned Sqoop version 1.99.4 passed smoke tests in this run. Regression validation downloaded archived release 1.99.7, and the isolated candidate environment completed the real sqoop shell help path while validating the candidate with sqoop shell help output (release no longer ships server/bin/version.sh) on Arm64.", "current_version": "1.99.4", "decision": "next_install_validated", - "duration_seconds": 814, + "duration_seconds": 203, "latest_version": "1.99.7", "name": "Test 6 - Regression Validation", "next_installed_version": "1.99.7", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044536#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370355#step:13:1" } ], - "duration_seconds": 814, + "duration_seconds": 203, "failed": 0, "passed": 6, "skipped": 0 @@ -67657,7 +67657,7 @@ "dashboard_link": "/linux/opensource_packages/squid", "job_url_resolution_status": "central_exact", "package_slug": "squid", - "production_refreshed_at": "2026-05-14T19:37:17.441076+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.648706+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -67669,15 +67669,15 @@ }, "run": { "attempt": "1", - "id": "25877371674", + "id": "26658681575", "job_name": "test-squid / test-squid", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:58Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031932" + "timestamp": "2026-05-29T19:48:07Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358609" }, "schema_version": "2.0", "tests": { @@ -67686,37 +67686,37 @@ "duration_seconds": 0, "name": "Test 1 - Check squid binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031932#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358609#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check exact version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031932#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358609#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check system configuration parse", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031932#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358609#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031932#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358609#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Check custom configuration parse", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031932#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358609#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031932#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358609#step:11:1" } ], "duration_seconds": 0, @@ -67734,7 +67734,7 @@ "dashboard_link": "/linux/opensource_packages/srs", "job_url_resolution_status": "central_exact", "package_slug": "srs", - "production_refreshed_at": "2026-05-14T19:37:17.441264+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.648873+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -67748,15 +67748,15 @@ }, "run": { "attempt": "1", - "id": "25877427741", + "id": "26658731236", "job_name": "test-srs / test-srs", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:09Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217559" + "timestamp": "2026-05-29T19:49:11Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575528420" }, "schema_version": "2.0", "tests": { @@ -67765,31 +67765,31 @@ "duration_seconds": 0, "name": "Test 1 - Check srs binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217559#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575528420#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217559#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575528420#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check configuration file exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217559#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575528420#step:8:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 4 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217559#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575528420#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217559#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575528420#step:10:1" }, { "comparison": "SRS baseline v5.0-r2 built successfully and passed configuration validation on Arm64, and candidate v5.0-r3 also built successfully, reported the expected 5.0.x version line, and passed the same configuration validation.", @@ -67801,10 +67801,10 @@ "next_installed_version": "v5.0-r3", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217559#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575528420#step:11:1" } ], - "duration_seconds": 85, + "duration_seconds": 86, "failed": 0, "passed": 6, "skipped": 0 @@ -67819,7 +67819,7 @@ "dashboard_link": "/linux/opensource_packages/ssdb", "job_url_resolution_status": "central_exact", "package_slug": "ssdb", - "production_refreshed_at": "2026-05-14T19:37:17.441469+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.649045+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -67833,15 +67833,15 @@ }, "run": { "attempt": "1", - "id": "25877423406", + "id": "26658727918", "job_name": "test-ssdb / test-ssdb", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:08Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210251" + "timestamp": "2026-05-29T19:49:05Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516028" }, "schema_version": "2.0", "tests": { @@ -67850,43 +67850,43 @@ "duration_seconds": 0, "name": "Test 1 - Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210251#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516028#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210251#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516028#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Help Output Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210251#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516028#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210251#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516028#step:9:1" }, { "duration_seconds": 1, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210251#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516028#step:10:1" }, { "comparison": "Current pinned SSDB source tag 1.9.8 passed smoke tests in this run. Regression validation built candidate source tag 1.9.9 on Arm64, and the resulting ssdb-server binary still reported upstream runtime version 1.9.8, which is the known banner value for the 1.9.9 source tag.", "current_version": "1.9.8", "decision": "next_install_validated", - "duration_seconds": 49, + "duration_seconds": 50, "latest_version": "1.9.9", "name": "Test 6 - Regression Validation", "next_installed_version": "1.9.8", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210251#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516028#step:11:1" } ], "duration_seconds": 50, @@ -67904,7 +67904,7 @@ "dashboard_link": "/linux/opensource_packages/stable-baseline3", "job_url_resolution_status": "central_exact", "package_slug": "stable-baseline3", - "production_refreshed_at": "2026-05-14T19:37:17.441656+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.649215+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -67918,15 +67918,15 @@ }, "run": { "attempt": "1", - "id": "25877435852", + "id": "26658737633", "job_name": "test-stable-baseline3 / test-stable-baseline3", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:15Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251113" + "timestamp": "2026-05-29T19:49:23Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549381" }, "schema_version": "2.0", "tests": { @@ -67935,46 +67935,46 @@ "duration_seconds": 1, "name": "Test 1 - Package installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251113#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549381#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Version metadata matches baseline", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251113#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549381#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Installed files metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251113#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549381#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251113#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549381#step:10:1" }, { - "duration_seconds": 1, + "duration_seconds": 3, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251113#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549381#step:11:1" }, { "comparison": "Current pinned package version 0.6.0 passed smoke tests in this run, and the newer stable PyPI candidate 0.7.0 installed successfully on Arm64.", "current_version": "0.6.0", "decision": "next_install_validated", - "duration_seconds": 74, + "duration_seconds": 73, "latest_version": "0.7.0", "name": "Test 6 - Regression Validation", "next_installed_version": "0.7.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251113#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549381#step:12:1" } ], - "duration_seconds": 75, + "duration_seconds": 77, "failed": 0, "passed": 6, "skipped": 0 @@ -67989,7 +67989,7 @@ "dashboard_link": "/linux/opensource_packages/statsforecast", "job_url_resolution_status": "central_exact", "package_slug": "statsforecast", - "production_refreshed_at": "2026-05-14T19:37:17.441889+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.649430+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -68003,15 +68003,15 @@ }, "run": { "attempt": "1", - "id": "25877435852", + "id": "26658737633", "job_name": "test-statsforecast / test-statsforecast", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:15Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251161" + "timestamp": "2026-05-29T19:49:24Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549359" }, "schema_version": "2.0", "tests": { @@ -68020,46 +68020,46 @@ "duration_seconds": 0, "name": "Test 1 - Package installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251161#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549359#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Version metadata matches baseline", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251161#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549359#step:8:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 3 - Installed files metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251161#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549359#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251161#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549359#step:10:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251161#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549359#step:11:1" }, { "comparison": "Current pinned package version 0.1.0 passed smoke tests in this run, and the newer stable PyPI candidate 0.2.0 installed successfully on Arm64.", "current_version": "0.1.0", "decision": "next_install_validated", - "duration_seconds": 7, + "duration_seconds": 4, "latest_version": "0.2.0", "name": "Test 6 - Regression Validation", "next_installed_version": "0.2.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251161#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549359#step:12:1" } ], - "duration_seconds": 8, + "duration_seconds": 5, "failed": 0, "passed": 6, "skipped": 0 @@ -68074,7 +68074,7 @@ "dashboard_link": "/linux/opensource_packages/statsmodels", "job_url_resolution_status": "central_exact", "package_slug": "statsmodels", - "production_refreshed_at": "2026-05-14T19:37:17.442097+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.649610+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -68088,48 +68088,48 @@ }, "run": { "attempt": "1", - "id": "25877435852", + "id": "26658737633", "job_name": "test-statsmodels / test-statsmodels", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:15Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251139" + "timestamp": "2026-05-29T19:49:20Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549308" }, "schema_version": "2.0", "tests": { "details": [ { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 1 - Package installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251139#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549308#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Version metadata matches baseline", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251139#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549308#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Installed files metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251139#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549308#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251139#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549308#step:10:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251139#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549308#step:11:1" }, { "comparison": "Current pinned package version 0.13.1 passed smoke tests in this run, and the newer stable PyPI candidate 0.13.2 installed successfully on Arm64.", @@ -68141,10 +68141,10 @@ "next_installed_version": "0.13.2", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251139#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549308#step:12:1" } ], - "duration_seconds": 19, + "duration_seconds": 18, "failed": 0, "passed": 6, "skipped": 0 @@ -68159,7 +68159,7 @@ "dashboard_link": "/linux/opensource_packages/storm", "job_url_resolution_status": "central_exact", "package_slug": "storm", - "production_refreshed_at": "2026-05-14T19:37:17.442298+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.649790+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "no_newer_stable_available", @@ -68173,15 +68173,15 @@ }, "run": { "attempt": "1", - "id": "25877403044", + "id": "26658710721", "job_name": "test-storm / test-storm", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:42Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048139976" + "timestamp": "2026-05-29T19:48:48Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455415" }, "schema_version": "2.0", "tests": { @@ -68190,46 +68190,46 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048139976#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455415#step:11:1" }, { - "duration_seconds": 2, + "duration_seconds": 3, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048139976#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455415#step:12:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Help Output or Configuration", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048139976#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455415#step:13:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048139976#step:14:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455415#step:14:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048139976#step:15:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455415#step:15:1" }, { "comparison": "Current pinned Storm version 2.8.7 passed smoke tests in this run and already matches the current mirrored Apache Storm stable release, so there is no newer stable candidate to install for Arm64 regression validation.", "current_version": "2.8.7", "decision": "no_newer_stable_available", - "duration_seconds": 1, + "duration_seconds": 0, "latest_version": "2.8.7", "name": "Test 6 - Regression Validation", "next_installed_version": "2.8.7", "regression_result": "No newer stable Storm release is available for Test 6", "status": "skipped", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048139976#step:16:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455415#step:16:1" } ], - "duration_seconds": 2, + "duration_seconds": 4, "failed": 0, "passed": 5, "skipped": 1 @@ -68244,7 +68244,7 @@ "dashboard_link": "/linux/opensource_packages/stream", "job_url_resolution_status": "central_exact", "package_slug": "stream", - "production_refreshed_at": "2026-05-14T19:37:17.442588+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.650055+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -68258,15 +68258,15 @@ }, "run": { "attempt": "1", - "id": "25877395502", + "id": "26658703674", "job_name": "test-stream / test-stream", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:28Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109955" + "timestamp": "2026-05-29T19:48:33Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433110" }, "schema_version": "2.0", "tests": { @@ -68275,31 +68275,31 @@ "duration_seconds": 0, "name": "Test 1 - Check source tree exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109955#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433110#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version provenance", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109955#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433110#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check build plan output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109955#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433110#step:8:1" }, { - "duration_seconds": 2, + "duration_seconds": 1, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109955#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433110#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109955#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433110#step:10:1" }, { "comparison": "Tests 1-5 validated pinned baseline commit e1a039c on Arm64. Regression validation cloned the next upstream master head commit 6703f75 in isolation and confirmed the real Arm64 STREAM benchmark smoke path successfully.", @@ -68311,10 +68311,10 @@ "next_installed_version": "6703f75", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109955#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433110#step:11:1" } ], - "duration_seconds": 3, + "duration_seconds": 2, "failed": 0, "passed": 6, "skipped": 0 @@ -68329,7 +68329,7 @@ "dashboard_link": "/linux/opensource_packages/streamlit", "job_url_resolution_status": "central_exact", "package_slug": "streamlit", - "production_refreshed_at": "2026-05-14T19:37:17.442813+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.650234+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -68337,19 +68337,19 @@ }, "package": { "name": "Streamlit", - "version": "1.57.0" + "version": "1.58.0" }, "run": { "attempt": "1", - "id": "25877383844", + "id": "26658692522", "job_name": "test-streamlit / test-streamlit", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:12Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071409" + "timestamp": "2026-05-29T19:48:20Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394396" }, "schema_version": "2.0", "tests": { @@ -68358,37 +68358,37 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071409#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394396#step:6:1" }, { "duration_seconds": 1, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071409#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394396#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071409#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394396#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071409#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394396#step:9:1" }, { "duration_seconds": 2, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071409#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394396#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071409#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394396#step:11:1" } ], "duration_seconds": 3, @@ -68406,7 +68406,7 @@ "dashboard_link": "/linux/opensource_packages/strongswan", "job_url_resolution_status": "central_exact", "package_slug": "strongswan", - "production_refreshed_at": "2026-05-14T19:37:17.443038+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.650450+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -68418,15 +68418,15 @@ }, "run": { "attempt": "1", - "id": "25877411197", + "id": "26658717942", "job_name": "test-strongswan / test-strongswan", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:50Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174436" + "timestamp": "2026-05-29T19:48:51Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478707" }, "schema_version": "2.0", "tests": { @@ -68435,37 +68435,37 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174436#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478707#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174436#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478707#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Help Output or Configuration", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174436#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478707#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174436#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478707#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174436#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478707#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174436#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478707#step:11:1" } ], "duration_seconds": 0, @@ -68483,7 +68483,7 @@ "dashboard_link": "/linux/opensource_packages/submarine", "job_url_resolution_status": "central_exact", "package_slug": "submarine", - "production_refreshed_at": "2026-05-14T19:37:17.443266+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.650629+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -68497,63 +68497,63 @@ }, "run": { "attempt": "1", - "id": "25877383844", + "id": "26658692522", "job_name": "test-submarine / test-submarine", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:14Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071425" + "timestamp": "2026-05-29T19:48:38Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394914" }, "schema_version": "2.0", "tests": { "details": [ { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 1 - Check build artifacts exist", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071425#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394914#step:8:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version provenance", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071425#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394914#step:9:1" }, { "duration_seconds": 0, "name": "Test 3 - Check build usage output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071425#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394914#step:10:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071425#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394914#step:11:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional image validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071425#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394914#step:12:1" }, { "comparison": "Current pinned Submarine version 0.4.0 completed the real Arm64 boot-image build path in this run. Regression validation rebuilt candidate version 0.4.1 from a fresh isolated clone and reconfirmed the Arm64 image-generation path successfully.", "current_version": "0.4.0", "decision": "next_install_validated", - "duration_seconds": 809, + "duration_seconds": 811, "latest_version": "0.4.1", "name": "Test 6 - Regression Validation", "next_installed_version": "0.4.1", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071425#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394914#step:13:1" } ], - "duration_seconds": 809, + "duration_seconds": 811, "failed": 0, "passed": 6, "skipped": 0 @@ -68568,7 +68568,7 @@ "dashboard_link": "/linux/opensource_packages/sunshine", "job_url_resolution_status": "central_exact", "package_slug": "sunshine", - "production_refreshed_at": "2026-05-14T19:37:17.443484+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.650807+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -68582,15 +68582,15 @@ }, "run": { "attempt": "1", - "id": "25877435852", + "id": "26658737633", "job_name": "test-sunshine / test-sunshine", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:19Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251912" + "timestamp": "2026-05-29T19:49:21Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549337" }, "schema_version": "2.0", "tests": { @@ -68599,46 +68599,46 @@ "duration_seconds": 0, "name": "Test 1 - Check package-specific baseline markers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251912#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549337#step:8:1" }, { "duration_seconds": 0, "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251912#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549337#step:9:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251912#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549337#step:10:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251912#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549337#step:11:1" }, { - "duration_seconds": 7, + "duration_seconds": 1, "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251912#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549337#step:12:1" }, { "comparison": "Test 6 repeated the Sunshine scoped Arm preflight against the next stable release candidate: AArch64 Flatpak artifact download/content proof plus Linux display/encoder source markers. This does not prove Moonlight pairing, GPU capture/encode, controller streaming, or real video streaming.", "current_version": "0.15.0", "decision": "limited_cpu_smoke_validated", - "duration_seconds": 10, - "latest_version": "2026.513.230134", + "duration_seconds": 3, + "latest_version": "2026.528.35537", "name": "Test 6 - Regression Validation", - "next_installed_version": "2026.513.230134", + "next_installed_version": "2026.528.35537", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251912#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549337#step:13:1" } ], - "duration_seconds": 17, + "duration_seconds": 4, "failed": 0, "passed": 6, "skipped": 0 @@ -68653,7 +68653,7 @@ "dashboard_link": "/linux/opensource_packages/supervisor", "job_url_resolution_status": "central_exact", "package_slug": "supervisor", - "production_refreshed_at": "2026-05-14T19:37:17.443688+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.650986+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -68665,15 +68665,15 @@ }, "run": { "attempt": "1", - "id": "25877392111", + "id": "26658699892", "job_name": "test-supervisor / test-supervisor", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:23Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096614" + "timestamp": "2026-05-29T19:48:30Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420747" }, "schema_version": "2.0", "tests": { @@ -68682,37 +68682,37 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096614#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420747#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096614#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420747#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096614#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420747#step:8:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096614#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420747#step:9:1" }, { "duration_seconds": 2, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096614#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420747#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096614#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420747#step:11:1" } ], "duration_seconds": 2, @@ -68730,7 +68730,7 @@ "dashboard_link": "/linux/opensource_packages/suse", "job_url_resolution_status": "central_exact", "package_slug": "suse", - "production_refreshed_at": "2026-05-14T19:37:17.443941+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.651158+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -68742,15 +68742,15 @@ }, "run": { "attempt": "1", - "id": "25877375677", + "id": "26658685142", "job_name": "test-suse / test-suse", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:03Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043646" + "timestamp": "2026-05-29T19:48:10Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369858" }, "schema_version": "2.0", "tests": { @@ -68759,40 +68759,40 @@ "duration_seconds": 0, "name": "Test 1 - Artifact Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043646#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369858#step:6:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043646#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369858#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Help Output Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043646#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369858#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043646#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369858#step:9:1" }, { "duration_seconds": 1, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043646#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369858#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043646#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369858#step:11:1" } ], - "duration_seconds": 2, + "duration_seconds": 1, "failed": 0, "passed": 6, "skipped": 0 @@ -68807,7 +68807,7 @@ "dashboard_link": "/linux/opensource_packages/swift", "job_url_resolution_status": "central_exact", "package_slug": "swift", - "production_refreshed_at": "2026-05-14T19:37:17.444159+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.651357+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -68821,15 +68821,15 @@ }, "run": { "attempt": "1", - "id": "25877411197", + "id": "26658717942", "job_name": "test-swift / test-swift", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:49Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175564" + "timestamp": "2026-05-29T19:48:52Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479902" }, "schema_version": "2.0", "tests": { @@ -68838,46 +68838,46 @@ "duration_seconds": 0, "name": "Test 1 - Check Swift binaries exist", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175564#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479902#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Swift version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175564#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479902#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Swift help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175564#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479902#step:8:1" }, { "duration_seconds": 1, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175564#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479902#step:9:1" }, { "duration_seconds": 1, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175564#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479902#step:10:1" }, { "comparison": "Current pinned Swift version 6.0.3 passed the real Arm64 compile-and-run smoke in this run. Regression validation installed candidate version 6.2.4 on Arm64, and the candidate toolchain compiled and ran a Swift program successfully.", "current_version": "6.0.3", "decision": "next_install_validated", - "duration_seconds": 30, + "duration_seconds": 23, "latest_version": "6.2.4", "name": "Test 6 - Regression Validation", "next_installed_version": "6.2.4", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175564#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479902#step:11:1" } ], - "duration_seconds": 32, + "duration_seconds": 25, "failed": 0, "passed": 6, "skipped": 0 @@ -68892,7 +68892,7 @@ "dashboard_link": "/linux/opensource_packages/swig", "job_url_resolution_status": "central_exact", "package_slug": "swig", - "production_refreshed_at": "2026-05-14T19:37:17.444364+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.651540+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -68904,15 +68904,15 @@ }, "run": { "attempt": "1", - "id": "25877415436", + "id": "26658721315", "job_name": "test-swig / test-swig", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:50Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180591" + "timestamp": "2026-05-29T19:48:56Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491677" }, "schema_version": "2.0", "tests": { @@ -68921,40 +68921,40 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180591#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491677#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180591#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491677#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180591#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491677#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180591#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491677#step:9:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180591#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491677#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180591#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491677#step:11:1" } ], - "duration_seconds": 1, + "duration_seconds": 0, "failed": 0, "passed": 6, "skipped": 0 @@ -68969,7 +68969,7 @@ "dashboard_link": "/linux/opensource_packages/sysbench", "job_url_resolution_status": "central_exact", "package_slug": "sysbench", - "production_refreshed_at": "2026-05-14T19:37:17.444549+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.651711+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -68983,15 +68983,15 @@ }, "run": { "attempt": "1", - "id": "25877392111", + "id": "26658699892", "job_name": "test-sysbench / test-sysbench", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:23Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096544" + "timestamp": "2026-05-29T19:48:30Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420917" }, "schema_version": "2.0", "tests": { @@ -69000,46 +69000,46 @@ "duration_seconds": 0, "name": "Test 1 - Check sysbench binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096544#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420917#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096544#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420917#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096544#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420917#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096544#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420917#step:9:1" }, { "duration_seconds": 10, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096544#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420917#step:10:1" }, { "comparison": "Current pinned Sysbench version 1.0.19 passed the real Arm64 CPU benchmark smoke in this run. Regression validation rebuilt candidate version 1.0.20 from source and confirmed the isolated Arm64 benchmark path successfully.", "current_version": "1.0.19", "decision": "next_install_validated", - "duration_seconds": 36, + "duration_seconds": 35, "latest_version": "1.0.20", "name": "Test 6 - Regression Validation", "next_installed_version": "1.0.20", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096544#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420917#step:11:1" } ], - "duration_seconds": 46, + "duration_seconds": 45, "failed": 0, "passed": 6, "skipped": 0 @@ -69054,7 +69054,7 @@ "dashboard_link": "/linux/opensource_packages/sysdig", "job_url_resolution_status": "central_exact", "package_slug": "sysdig", - "production_refreshed_at": "2026-05-14T19:37:17.444770+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.651882+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -69068,15 +69068,15 @@ }, "run": { "attempt": "1", - "id": "25877419588", + "id": "26658724696", "job_name": "test-sysdig / test-sysdig", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:02Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048191481" + "timestamp": "2026-05-29T19:49:02Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503390" }, "schema_version": "2.0", "tests": { @@ -69085,31 +69085,31 @@ "duration_seconds": 0, "name": "Test 1 - Check sysdig binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048191481#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503390#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check exact version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048191481#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503390#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048191481#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503390#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048191481#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503390#step:9:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048191481#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503390#step:10:1" }, { "comparison": "Current pinned Sysdig version 0.41.3 passed the real Arm64 sysdig field-listing smoke in this run. Regression validation downloaded candidate version 0.41.4 from the official aarch64 tarball and confirmed the isolated Arm64 version, help, and field-listing paths successfully.", @@ -69121,10 +69121,10 @@ "next_installed_version": "0.41.4", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048191481#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503390#step:11:1" } ], - "duration_seconds": 3, + "duration_seconds": 2, "failed": 0, "passed": 6, "skipped": 0 @@ -69139,7 +69139,7 @@ "dashboard_link": "/linux/opensource_packages/sysget", "job_url_resolution_status": "central_exact", "package_slug": "sysget", - "production_refreshed_at": "2026-05-14T19:37:17.445002+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.652059+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -69153,15 +69153,15 @@ }, "run": { "attempt": "1", - "id": "25877406767", + "id": "26658714432", "job_name": "test-sysget / test-sysget", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:45Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155545" + "timestamp": "2026-05-29T19:48:48Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469554" }, "schema_version": "2.0", "tests": { @@ -69170,31 +69170,31 @@ "duration_seconds": 0, "name": "Test 1 - Check sysget binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155545#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469554#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check exact version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155545#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469554#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155545#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469554#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155545#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469554#step:9:1" }, { "duration_seconds": 1, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155545#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469554#step:10:1" }, { "comparison": "Current pinned Sysget version 2.2 passed the real Arm64 source-build smoke in this run. Regression validation rebuilt candidate version 2.3 from source and confirmed the isolated Arm64 help and package-search paths successfully.", @@ -69206,7 +69206,7 @@ "next_installed_version": "2.3", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155545#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469554#step:11:1" } ], "duration_seconds": 11, @@ -69224,7 +69224,7 @@ "dashboard_link": "/linux/opensource_packages/tabPFN", "job_url_resolution_status": "central_exact", "package_slug": "tabPFN", - "production_refreshed_at": "2026-05-14T19:37:17.445197+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.652232+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -69238,15 +69238,15 @@ }, "run": { "attempt": "1", - "id": "25877435852", + "id": "26658737633", "job_name": "test-tabPFN / test-tabPFN", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:18Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251853" + "timestamp": "2026-05-29T19:49:21Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549417" }, "schema_version": "2.0", "tests": { @@ -69255,46 +69255,46 @@ "duration_seconds": 0, "name": "Test 1 - Check package-specific baseline markers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251853#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549417#step:8:1" }, { "duration_seconds": 0, "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251853#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549417#step:9:1" }, { "duration_seconds": 0, "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251853#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549417#step:10:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251853#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549417#step:11:1" }, { "duration_seconds": 0, "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251853#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549417#step:12:1" }, { "comparison": "Test 6 limited_cpu_smoke_validated: compiled the next TabPFN source candidate on the Arm64 runner and inspected the predictor API source. No package import, model download, fit/predict inference, or GPU execution is claimed.", "current_version": "0.1.3", "decision": "limited_cpu_smoke_validated", - "duration_seconds": 1, - "latest_version": "8.0.2", + "duration_seconds": 2, + "latest_version": "8.0.3", "name": "Test 6 - Regression Validation", - "next_installed_version": "8.0.2", + "next_installed_version": "8.0.3", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251853#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549417#step:13:1" } ], - "duration_seconds": 1, + "duration_seconds": 2, "failed": 0, "passed": 6, "skipped": 0 @@ -69309,7 +69309,7 @@ "dashboard_link": "/linux/opensource_packages/tabpfn-time-series", "job_url_resolution_status": "central_exact", "package_slug": "tabpfn-time-series", - "production_refreshed_at": "2026-05-14T19:37:17.445403+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.652451+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -69323,15 +69323,15 @@ }, "run": { "attempt": "1", - "id": "25877435852", + "id": "26658737633", "job_name": "test-tabpfn-time-series / test-tabpfn-time-series", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:16Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251933" + "timestamp": "2026-05-29T19:49:20Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549298" }, "schema_version": "2.0", "tests": { @@ -69340,31 +69340,31 @@ "duration_seconds": 0, "name": "Test 1 - Check package-specific baseline markers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251933#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549298#step:8:1" }, { "duration_seconds": 0, "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251933#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549298#step:9:1" }, { "duration_seconds": 0, "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251933#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549298#step:10:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251933#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549298#step:11:1" }, { "duration_seconds": 0, "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251933#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549298#step:12:1" }, { "comparison": "Test 6 limited_cpu_smoke_validated: compiled the next TabPFN Time Series source candidate on the Arm64 runner and inspected the predictor API source. No package import, model/client download, forecast inference, or GPU execution is claimed.", @@ -69376,7 +69376,7 @@ "next_installed_version": "1.1.0", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251933#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549298#step:13:1" } ], "duration_seconds": 1, @@ -69394,7 +69394,7 @@ "dashboard_link": "/linux/opensource_packages/taskflow", "job_url_resolution_status": "central_exact", "package_slug": "taskflow", - "production_refreshed_at": "2026-05-14T19:37:17.445606+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.652633+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -69402,19 +69402,19 @@ }, "package": { "name": "Taskflow", - "version": "6.2.0" + "version": "6.3.0" }, "run": { "attempt": "1", - "id": "25877387746", + "id": "26658696365", "job_name": "test-taskflow / test-taskflow", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:18Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083675" + "timestamp": "2026-05-29T19:48:23Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575406517" }, "schema_version": "2.0", "tests": { @@ -69423,37 +69423,37 @@ "duration_seconds": 0, "name": "Test 1 - Check Module Import", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083675#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575406517#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083675#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575406517#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check API Surface", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083675#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575406517#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083675#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575406517#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083675#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575406517#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083675#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575406517#step:11:1" } ], "duration_seconds": 0, @@ -69471,7 +69471,7 @@ "dashboard_link": "/linux/opensource_packages/tbb", "job_url_resolution_status": "central_exact", "package_slug": "tbb", - "production_refreshed_at": "2026-05-14T19:37:17.445840+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.652804+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -69483,57 +69483,57 @@ }, "run": { "attempt": "1", - "id": "25877359516", + "id": "26658670904", "job_name": "test-tbb / test-tbb", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:43Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991065" + "timestamp": "2026-05-29T19:47:53Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321474" }, "schema_version": "2.0", "tests": { "details": [ { - "duration_seconds": 8, + "duration_seconds": 9, "name": "Test 1 - Check TBB library exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991065#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321474#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check TBB header files", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991065#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321474#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Verify Architecture Linkage", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991065#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321474#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991065#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321474#step:9:1" }, { - "duration_seconds": 2, + "duration_seconds": 3, "name": "Test 5 - Functional Validation (Library Check)", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991065#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321474#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991065#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321474#step:11:1" } ], - "duration_seconds": 10, + "duration_seconds": 12, "failed": 0, "passed": 6, "skipped": 0 @@ -69548,7 +69548,7 @@ "dashboard_link": "/linux/opensource_packages/tcl", "job_url_resolution_status": "central_exact", "package_slug": "tcl", - "production_refreshed_at": "2026-05-14T19:37:17.446027+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.652970+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -69560,15 +69560,15 @@ }, "run": { "attempt": "1", - "id": "25877415436", + "id": "26658721315", "job_name": "test-tcl / test-tcl", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:53Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181121" + "timestamp": "2026-05-29T19:48:56Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491750" }, "schema_version": "2.0", "tests": { @@ -69577,37 +69577,37 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181121#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491750#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181121#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491750#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Script Parsing", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181121#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491750#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181121#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491750#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181121#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491750#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181121#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491750#step:11:1" } ], "duration_seconds": 0, @@ -69625,7 +69625,7 @@ "dashboard_link": "/linux/opensource_packages/tdengine", "job_url_resolution_status": "central_exact", "package_slug": "tdengine", - "production_refreshed_at": "2026-05-14T19:37:17.446227+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.653135+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -69637,15 +69637,15 @@ }, "run": { "attempt": "1", - "id": "25877367704", + "id": "26658677990", "job_name": "test-tdengine / test-tdengine", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:56Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027027" + "timestamp": "2026-05-29T19:48:02Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346914" }, "schema_version": "2.0", "tests": { @@ -69654,37 +69654,37 @@ "duration_seconds": 0, "name": "Test 1 - Artifact Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027027#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346914#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027027#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346914#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Configuration Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027027#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346914#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027027#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346914#step:9:1" }, { "duration_seconds": 1, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027027#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346914#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027027#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346914#step:11:1" } ], "duration_seconds": 1, @@ -69702,7 +69702,7 @@ "dashboard_link": "/linux/opensource_packages/tej_api", "job_url_resolution_status": "central_exact", "package_slug": "tej_api", - "production_refreshed_at": "2026-05-14T19:37:17.446424+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.653330+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -69714,57 +69714,57 @@ }, "run": { "attempt": "1", - "id": "25877392111", + "id": "26658699892", "job_name": "test-tej_api / test-tej_api", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:24Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096567" + "timestamp": "2026-05-29T19:48:30Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420659" }, "schema_version": "2.0", "tests": { "details": [ { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 1 - Check Module Import", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096567#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420659#step:6:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096567#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420659#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Help Output or Configuration", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096567#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420659#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096567#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420659#step:9:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096567#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420659#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096567#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420659#step:11:1" } ], - "duration_seconds": 1, + "duration_seconds": 2, "failed": 0, "passed": 6, "skipped": 0 @@ -69779,7 +69779,7 @@ "dashboard_link": "/linux/opensource_packages/telegraf", "job_url_resolution_status": "central_exact", "package_slug": "telegraf", - "production_refreshed_at": "2026-05-14T19:37:17.446627+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.653520+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -69793,15 +69793,15 @@ }, "run": { "attempt": "1", - "id": "25877392111", + "id": "26658699892", "job_name": "test-telegraf / test-telegraf", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:23Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096512" + "timestamp": "2026-05-29T19:48:30Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421154" }, "schema_version": "2.0", "tests": { @@ -69810,43 +69810,43 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096512#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421154#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096512#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421154#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096512#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421154#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096512#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421154#step:9:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096512#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421154#step:10:1" }, { "comparison": "Current pinned Telegraf version 1.34.0 passed the real Arm64 config-test smoke in this run. Regression validation downloaded candidate version 1.34.1 from the official Arm64 tarball and confirmed the isolated version, help, and config-test paths successfully.", "current_version": "1.34.0", "decision": "next_install_validated", - "duration_seconds": 2, + "duration_seconds": 3, "latest_version": "1.34.1", "name": "Test 6 - Regression Validation", "next_installed_version": "1.34.1", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096512#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421154#step:11:1" } ], "duration_seconds": 3, @@ -69864,7 +69864,7 @@ "dashboard_link": "/linux/opensource_packages/tengine", "job_url_resolution_status": "central_exact", "package_slug": "tengine", - "production_refreshed_at": "2026-05-14T19:37:17.446864+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.653707+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -69878,15 +69878,15 @@ }, "run": { "attempt": "1", - "id": "25877395502", + "id": "26658703674", "job_name": "test-tengine / test-tengine", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:26Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110192" + "timestamp": "2026-05-29T19:48:34Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432887" }, "schema_version": "2.0", "tests": { @@ -69895,31 +69895,31 @@ "duration_seconds": 0, "name": "Test 1 - Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110192#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432887#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110192#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432887#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Configuration Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110192#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432887#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110192#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432887#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110192#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432887#step:10:1" }, { "comparison": "Current pinned Tengine version 3.0.0 passed the real Arm64 build and HTTP smoke in this run. Regression validation rebuilt candidate version 3.1.0 from the official source tarball and confirmed the isolated config and HTTP response paths successfully.", @@ -69931,7 +69931,7 @@ "next_installed_version": "3.1.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110192#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432887#step:11:1" } ], "duration_seconds": 11, @@ -69949,7 +69949,7 @@ "dashboard_link": "/linux/opensource_packages/tensorflow", "job_url_resolution_status": "central_exact", "package_slug": "tensorflow", - "production_refreshed_at": "2026-05-14T19:37:17.447285+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.654051+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -69961,57 +69961,57 @@ }, "run": { "attempt": "1", - "id": "25877363365", + "id": "26658674448", "job_name": "test-tensorflow / test-tensorflow", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:47Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000028" + "timestamp": "2026-05-29T19:47:56Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333912" }, "schema_version": "2.0", "tests": { "details": [ { - "duration_seconds": 1, + "duration_seconds": 2, "name": "Test 1 - Import TensorFlow", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000028#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333912#step:6:1" }, { "duration_seconds": 2, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000028#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333912#step:7:1" }, { "duration_seconds": 2, "name": "Test 3 - Check Module Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000028#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333912#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000028#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333912#step:9:1" }, { "duration_seconds": 2, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000028#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333912#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000028#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333912#step:11:1" } ], - "duration_seconds": 7, + "duration_seconds": 8, "failed": 0, "passed": 6, "skipped": 0 @@ -70026,7 +70026,7 @@ "dashboard_link": "/linux/opensource_packages/tensorflow-serving", "job_url_resolution_status": "central_exact", "package_slug": "tensorflow-serving", - "production_refreshed_at": "2026-05-14T19:37:17.447081+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.653876+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -70040,15 +70040,15 @@ }, "run": { "attempt": "1", - "id": "25877371674", + "id": "26658681575", "job_name": "test-tensorflow-serving / test-tensorflow-serving", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:00Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031566" + "timestamp": "2026-05-29T19:48:07Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358532" }, "schema_version": "2.0", "tests": { @@ -70057,31 +70057,31 @@ "duration_seconds": 0, "name": "Test 1 - Check exact baseline source tag and model testdata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031566#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358532#step:8:1" }, { - "duration_seconds": 2, + "duration_seconds": 1, "name": "Test 2 - Check Tensorflow Serving API package imports", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031566#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358532#step:9:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Tensorflow Serving source targets and protos", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031566#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358532#step:10:1" }, { "duration_seconds": 2, "name": "Test 4 - Verify Arm64 runner and Python package platform", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031566#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358532#step:11:1" }, { - "duration_seconds": 1, + "duration_seconds": 2, "name": "Test 5 - Validate half_plus_two model fixture and request path", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031566#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358532#step:12:1" }, { "comparison": "Current Tensorflow Serving 2.18.1 passed source/API/model preflight on Arm64. Test 6 repeated the same scoped proof for 2.19.0: source tag clone, Serving API import, server target/proto presence, half_plus_two model fixture validation, and PredictRequest construction. Full tensorflow_model_server binary build and REST serving remain deferred to the long Bazel runtime lane.", @@ -70093,7 +70093,7 @@ "next_installed_version": "2.19.0", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031566#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358532#step:13:1" } ], "duration_seconds": 34, @@ -70111,7 +70111,7 @@ "dashboard_link": "/linux/opensource_packages/tensorrt", "job_url_resolution_status": "central_exact", "package_slug": "tensorrt", - "production_refreshed_at": "2026-05-14T19:37:17.447801+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.654538+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -70125,15 +70125,15 @@ }, "run": { "attempt": "1", - "id": "25877435852", + "id": "26658737633", "job_name": "test-tensorrt / test-tensorrt", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:15Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252001" + "timestamp": "2026-05-29T19:49:21Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550090" }, "schema_version": "2.0", "tests": { @@ -70142,31 +70142,31 @@ "duration_seconds": 0, "name": "Test 1 - Check package-specific baseline markers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252001#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550090#step:8:1" }, { "duration_seconds": 0, "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252001#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550090#step:9:1" }, { "duration_seconds": 0, "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252001#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550090#step:10:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252001#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550090#step:11:1" }, { "duration_seconds": 0, "name": "Test 5 - Run scoped Arm preflight proof", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252001#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550090#step:12:1" }, { "comparison": "Test 6 limited_cpu_smoke_validated: reran the same bounded scoped Arm source/compile/manifest preflight against the next stable candidate. This is CPU-side preflight evidence only; no TensorRT runtime load, CUDA driver/runtime, GPU execution, model inference, or full product runtime is claimed.", @@ -70178,7 +70178,7 @@ "next_installed_version": "23.08", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252001#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550090#step:13:1" } ], "duration_seconds": 5, @@ -70196,7 +70196,7 @@ "dashboard_link": "/linux/opensource_packages/tensorrt-llm", "job_url_resolution_status": "central_exact", "package_slug": "tensorrt-llm", - "production_refreshed_at": "2026-05-14T19:37:17.447577+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.654335+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -70210,15 +70210,15 @@ }, "run": { "attempt": "1", - "id": "25877435852", + "id": "26658737633", "job_name": "test-tensorrt-llm / test-tensorrt-llm", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:19Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252137" + "timestamp": "2026-05-29T19:49:21Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549933" }, "schema_version": "2.0", "tests": { @@ -70227,46 +70227,46 @@ "duration_seconds": 0, "name": "Test 1 - Check package-specific baseline markers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252137#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549933#step:8:1" }, { "duration_seconds": 0, "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252137#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549933#step:9:1" }, { "duration_seconds": 0, "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252137#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549933#step:10:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252137#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549933#step:11:1" }, { "duration_seconds": 1, "name": "Test 5 - Run scoped Arm preflight proof", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252137#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549933#step:12:1" }, { "comparison": "Test 6 limited_cpu_smoke_validated: reran the same bounded scoped Arm source/compile/import/help/manifest preflight against the next stable candidate. This is CPU-side preflight evidence only; no GPU/CUDA driver/runtime, accelerator execution, Kubernetes cluster, or full product runtime is claimed.", "current_version": "0.20.0", "decision": "limited_cpu_smoke_validated", - "duration_seconds": 137, + "duration_seconds": 131, "latest_version": "1.2.1", "name": "Test 6 - Regression Validation", "next_installed_version": "1.2.1", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252137#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549933#step:13:1" } ], - "duration_seconds": 138, + "duration_seconds": 132, "failed": 0, "passed": 6, "skipped": 0 @@ -70281,7 +70281,7 @@ "dashboard_link": "/linux/opensource_packages/terraform", "job_url_resolution_status": "central_exact", "package_slug": "terraform", - "production_refreshed_at": "2026-05-14T19:37:17.447999+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.654735+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -70295,15 +70295,15 @@ }, "run": { "attempt": "1", - "id": "25877415436", + "id": "26658721315", "job_name": "test-terraform / test-terraform", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:53Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180856" + "timestamp": "2026-05-29T19:48:56Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491628" }, "schema_version": "2.0", "tests": { @@ -70312,46 +70312,46 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180856#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491628#step:6:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180856#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491628#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Help Output or Configuration", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180856#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491628#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180856#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491628#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180856#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491628#step:10:1" }, { - "comparison": "Current pinned Terraform version 1.14.7 passed smoke tests in this run. Regression validation downloaded the official Arm64 artifact from https://releases.hashicorp.com/terraform/1.15.3/terraform_1.15.3_linux_arm64.zip and confirmed candidate version 1.15.3 with real help/init/validate behavior successfully.", + "comparison": "Current pinned Terraform version 1.14.7 passed smoke tests in this run. Regression validation downloaded the official Arm64 artifact from https://releases.hashicorp.com/terraform/1.15.5/terraform_1.15.5_linux_arm64.zip and confirmed candidate version 1.15.5 with real help/init/validate behavior successfully.", "current_version": "1.14.7", "decision": "next_install_validated", "duration_seconds": 1, - "latest_version": "1.15.3", + "latest_version": "1.15.5", "name": "Test 6 - Regression Validation", - "next_installed_version": "1.15.3", + "next_installed_version": "1.15.5", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180856#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491628#step:11:1" } ], - "duration_seconds": 2, + "duration_seconds": 1, "failed": 0, "passed": 6, "skipped": 0 @@ -70366,7 +70366,7 @@ "dashboard_link": "/linux/opensource_packages/tesseract", "job_url_resolution_status": "central_exact", "package_slug": "tesseract", - "production_refreshed_at": "2026-05-14T19:37:17.448205+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.654919+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -70378,15 +70378,15 @@ }, "run": { "attempt": "1", - "id": "25877415436", + "id": "26658721315", "job_name": "test-tesseract / test-tesseract", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:50Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179746" + "timestamp": "2026-05-29T19:48:55Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575490848" }, "schema_version": "2.0", "tests": { @@ -70395,37 +70395,37 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179746#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575490848#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179746#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575490848#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179746#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575490848#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179746#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575490848#step:9:1" }, { "duration_seconds": 1, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179746#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575490848#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179746#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575490848#step:11:1" } ], "duration_seconds": 1, @@ -70443,7 +70443,7 @@ "dashboard_link": "/linux/opensource_packages/thanos", "job_url_resolution_status": "central_exact", "package_slug": "thanos", - "production_refreshed_at": "2026-05-14T19:37:17.448425+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.655101+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -70457,15 +70457,15 @@ }, "run": { "attempt": "1", - "id": "25877406767", + "id": "26658714432", "job_name": "test-thanos / test-thanos", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:44Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155719" + "timestamp": "2026-05-29T19:48:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469344" }, "schema_version": "2.0", "tests": { @@ -70474,46 +70474,46 @@ "duration_seconds": 0, "name": "Test 1 - Check Thanos binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155719#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469344#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155719#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469344#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155719#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469344#step:8:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155719#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469344#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155719#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469344#step:10:1" }, { "comparison": "Current pinned Thanos version 0.38.0 passed smoke tests in this run. Regression validation downloaded the official Arm64 tarball from https://github.com/thanos-io/thanos/releases/download/v0.39.0/thanos-0.39.0.linux-arm64.tar.gz and confirmed candidate version version with real help and rule parser behavior successfully.", "current_version": "0.38.0", "decision": "next_install_validated", - "duration_seconds": 1, + "duration_seconds": 2, "latest_version": "0.39.0", "name": "Test 6 - Regression Validation", "next_installed_version": "version", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155719#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469344#step:11:1" } ], - "duration_seconds": 1, + "duration_seconds": 3, "failed": 0, "passed": 6, "skipped": 0 @@ -70528,7 +70528,7 @@ "dashboard_link": "/linux/opensource_packages/thoughtworks_talisman", "job_url_resolution_status": "central_exact", "package_slug": "thoughtworks_talisman", - "production_refreshed_at": "2026-05-14T19:37:17.448631+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.655304+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -70540,15 +70540,15 @@ }, "run": { "attempt": "1", - "id": "25877419588", + "id": "26658724696", "job_name": "test-thoughtworks_talisman / test-thoughtworks_talisman", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:55Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192375" + "timestamp": "2026-05-29T19:49:02Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504191" }, "schema_version": "2.0", "tests": { @@ -70557,37 +70557,37 @@ "duration_seconds": 0, "name": "Test 1 - Artifact Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192375#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504191#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192375#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504191#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Help Output Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192375#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504191#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192375#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504191#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192375#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504191#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192375#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504191#step:11:1" } ], "duration_seconds": 0, @@ -70605,7 +70605,7 @@ "dashboard_link": "/linux/opensource_packages/threatmapper", "job_url_resolution_status": "central_exact", "package_slug": "threatmapper", - "production_refreshed_at": "2026-05-14T19:37:17.448829+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.655488+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "no_newer_stable_available", @@ -70619,15 +70619,15 @@ }, "run": { "attempt": "1", - "id": "25877363365", + "id": "26658674448", "job_name": "test-threatmapper / test-threatmapper", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:46Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001003" + "timestamp": "2026-05-29T19:47:57Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334523" }, "schema_version": "2.0", "tests": { @@ -70636,31 +70636,31 @@ "duration_seconds": 1, "name": "Test 1 - Artifact Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001003#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334523#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001003#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334523#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Configuration Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001003#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334523#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001003#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334523#step:9:1" }, { "duration_seconds": 1, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001003#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334523#step:10:1" }, { "comparison": "Current pinned ThreatMapper version 2.1.1 passed smoke tests in this run, and Docker Hub has no newer stable semantic version tag beyond this baseline.", @@ -70672,7 +70672,7 @@ "next_installed_version": "not_installed", "regression_result": "No stable newer release is available for Test 6", "status": "skipped", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001003#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334523#step:11:1" } ], "duration_seconds": 2, @@ -70690,7 +70690,7 @@ "dashboard_link": "/linux/opensource_packages/tiffin", "job_url_resolution_status": "central_exact", "package_slug": "tiffin", - "production_refreshed_at": "2026-05-14T19:37:17.449032+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.655665+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -70704,15 +70704,15 @@ }, "run": { "attempt": "1", - "id": "25877363365", + "id": "26658674448", "job_name": "test-tiffin / test-tiffin", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:48Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000779" + "timestamp": "2026-05-29T19:47:57Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334524" }, "schema_version": "2.0", "tests": { @@ -70721,43 +70721,43 @@ "duration_seconds": 0, "name": "Test 1 - Check Build Artifact", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000779#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334524#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000779#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334524#step:7:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 3 - Check Cargo Metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000779#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334524#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000779#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334524#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000779#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334524#step:10:1" }, { "comparison": "Current pinned version 0.3.2 passed smoke tests in this run. Regression validation then verified the newer stable Arm64 candidate 0.4.0 successfully.", "current_version": "0.3.2", "decision": "next_install_validated", - "duration_seconds": 11, + "duration_seconds": 10, "latest_version": "0.4.0", "name": "Test 6 - Regression Validation", "next_installed_version": "0.4.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000779#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334524#step:11:1" } ], "duration_seconds": 11, @@ -70775,7 +70775,7 @@ "dashboard_link": "/linux/opensource_packages/tikv", "job_url_resolution_status": "central_exact", "package_slug": "tikv", - "production_refreshed_at": "2026-05-14T19:37:17.449237+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.655841+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -70789,63 +70789,63 @@ }, "run": { "attempt": "1", - "id": "25877399008", + "id": "26658707245", "job_name": "test-tikv / test-tikv", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:31Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126031" + "timestamp": "2026-05-29T19:48:38Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445359" }, "schema_version": "2.0", "tests": { "details": [ { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 1 - Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126031#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445359#step:6:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126031#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445359#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Help Output Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126031#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445359#step:8:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126031#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445359#step:9:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126031#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445359#step:10:1" }, { "comparison": "Current pinned TiKV image 7.5.5 passed smoke tests in this run. Regression validation pulled candidate image v7.5.6 on Arm64, /tikv-server --version reported 7.5.6, and the isolated config-check smoke passed.", "current_version": "7.5.5", "decision": "next_install_validated", - "duration_seconds": 10, + "duration_seconds": 9, "latest_version": "v7.5.6", "name": "Test 6 - Regression Validation", "next_installed_version": "7.5.6", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126031#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445359#step:11:1" } ], - "duration_seconds": 12, + "duration_seconds": 11, "failed": 0, "passed": 6, "skipped": 0 @@ -70860,7 +70860,7 @@ "dashboard_link": "/linux/opensource_packages/tilelang", "job_url_resolution_status": "central_exact", "package_slug": "tilelang", - "production_refreshed_at": "2026-05-14T19:37:17.449438+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.656014+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -70874,15 +70874,15 @@ }, "run": { "attempt": "1", - "id": "25877435852", + "id": "26658737633", "job_name": "test-tilelang / test-tilelang", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:15Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251780" + "timestamp": "2026-05-29T19:49:20Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550002" }, "schema_version": "2.0", "tests": { @@ -70891,31 +70891,31 @@ "duration_seconds": 0, "name": "Test 1 - Check package-specific baseline markers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251780#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550002#step:8:1" }, { "duration_seconds": 0, "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251780#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550002#step:9:1" }, { "duration_seconds": 0, "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251780#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550002#step:10:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251780#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550002#step:11:1" }, { "duration_seconds": 0, "name": "Test 5 - Run scoped Arm preflight proof", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251780#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550002#step:12:1" }, { "comparison": "Test 6 limited_cpu_smoke_validated: reran the same bounded scoped Arm source/compile/import/help/manifest preflight against the next stable candidate. This is CPU-side preflight evidence only; no GPU/CUDA driver/runtime, accelerator execution, Kubernetes cluster, or full product runtime is claimed.", @@ -70927,7 +70927,7 @@ "next_installed_version": "0.1.8", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251780#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550002#step:13:1" } ], "duration_seconds": 1, @@ -70945,7 +70945,7 @@ "dashboard_link": "/linux/opensource_packages/timber", "job_url_resolution_status": "central_exact", "package_slug": "timber", - "production_refreshed_at": "2026-05-14T19:37:17.449646+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.656190+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -70959,15 +70959,15 @@ }, "run": { "attempt": "1", - "id": "25877375677", + "id": "26658685142", "job_name": "test-timber / test-timber", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:03Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044729" + "timestamp": "2026-05-29T19:48:16Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370851" }, "schema_version": "2.0", "tests": { @@ -70976,31 +70976,31 @@ "duration_seconds": 0, "name": "Test 1 - Artifact Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044729#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370851#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044729#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370851#step:7:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 3 - Configuration Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044729#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370851#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044729#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370851#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044729#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370851#step:10:1" }, { "comparison": "Current pinned Timber version 2.0.0 passed smoke tests in this run. Regression validation installed candidate 2.1.0 through Composer on Arm64, and the package loaded successfully via Composer autoload.", @@ -71012,10 +71012,10 @@ "next_installed_version": "2.1.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044729#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370851#step:11:1" } ], - "duration_seconds": 2, + "duration_seconds": 3, "failed": 0, "passed": 6, "skipped": 0 @@ -71030,7 +71030,7 @@ "dashboard_link": "/linux/opensource_packages/timescaledb", "job_url_resolution_status": "central_exact", "package_slug": "timescaledb", - "production_refreshed_at": "2026-05-14T19:37:17.449866+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.656400+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -71042,15 +71042,15 @@ }, "run": { "attempt": "1", - "id": "25877363365", + "id": "26658674448", "job_name": "test-timescaledb / test-timescaledb", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:47Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001214" + "timestamp": "2026-05-29T19:47:58Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334482" }, "schema_version": "2.0", "tests": { @@ -71059,37 +71059,37 @@ "duration_seconds": 0, "name": "Test 1 - Check extension assets exist", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001214#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334482#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check package version", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001214#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334482#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check control metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001214#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334482#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001214#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334482#step:9:1" }, { - "duration_seconds": 7, + "duration_seconds": 8, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001214#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334482#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001214#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334482#step:11:1" } ], "duration_seconds": 6, @@ -71107,7 +71107,7 @@ "dashboard_link": "/linux/opensource_packages/tinker", "job_url_resolution_status": "central_exact", "package_slug": "tinker", - "production_refreshed_at": "2026-05-14T19:37:17.450078+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.656576+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "no_newer_stable_available", @@ -71121,15 +71121,15 @@ }, "run": { "attempt": "1", - "id": "25877359516", + "id": "26658670904", "job_name": "test-tinker / test-tinker", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:44Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991068" + "timestamp": "2026-05-29T19:47:53Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321463" }, "schema_version": "2.0", "tests": { @@ -71138,31 +71138,31 @@ "duration_seconds": 0, "name": "Test 1 - Check analyze binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991068#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321463#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Check minimize binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991068#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321463#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Check dynamic binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991068#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321463#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991068#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321463#step:10:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation (Analyze Help)", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991068#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321463#step:11:1" }, { "comparison": "Current pinned Tinker baseline 26.1.2 passed Tests 1-5, and no newer stable upstream release was found for a genuine Arm64 upgrade regression check.", @@ -71174,7 +71174,7 @@ "next_installed_version": "26.1.2", "regression_result": "No newer stable release available for Test 6", "status": "skipped", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991068#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321463#step:12:1" } ], "duration_seconds": 0, @@ -71192,7 +71192,7 @@ "dashboard_link": "/linux/opensource_packages/tinyproxy", "job_url_resolution_status": "central_exact", "package_slug": "tinyproxy", - "production_refreshed_at": "2026-05-14T19:37:17.450283+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.656751+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -71204,15 +71204,15 @@ }, "run": { "attempt": "1", - "id": "25877383844", + "id": "26658692522", "job_name": "test-tinyproxy / test-tinyproxy", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:14Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071442" + "timestamp": "2026-05-29T19:48:20Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394997" }, "schema_version": "2.0", "tests": { @@ -71221,37 +71221,37 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071442#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394997#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071442#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394997#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071442#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394997#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071442#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394997#step:9:1" }, { "duration_seconds": 2, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071442#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394997#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071442#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394997#step:11:1" } ], "duration_seconds": 2, @@ -71269,7 +71269,7 @@ "dashboard_link": "/linux/opensource_packages/tinyxml", "job_url_resolution_status": "central_exact", "package_slug": "tinyxml", - "production_refreshed_at": "2026-05-14T19:37:17.450463+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.656930+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -71281,15 +71281,15 @@ }, "run": { "attempt": "1", - "id": "25877375677", + "id": "26658685142", "job_name": "test-tinyxml / test-tinyxml", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:02Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044850" + "timestamp": "2026-05-29T19:48:12Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370476" }, "schema_version": "2.0", "tests": { @@ -71298,37 +71298,37 @@ "duration_seconds": 0, "name": "Test 1 - Artifact Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044850#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370476#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044850#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370476#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Package Configuration Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044850#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370476#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044850#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370476#step:9:1" }, { "duration_seconds": 2, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044850#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370476#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044850#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370476#step:11:1" } ], "duration_seconds": 2, @@ -71346,7 +71346,7 @@ "dashboard_link": "/linux/opensource_packages/torchtune", "job_url_resolution_status": "central_exact", "package_slug": "torchtune", - "production_refreshed_at": "2026-05-14T19:37:17.450676+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.657099+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -71358,15 +71358,15 @@ }, "run": { "attempt": "1", - "id": "25877367704", + "id": "26658677990", "job_name": "test-torchtune / test-torchtune", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:55Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026763" + "timestamp": "2026-05-29T19:48:02Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347627" }, "schema_version": "2.0", "tests": { @@ -71375,40 +71375,40 @@ "duration_seconds": 4, "name": "Test 1 - Check torchtune import", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026763#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347627#step:6:1" }, { "duration_seconds": 3, "name": "Test 2 - Check torchtune version via python", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026763#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347627#step:7:1" }, { "duration_seconds": 1, "name": "Test 3 - Check package metadata and prerequisite resolution", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026763#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347627#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026763#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347627#step:9:1" }, { - "duration_seconds": 4, + "duration_seconds": 3, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026763#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347627#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026763#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347627#step:11:1" } ], - "duration_seconds": 12, + "duration_seconds": 11, "failed": 0, "passed": 6, "skipped": 0 @@ -71423,7 +71423,7 @@ "dashboard_link": "/linux/opensource_packages/tornado", "job_url_resolution_status": "central_exact", "package_slug": "tornado", - "production_refreshed_at": "2026-05-14T19:37:17.450884+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.657282+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -71431,19 +71431,19 @@ }, "package": { "name": "Tornado", - "version": "6.5.5" + "version": "6.5.6" }, "run": { "attempt": "1", - "id": "25877371674", + "id": "26658681575", "job_name": "test-tornado / test-tornado", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:58Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031019" + "timestamp": "2026-05-29T19:48:07Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357240" }, "schema_version": "2.0", "tests": { @@ -71452,40 +71452,40 @@ "duration_seconds": 0, "name": "Test 1 - Check Tornado module import", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031019#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357240#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031019#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357240#step:7:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 3 - Check pip show", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031019#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357240#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031019#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357240#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031019#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357240#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031019#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357240#step:11:1" } ], - "duration_seconds": 0, + "duration_seconds": 1, "failed": 0, "passed": 6, "skipped": 0 @@ -71500,7 +71500,7 @@ "dashboard_link": "/linux/opensource_packages/trf", "job_url_resolution_status": "central_exact", "package_slug": "trf", - "production_refreshed_at": "2026-05-14T19:37:17.451095+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.657464+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "no_newer_stable_available", @@ -71514,15 +71514,15 @@ }, "run": { "attempt": "1", - "id": "25877399008", + "id": "26658707245", "job_name": "test-trf / test-trf", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:31Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125523" + "timestamp": "2026-05-29T19:48:39Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445366" }, "schema_version": "2.0", "tests": { @@ -71531,31 +71531,31 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125523#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445366#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125523#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445366#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Help Output or Configuration", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125523#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445366#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125523#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445366#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125523#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445366#step:10:1" }, { "comparison": "Current pinned TRF source release v4.09.1 already matches the newest public stable TRF release. Tests 1-5 validate the real Arm64 source-build path, but there is no newer stable upstream candidate for a genuine Test 6 upgrade check.", @@ -71567,7 +71567,7 @@ "next_installed_version": "v4.09.1", "regression_result": "No newer stable release available for Test 6", "status": "skipped", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125523#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445366#step:11:1" } ], "duration_seconds": 0, @@ -71585,7 +71585,7 @@ "dashboard_link": "/linux/opensource_packages/trino", "job_url_resolution_status": "central_exact", "package_slug": "trino", - "production_refreshed_at": "2026-05-14T19:37:17.451298+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.657638+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -71597,15 +71597,15 @@ }, "run": { "attempt": "1", - "id": "25877419588", + "id": "26658724696", "job_name": "test-trino / test-trino", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:54Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192347" + "timestamp": "2026-05-29T19:49:00Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503433" }, "schema_version": "2.0", "tests": { @@ -71614,40 +71614,40 @@ "duration_seconds": 0, "name": "Test 1 - Artifact Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192347#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503433#step:6:1" }, { - "duration_seconds": 9, + "duration_seconds": 7, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192347#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503433#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Configuration Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192347#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503433#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192347#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503433#step:9:1" }, { - "duration_seconds": 6, + "duration_seconds": 7, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192347#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503433#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192347#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503433#step:11:1" } ], - "duration_seconds": 13, + "duration_seconds": 14, "failed": 0, "passed": 6, "skipped": 0 @@ -71662,7 +71662,7 @@ "dashboard_link": "/linux/opensource_packages/triton", "job_url_resolution_status": "central_exact", "package_slug": "triton", - "production_refreshed_at": "2026-05-14T19:37:17.451474+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.657809+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -71676,15 +71676,15 @@ }, "run": { "attempt": "1", - "id": "25877435852", + "id": "26658737633", "job_name": "test-triton / test-triton", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:16Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251891" + "timestamp": "2026-05-29T19:49:23Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549974" }, "schema_version": "2.0", "tests": { @@ -71693,46 +71693,46 @@ "duration_seconds": 0, "name": "Test 1 - Package installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251891#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549974#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Version metadata matches baseline", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251891#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549974#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Installed files metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251891#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549974#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251891#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549974#step:10:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251891#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549974#step:11:1" }, { "comparison": "Current pinned package version 3.5.0 passed smoke tests in this run, and the newer stable PyPI candidate 3.5.1 installed successfully on Arm64.", "current_version": "3.5.0", "decision": "next_install_validated", - "duration_seconds": 13, + "duration_seconds": 10, "latest_version": "3.5.1", "name": "Test 6 - Regression Validation", "next_installed_version": "3.5.1", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251891#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549974#step:12:1" } ], - "duration_seconds": 13, + "duration_seconds": 10, "failed": 0, "passed": 6, "skipped": 0 @@ -71747,7 +71747,7 @@ "dashboard_link": "/linux/opensource_packages/trivy", "job_url_resolution_status": "central_exact", "package_slug": "trivy", - "production_refreshed_at": "2026-05-14T19:37:17.451667+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.657982+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -71761,15 +71761,15 @@ }, "run": { "attempt": "1", - "id": "25877423406", + "id": "26658727918", "job_name": "test-trivy / test-trivy", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:10Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209568" + "timestamp": "2026-05-29T19:49:06Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516037" }, "schema_version": "2.0", "tests": { @@ -71778,46 +71778,46 @@ "duration_seconds": 0, "name": "Test 1 - Check trivy binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209568#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516037#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209568#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516037#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209568#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516037#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209568#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516037#step:9:1" }, { "duration_seconds": 1, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209568#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516037#step:10:1" }, { "comparison": "Current pinned Trivy version 0.69.2 passed smoke tests in this run. Regression validation executed candidate version 0.69.3 from https://github.com/aquasecurity/trivy/releases/download/v0.69.3/trivy_0.69.3_Linux-ARM64.tar.gz on Arm64 and confirmed it can still complete the sample configuration scan successfully.", "current_version": "0.69.2", "decision": "next_install_validated", - "duration_seconds": 1, + "duration_seconds": 2, "latest_version": "0.69.3", "name": "Test 6 - Regression Validation", "next_installed_version": "0.69.3", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209568#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516037#step:11:1" } ], - "duration_seconds": 2, + "duration_seconds": 3, "failed": 0, "passed": 6, "skipped": 0 @@ -71832,7 +71832,7 @@ "dashboard_link": "/linux/opensource_packages/tuf", "job_url_resolution_status": "central_exact", "package_slug": "tuf", - "production_refreshed_at": "2026-05-14T19:37:17.451880+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.658153+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -71840,58 +71840,58 @@ }, "package": { "name": "The Update Framework (TUF)", - "version": "6.0.0" + "version": "7.0.0" }, "run": { "attempt": "1", - "id": "25877427741", + "id": "26658731236", "job_name": "test-tuf / test-tuf", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:10Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217725" + "timestamp": "2026-05-29T19:49:14Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529492" }, "schema_version": "2.0", "tests": { "details": [ { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 1 - Check TUF module installation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217725#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529492#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check TUF version attribute", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217725#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529492#step:7:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 3 - Check package metadata output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217725#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529492#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217725#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529492#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217725#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529492#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217725#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529492#step:11:1" } ], "duration_seconds": 1, @@ -71909,7 +71909,7 @@ "dashboard_link": "/linux/opensource_packages/turbovnc", "job_url_resolution_status": "central_exact", "package_slug": "turbovnc", - "production_refreshed_at": "2026-05-14T19:37:17.452053+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.658345+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -71923,15 +71923,15 @@ }, "run": { "attempt": "1", - "id": "25877435852", + "id": "26658737633", "job_name": "test-turbovnc / test-turbovnc", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:20Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252024" + "timestamp": "2026-05-29T19:49:21Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550274" }, "schema_version": "2.0", "tests": { @@ -71940,46 +71940,46 @@ "duration_seconds": 0, "name": "Test 1 - Check package-specific baseline markers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252024#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550274#step:8:1" }, { "duration_seconds": 0, "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252024#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550274#step:9:1" }, { "duration_seconds": 0, "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252024#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550274#step:10:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252024#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550274#step:11:1" }, { - "duration_seconds": 6, + "duration_seconds": 1, "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252024#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550274#step:12:1" }, { "comparison": "Test 6 repeated the TurboVNC scoped Arm preflight against the next stable release candidate: Arm64 package download, package architecture check, and extracted AArch64 Xvnc proof. It does not prove WAN client performance, VirtualGL, or 3D remoting.", "current_version": "3.0", "decision": "limited_cpu_smoke_validated", - "duration_seconds": 12, + "duration_seconds": 3, "latest_version": "3.3", "name": "Test 6 - Regression Validation", "next_installed_version": "3.3", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252024#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550274#step:13:1" } ], - "duration_seconds": 12, + "duration_seconds": 3, "failed": 0, "passed": 6, "skipped": 0 @@ -71994,7 +71994,7 @@ "dashboard_link": "/linux/opensource_packages/typescript", "job_url_resolution_status": "central_exact", "package_slug": "typescript", - "production_refreshed_at": "2026-05-14T19:37:17.452372+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.658615+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -72006,15 +72006,15 @@ }, "run": { "attempt": "1", - "id": "25877415436", + "id": "26658721315", "job_name": "test-typescript / test-typescript", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:49Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180596" + "timestamp": "2026-05-29T19:48:57Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491877" }, "schema_version": "2.0", "tests": { @@ -72023,37 +72023,37 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180596#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491877#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180596#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491877#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Help Output or Configuration", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180596#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491877#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180596#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491877#step:9:1" }, { "duration_seconds": 1, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180596#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491877#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180596#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491877#step:11:1" } ], "duration_seconds": 1, @@ -72071,7 +72071,7 @@ "dashboard_link": "/linux/opensource_packages/ubuntu", "job_url_resolution_status": "central_exact", "package_slug": "ubuntu", - "production_refreshed_at": "2026-05-14T19:37:17.452587+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.658790+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -72085,48 +72085,48 @@ }, "run": { "attempt": "1", - "id": "25877359516", + "id": "26658670904", "job_name": "test-ubuntu / test-ubuntu", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:46Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047989969" + "timestamp": "2026-05-29T19:47:52Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321496" }, "schema_version": "2.0", "tests": { "details": [ { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 1 - Check image architecture", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047989969#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321496#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check OS release file", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047989969#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321496#step:7:1" }, { - "duration_seconds": 11, + "duration_seconds": 8, "name": "Test 3 - Install package with apt", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047989969#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321496#step:8:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 4 - Check architecture inside container", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047989969#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321496#step:9:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 5 - Simple command execution", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047989969#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321496#step:10:1" }, { "comparison": "Baseline Ubuntu 24.04 passed the Arm64 container smoke in this run, and candidate image tag 25.10 also pulled successfully, reported VERSION_ID 25.10, completed in-container apt smoke, and passed architecture plus command validation on Arm64.", @@ -72138,10 +72138,10 @@ "next_installed_version": "25.10", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047989969#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321496#step:11:1" } ], - "duration_seconds": 24, + "duration_seconds": 22, "failed": 0, "passed": 6, "skipped": 0 @@ -72156,7 +72156,7 @@ "dashboard_link": "/linux/opensource_packages/ubuntucore", "job_url_resolution_status": "central_exact", "package_slug": "ubuntucore", - "production_refreshed_at": "2026-05-14T19:37:17.452812+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.658968+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "validated_next_release_metadata", @@ -72170,15 +72170,15 @@ }, "run": { "attempt": "1", - "id": "25877387746", + "id": "26658696365", "job_name": "test-ubuntucore / test-ubuntucore", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:17Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083656" + "timestamp": "2026-05-29T19:48:25Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407497" }, "schema_version": "2.0", "tests": { @@ -72187,31 +72187,31 @@ "duration_seconds": 1, "name": "Test 1 - Baseline artifact existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083656#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407497#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Baseline index validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083656#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407497#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Baseline checksum manifest validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083656#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407497#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083656#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407497#step:9:1" }, { - "duration_seconds": 35, + "duration_seconds": 30, "name": "Test 5 - Baseline image integrity validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083656#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407497#step:10:1" }, { "comparison": "Baseline 20 passed full baseline checks; next 26 artifact presence, checksum listing, and image-header sanity checks passed.", @@ -72223,10 +72223,10 @@ "next_installed_version": "26", "regression_result": "Validated latest Ubuntu Core image artifacts and checksum metadata for the next release.", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083656#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407497#step:11:1" } ], - "duration_seconds": 36, + "duration_seconds": 31, "failed": 0, "passed": 6, "skipped": 0 @@ -72241,7 +72241,7 @@ "dashboard_link": "/linux/opensource_packages/ubuntudesktop", "job_url_resolution_status": "central_exact", "package_slug": "ubuntudesktop", - "production_refreshed_at": "2026-05-14T19:37:17.453001+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.659141+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -72255,15 +72255,15 @@ }, "run": { "attempt": "1", - "id": "25877435852", + "id": "26658737633", "job_name": "test-ubuntudesktop / test-ubuntudesktop", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:16Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251824" + "timestamp": "2026-05-29T19:49:21Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550019" }, "schema_version": "2.0", "tests": { @@ -72272,31 +72272,31 @@ "duration_seconds": 0, "name": "Test 1 - Check package-specific baseline markers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251824#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550019#step:8:1" }, { "duration_seconds": 0, "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251824#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550019#step:9:1" }, { "duration_seconds": 0, "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251824#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550019#step:10:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251824#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550019#step:11:1" }, { "duration_seconds": 2, "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251824#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550019#step:12:1" }, { "comparison": "Test 6 limited_cpu_smoke_validated: reran the scoped Ubuntu Desktop artifact proof against 26.04 with official Arm64 desktop artifact discovery, checksum listing validation, manifest download, and desktop/rootfs package checks. Image boot, installer behavior, hardware enablement, and graphical desktop startup remain out of scope.", @@ -72308,7 +72308,7 @@ "next_installed_version": "26.04", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251824#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550019#step:13:1" } ], "duration_seconds": 4, @@ -72326,7 +72326,7 @@ "dashboard_link": "/linux/opensource_packages/ucx", "job_url_resolution_status": "central_exact", "package_slug": "ucx", - "production_refreshed_at": "2026-05-14T19:37:17.453208+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.659342+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -72339,15 +72339,15 @@ }, "run": { "attempt": "1", - "id": "25877435852", + "id": "26658737633", "job_name": "test-ucx / test-ucx", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:16Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251775" + "timestamp": "2026-05-29T19:49:21Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550036" }, "schema_version": "2.0", "tests": { @@ -72356,37 +72356,37 @@ "duration_seconds": 0, "name": "Test 1 - Check package-specific baseline markers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251775#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550036#step:8:1" }, { "duration_seconds": 0, "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251775#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550036#step:9:1" }, { "duration_seconds": 0, "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251775#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550036#step:10:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251775#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550036#step:11:1" }, { "duration_seconds": 0, "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251775#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550036#step:12:1" }, { "duration_seconds": 0, "name": "Test 6 - Regression Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251775#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550036#step:13:1" } ], "duration_seconds": 0, @@ -72404,7 +72404,7 @@ "dashboard_link": "/linux/opensource_packages/ultralytics", "job_url_resolution_status": "central_exact", "package_slug": "ultralytics", - "production_refreshed_at": "2026-05-14T19:37:17.453421+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.659517+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -72412,61 +72412,61 @@ }, "package": { "name": "Ultralytics", - "version": "8.4.50" + "version": "8.4.56" }, "run": { "attempt": "1", - "id": "25877367704", + "id": "26658677990", "job_name": "test-ultralytics / test-ultralytics", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:56Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026709" + "timestamp": "2026-05-29T19:48:02Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347221" }, "schema_version": "2.0", "tests": { "details": [ { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 1 - Check ultralytics binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026709#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347221#step:6:1" }, { - "duration_seconds": 4, + "duration_seconds": 2, "name": "Test 2 - Check ultralytics version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026709#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347221#step:7:1" }, { - "duration_seconds": 1, + "duration_seconds": 2, "name": "Test 3 - Check ultralytics help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026709#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347221#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026709#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347221#step:9:1" }, { - "duration_seconds": 2, + "duration_seconds": 1, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026709#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347221#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026709#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347221#step:11:1" } ], - "duration_seconds": 5, + "duration_seconds": 4, "failed": 0, "passed": 6, "skipped": 0 @@ -72481,7 +72481,7 @@ "dashboard_link": "/linux/opensource_packages/ultramarine-linux", "job_url_resolution_status": "central_exact", "package_slug": "ultramarine-linux", - "production_refreshed_at": "2026-05-14T19:37:17.453608+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.659682+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "no_newer_stable_available", @@ -72495,48 +72495,48 @@ }, "run": { "attempt": "1", - "id": "25877367704", + "id": "26658677990", "job_name": "test-ultramarine-linux / test-ultramarine-linux", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:55Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027102" + "timestamp": "2026-05-29T19:48:03Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347424" }, "schema_version": "2.0", "tests": { "details": [ { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 1 - Baseline artifact existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027102#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347424#step:6:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 2 - Baseline index validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027102#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347424#step:7:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 3 - Baseline checksum manifest validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027102#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347424#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027102#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347424#step:9:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 5 - Baseline image validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027102#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347424#step:10:1" }, { "comparison": "Baseline 43 matches latest 43; next-version regression is not applicable for this run.", @@ -72548,7 +72548,7 @@ "next_installed_version": "43", "regression_result": "No newer Ultramarine Linux release is available beyond baseline.", "status": "skipped", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027102#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347424#step:11:1" } ], "duration_seconds": 2, @@ -72566,7 +72566,7 @@ "dashboard_link": "/linux/opensource_packages/unixbench", "job_url_resolution_status": "central_exact", "package_slug": "unixbench", - "production_refreshed_at": "2026-05-14T19:37:17.453830+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.659861+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -72580,15 +72580,15 @@ }, "run": { "attempt": "1", - "id": "25877387746", + "id": "26658696365", "job_name": "test-unixbench / test-unixbench", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:16Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084833" + "timestamp": "2026-05-29T19:48:24Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407677" }, "schema_version": "2.0", "tests": { @@ -72597,43 +72597,43 @@ "duration_seconds": 0, "name": "Test 1 - Check Runner Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084833#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407677#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084833#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407677#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Configuration or Usage", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084833#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407677#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084833#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407677#step:9:1" }, { - "duration_seconds": 15, + "duration_seconds": 16, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084833#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407677#step:10:1" }, { "comparison": "Current pinned UnixBench version 5.1.3 passed smoke tests in this run. Regression validation rebuilt candidate version 6.0.0 on Arm64 and confirmed the real benchmark smoke still completes successfully.", "current_version": "5.1.3", "decision": "next_install_validated", - "duration_seconds": 16, + "duration_seconds": 15, "latest_version": "6.0.0", "name": "Test 6 - Regression Validation", "next_installed_version": "6.0.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084833#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407677#step:11:1" } ], "duration_seconds": 31, @@ -72651,7 +72651,7 @@ "dashboard_link": "/linux/opensource_packages/unleash", "job_url_resolution_status": "central_exact", "package_slug": "unleash", - "production_refreshed_at": "2026-05-14T19:37:17.454017+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.660041+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -72663,15 +72663,15 @@ }, "run": { "attempt": "1", - "id": "25877371674", + "id": "26658681575", "job_name": "test-unleash / test-unleash", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:58Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031789" + "timestamp": "2026-05-29T19:48:07Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358050" }, "schema_version": "2.0", "tests": { @@ -72680,40 +72680,40 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031789#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358050#step:6:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031789#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358050#step:7:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 3 - Check Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031789#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358050#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031789#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358050#step:9:1" }, { "duration_seconds": 15, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031789#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358050#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031789#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358050#step:11:1" } ], - "duration_seconds": 15, + "duration_seconds": 16, "failed": 0, "passed": 6, "skipped": 0 @@ -72728,7 +72728,7 @@ "dashboard_link": "/linux/opensource_packages/uui", "job_url_resolution_status": "central_exact", "package_slug": "uui", - "production_refreshed_at": "2026-05-14T19:37:17.454214+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.660209+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -72740,15 +72740,15 @@ }, "run": { "attempt": "1", - "id": "25877379982", + "id": "26658688675", "job_name": "test-uui / test-uui", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:10Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057412" + "timestamp": "2026-05-29T19:48:16Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380568" }, "schema_version": "2.0", "tests": { @@ -72757,40 +72757,40 @@ "duration_seconds": 0, "name": "Test 1 - Artifact Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057412#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380568#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057412#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380568#step:7:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 3 - Configuration Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057412#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380568#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057412#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380568#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057412#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380568#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057412#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380568#step:11:1" } ], - "duration_seconds": 1, + "duration_seconds": 0, "failed": 0, "passed": 6, "skipped": 0 @@ -72805,7 +72805,7 @@ "dashboard_link": "/linux/opensource_packages/uv", "job_url_resolution_status": "central_exact", "package_slug": "uv", - "production_refreshed_at": "2026-05-14T19:37:17.454394+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.660419+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -72819,15 +72819,15 @@ }, "run": { "attempt": "1", - "id": "25877371674", + "id": "26658681575", "job_name": "test-uv / test-uv", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:00Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031582" + "timestamp": "2026-05-29T19:48:08Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358270" }, "schema_version": "2.0", "tests": { @@ -72836,46 +72836,46 @@ "duration_seconds": 0, "name": "Test 1 - Artifact Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031582#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358270#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031582#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358270#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031582#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358270#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031582#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358270#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031582#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358270#step:10:1" }, { "comparison": "Current pinned uv version 0.5.25 passed smoke tests in this run. Regression validation executed candidate version 0.5.26 from https://github.com/astral-sh/uv/releases/download/0.5.26/uv-aarch64-unknown-linux-gnu.tar.gz on Arm64 and confirmed it can still create an isolated virtual environment successfully.", "current_version": "0.5.25", "decision": "next_install_validated", - "duration_seconds": 0, + "duration_seconds": 1, "latest_version": "0.5.26", "name": "Test 6 - Regression Validation", "next_installed_version": "0.5.26", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031582#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358270#step:11:1" } ], - "duration_seconds": 0, + "duration_seconds": 1, "failed": 0, "passed": 6, "skipped": 0 @@ -72890,7 +72890,7 @@ "dashboard_link": "/linux/opensource_packages/uyuni", "job_url_resolution_status": "central_exact", "package_slug": "uyuni", - "production_refreshed_at": "2026-05-14T19:37:17.454578+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.660600+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "no_newer_stable_available", @@ -72904,15 +72904,15 @@ }, "run": { "attempt": "1", - "id": "25877392111", + "id": "26658699892", "job_name": "test-uyuni / test-uyuni", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:25Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096547" + "timestamp": "2026-05-29T19:48:30Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421052" }, "schema_version": "2.0", "tests": { @@ -72921,43 +72921,43 @@ "duration_seconds": 0, "name": "Test 1 - Check baseline image pulled", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096547#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421052#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Verify baseline tag metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096547#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421052#step:7:1" }, { "duration_seconds": 1, "name": "Test 3 - Container smoke command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096547#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421052#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify image architecture", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096547#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421052#step:9:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 5 - Validate Uyuni package footprint", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096547#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421052#step:10:1" }, { "comparison": "Baseline 2026.04 is currently the latest stable tag available from the official registry.", "current_version": "2026.04", "decision": "no_newer_stable_available", - "duration_seconds": 0, + "duration_seconds": 1, "latest_version": "2026.04", "name": "Test 6 - Regression Validation", "next_installed_version": "not_installed", "regression_result": "No newer stable Uyuni tag available", "status": "skipped", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096547#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421052#step:11:1" } ], "duration_seconds": 2, @@ -72975,7 +72975,7 @@ "dashboard_link": "/linux/opensource_packages/v8-javascript", "job_url_resolution_status": "central_exact", "package_slug": "v8-javascript", - "production_refreshed_at": "2026-05-14T19:37:17.454774+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.660773+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -72987,15 +72987,15 @@ }, "run": { "attempt": "1", - "id": "25877371674", + "id": "26658681575", "job_name": "test-v8-javascript / test-v8-javascript", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:59Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031855" + "timestamp": "2026-05-29T19:48:08Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358680" }, "schema_version": "2.0", "tests": { @@ -73004,37 +73004,37 @@ "duration_seconds": 0, "name": "Test 1 - Check Runtime Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031855#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358680#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031855#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358680#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Configuration or Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031855#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358680#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031855#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358680#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031855#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358680#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031855#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358680#step:11:1" } ], "duration_seconds": 0, @@ -73052,7 +73052,7 @@ "dashboard_link": "/linux/opensource_packages/valgrind", "job_url_resolution_status": "central_exact", "package_slug": "valgrind", - "production_refreshed_at": "2026-05-14T19:37:17.454965+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.660945+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -73066,15 +73066,15 @@ }, "run": { "attempt": "1", - "id": "25877399008", + "id": "26658707245", "job_name": "test-valgrind / test-valgrind", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:32Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126172" + "timestamp": "2026-05-29T19:48:38Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445558" }, "schema_version": "2.0", "tests": { @@ -73083,46 +73083,46 @@ "duration_seconds": 0, "name": "Test 1 - Check valgrind binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126172#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445558#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check exact version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126172#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445558#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126172#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445558#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126172#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445558#step:9:1" }, { "duration_seconds": 1, "name": "Test 5 - Functional validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126172#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445558#step:10:1" }, { - "comparison": "Current pinned Valgrind version 3.23.0 passed smoke tests in this run. Regression validation rebuilt candidate version 3.27.0 on Arm64, the isolated candidate binary reported version 3.27.0, and memcheck still reported the expected leak summary.", + "comparison": "Current pinned Valgrind version 3.23.0 passed smoke tests in this run. Regression validation rebuilt candidate version 3.27.1 on Arm64, the isolated candidate binary reported version 3.27.1, and memcheck still reported the expected leak summary.", "current_version": "3.23.0", "decision": "next_install_validated", - "duration_seconds": 107, - "latest_version": "3.27.0", + "duration_seconds": 108, + "latest_version": "3.27.1", "name": "Test 6 - Regression Validation", - "next_installed_version": "3.27.0", + "next_installed_version": "3.27.1", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126172#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445558#step:11:1" } ], - "duration_seconds": 108, + "duration_seconds": 109, "failed": 0, "passed": 6, "skipped": 0 @@ -73137,7 +73137,7 @@ "dashboard_link": "/linux/opensource_packages/valkey", "job_url_resolution_status": "central_exact", "package_slug": "valkey", - "production_refreshed_at": "2026-05-14T19:37:17.455157+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.661119+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -73151,15 +73151,15 @@ }, "run": { "attempt": "1", - "id": "25877392111", + "id": "26658699892", "job_name": "test-valkey / test-valkey", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:22Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096525" + "timestamp": "2026-05-29T19:48:30Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421150" }, "schema_version": "2.0", "tests": { @@ -73168,46 +73168,46 @@ "duration_seconds": 0, "name": "Test 1 - Check Valkey binaries exist", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096525#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421150#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096525#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421150#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096525#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421150#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096525#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421150#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096525#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421150#step:10:1" }, { "comparison": "Baseline Valkey 8.0.2 passed the Arm64 source-build and server smoke in this run, and candidate 8.0.3 also built and completed the real server SET and GET smoke successfully.", "current_version": "8.0.2", "decision": "next_install_validated", - "duration_seconds": 40, + "duration_seconds": 39, "latest_version": "8.0.3", "name": "Test 6 - Regression Validation", "next_installed_version": "8.0.3", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096525#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421150#step:11:1" } ], - "duration_seconds": 40, + "duration_seconds": 39, "failed": 0, "passed": 6, "skipped": 0 @@ -73222,7 +73222,7 @@ "dashboard_link": "/linux/opensource_packages/varnish", "job_url_resolution_status": "central_exact", "package_slug": "varnish", - "production_refreshed_at": "2026-05-14T19:37:17.455340+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.661308+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -73236,15 +73236,15 @@ }, "run": { "attempt": "1", - "id": "25877379982", + "id": "26658688675", "job_name": "test-varnish / test-varnish", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:05Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057169" + "timestamp": "2026-05-29T19:48:15Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380579" }, "schema_version": "2.0", "tests": { @@ -73253,46 +73253,46 @@ "duration_seconds": 0, "name": "Test 1 - Image Availability", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057169#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380579#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057169#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380579#step:7:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 3 - Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057169#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380579#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057169#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380579#step:9:1" }, { - "duration_seconds": 3, + "duration_seconds": 2, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057169#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380579#step:10:1" }, { "comparison": "Current pinned Varnish image 7.7.2 passed smoke tests in this run. Regression validation pulled candidate image varnish:7.7.3, confirmed version 7.7.3, and completed real config-compile plus backend proxy smoke successfully on Arm64.", "current_version": "7.7.2", "decision": "next_install_validated", - "duration_seconds": 10, + "duration_seconds": 9, "latest_version": "7.7.3", "name": "Test 6 - Regression Validation", "next_installed_version": "7.7.3", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057169#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380579#step:11:1" } ], - "duration_seconds": 13, + "duration_seconds": 12, "failed": 0, "passed": 6, "skipped": 0 @@ -73307,7 +73307,7 @@ "dashboard_link": "/linux/opensource_packages/vcpkg", "job_url_resolution_status": "central_exact", "package_slug": "vcpkg", - "production_refreshed_at": "2026-05-14T19:37:17.455523+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.661483+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -73320,15 +73320,15 @@ }, "run": { "attempt": "1", - "id": "25877435852", + "id": "26658737633", "job_name": "test-vcpkg / test-vcpkg", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:15Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251935" + "timestamp": "2026-05-29T19:49:23Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550054" }, "schema_version": "2.0", "tests": { @@ -73337,37 +73337,37 @@ "duration_seconds": 0, "name": "Test 1 - Check package-specific baseline markers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251935#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550054#step:8:1" }, { "duration_seconds": 0, "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251935#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550054#step:9:1" }, { "duration_seconds": 0, "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251935#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550054#step:10:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251935#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550054#step:11:1" }, { "duration_seconds": 0, "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251935#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550054#step:12:1" }, { "duration_seconds": 0, "name": "Test 6 - Regression Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251935#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550054#step:13:1" } ], "duration_seconds": 0, @@ -73385,7 +73385,7 @@ "dashboard_link": "/linux/opensource_packages/vectorscan", "job_url_resolution_status": "central_exact", "package_slug": "vectorscan", - "production_refreshed_at": "2026-05-14T19:37:17.455706+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.661657+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -73399,15 +73399,15 @@ }, "run": { "attempt": "1", - "id": "25877395502", + "id": "26658703674", "job_name": "test-vectorscan / test-vectorscan", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:27Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109480" + "timestamp": "2026-05-29T19:48:33Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433219" }, "schema_version": "2.0", "tests": { @@ -73416,46 +73416,46 @@ "duration_seconds": 0, "name": "Test 1 - Check built artifacts exist", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109480#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433219#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check exact version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109480#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433219#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check hsbench help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109480#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433219#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109480#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433219#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109480#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433219#step:10:1" }, { "comparison": "Current pinned Vectorscan version 5.4.11 passed smoke tests in this run. Regression validation rebuilt candidate version 5.4.12 on Arm64 and confirmed both hsbench help output and a real simplegrep regex-match smoke succeed.", "current_version": "5.4.11", "decision": "next_install_validated", - "duration_seconds": 255, + "duration_seconds": 251, "latest_version": "5.4.12", "name": "Test 6 - Regression Validation", "next_installed_version": "5.4.12", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109480#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433219#step:11:1" } ], - "duration_seconds": 255, + "duration_seconds": 250, "failed": 0, "passed": 6, "skipped": 0 @@ -73470,7 +73470,7 @@ "dashboard_link": "/linux/opensource_packages/velocity", "job_url_resolution_status": "central_exact", "package_slug": "velocity", - "production_refreshed_at": "2026-05-14T19:37:17.455918+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.661845+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -73482,15 +73482,15 @@ }, "run": { "attempt": "1", - "id": "25877359516", + "id": "26658670904", "job_name": "test-velocity / test-velocity", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:45Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991399" + "timestamp": "2026-05-29T19:47:54Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321483" }, "schema_version": "2.0", "tests": { @@ -73499,40 +73499,40 @@ "duration_seconds": 0, "name": "Test 1 - Create Template Test Class", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991399#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321483#step:8:1" }, { - "duration_seconds": 12, + "duration_seconds": 11, "name": "Test 2 - Compile Project", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991399#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321483#step:9:1" }, { "duration_seconds": 3, "name": "Test 3 - Run Template Test", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991399#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321483#step:10:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991399#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321483#step:11:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991399#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321483#step:12:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991399#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321483#step:13:1" } ], - "duration_seconds": 15, + "duration_seconds": 14, "failed": 0, "passed": 6, "skipped": 0 @@ -73547,7 +73547,7 @@ "dashboard_link": "/linux/opensource_packages/velox", "job_url_resolution_status": "central_exact", "package_slug": "velox", - "production_refreshed_at": "2026-05-14T19:37:17.456094+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.662016+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -73561,15 +73561,15 @@ }, "run": { "attempt": "1", - "id": "25877435852", + "id": "26658737633", "job_name": "test-velox / test-velox", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:17Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251928" + "timestamp": "2026-05-29T19:49:21Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550306" }, "schema_version": "2.0", "tests": { @@ -73578,46 +73578,46 @@ "duration_seconds": 0, "name": "Test 1 - Check package-specific baseline markers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251928#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550306#step:8:1" }, { "duration_seconds": 0, "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251928#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550306#step:9:1" }, { "duration_seconds": 0, "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251928#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550306#step:10:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251928#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550306#step:11:1" }, { "duration_seconds": 2, "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251928#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550306#step:12:1" }, { "comparison": "Compiled and executed a Velox Arm64 C++ portability probe against the next stable candidate headers. This validates Arm64 compile/runtime compatibility for a bounded Velox base component, not a full query-engine build.", "current_version": "2026.03.13.00", "decision": "limited_cpu_smoke_validated", - "duration_seconds": 5, + "duration_seconds": 4, "latest_version": "2026.05.01.00", "name": "Test 6 - Regression Validation", "next_installed_version": "2026.05.01.00", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251928#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550306#step:13:1" } ], - "duration_seconds": 7, + "duration_seconds": 6, "failed": 0, "passed": 6, "skipped": 0 @@ -73632,7 +73632,7 @@ "dashboard_link": "/linux/opensource_packages/verible", "job_url_resolution_status": "central_exact", "package_slug": "verible", - "production_refreshed_at": "2026-05-14T19:37:17.456269+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.662194+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -73646,15 +73646,15 @@ }, "run": { "attempt": "1", - "id": "25877435852", + "id": "26658737633", "job_name": "test-verible / test-verible", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:18Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251976" + "timestamp": "2026-05-29T19:49:24Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550174" }, "schema_version": "2.0", "tests": { @@ -73663,31 +73663,31 @@ "duration_seconds": 0, "name": "Test 1 - Check package-specific baseline markers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251976#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550174#step:8:1" }, { "duration_seconds": 0, "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251976#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550174#step:9:1" }, { "duration_seconds": 0, "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251976#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550174#step:10:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251976#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550174#step:11:1" }, { "duration_seconds": 1, "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251976#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550174#step:12:1" }, { "comparison": "Test 6 downloaded the next Verible linux-static-arm64 release, verified formatter/linter versions, and formatted/linted a tiny SystemVerilog module on the Arm64 runner. Full language-suite conformance and large-project lint coverage remain out of scope.", @@ -73699,7 +73699,7 @@ "next_installed_version": "0.0-4053-g89d4d98a", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251976#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550174#step:13:1" } ], "duration_seconds": 3, @@ -73717,7 +73717,7 @@ "dashboard_link": "/linux/opensource_packages/verilator", "job_url_resolution_status": "central_exact", "package_slug": "verilator", - "production_refreshed_at": "2026-05-14T19:37:17.456446+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.662410+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -73729,15 +73729,15 @@ }, "run": { "attempt": "1", - "id": "25877435852", + "id": "26658737633", "job_name": "test-verilator / test-verilator", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:19Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251839" + "timestamp": "2026-05-29T19:49:21Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550124" }, "schema_version": "2.0", "tests": { @@ -73746,40 +73746,40 @@ "duration_seconds": 0, "name": "Test 1 - Check verilator binary", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251839#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550124#step:7:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 2 - Check verilator version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251839#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550124#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Check verilator help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251839#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550124#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Lint a minimal Verilog module", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251839#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550124#step:10:1" }, { "duration_seconds": 0, "name": "Test 5 - Preprocess a minimal Verilog module", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251839#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550124#step:11:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251839#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550124#step:12:1" } ], - "duration_seconds": 0, + "duration_seconds": 1, "failed": 0, "passed": 6, "skipped": 0 @@ -73794,7 +73794,7 @@ "dashboard_link": "/linux/opensource_packages/veriloggen", "job_url_resolution_status": "central_exact", "package_slug": "veriloggen", - "production_refreshed_at": "2026-05-14T19:37:17.456617+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.662596+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -73808,15 +73808,15 @@ }, "run": { "attempt": "1", - "id": "25877435852", + "id": "26658737633", "job_name": "test-veriloggen / test-veriloggen", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:22Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251819" + "timestamp": "2026-05-29T19:49:27Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549907" }, "schema_version": "2.0", "tests": { @@ -73825,31 +73825,31 @@ "duration_seconds": 0, "name": "Test 1 - Check package-specific baseline markers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251819#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549907#step:9:1" }, { "duration_seconds": 0, "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251819#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549907#step:10:1" }, { "duration_seconds": 0, "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251819#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549907#step:11:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251819#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549907#step:12:1" }, { - "duration_seconds": 10, + "duration_seconds": 12, "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251819#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549907#step:13:1" }, { "comparison": "Installed the next Veriloggen candidate on Arm64 and generated a tiny Verilog module.", @@ -73861,10 +73861,10 @@ "next_installed_version": "2.3.0", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251819#step:14:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549907#step:14:1" } ], - "duration_seconds": 23, + "duration_seconds": 25, "failed": 0, "passed": 6, "skipped": 0 @@ -73879,7 +73879,7 @@ "dashboard_link": "/linux/opensource_packages/vespa-open-source", "job_url_resolution_status": "central_exact", "package_slug": "vespa-open-source", - "production_refreshed_at": "2026-05-14T19:37:17.456924+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.662867+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -73893,15 +73893,15 @@ }, "run": { "attempt": "1", - "id": "25877419588", + "id": "26658724696", "job_name": "test-vespa-open-source / test-vespa-open-source", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:59Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192670" + "timestamp": "2026-05-29T19:49:01Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503335" }, "schema_version": "2.0", "tests": { @@ -73910,46 +73910,46 @@ "duration_seconds": 0, "name": "Test 1 - Check Image Availability", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192670#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503335#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192670#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503335#step:7:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 3 - Check Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192670#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503335#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192670#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503335#step:9:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192670#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503335#step:10:1" }, { "comparison": "Current pinned Vespa version 8.640.27 passed smoke tests in this run. Regression validation pulled candidate image 8.643.19, and the isolated Arm64 container completed the real CLI version, help, and document-help paths successfully.", "current_version": "8.640.27", "decision": "next_install_validated", - "duration_seconds": 29, + "duration_seconds": 16, "latest_version": "8.643.19", "name": "Test 6 - Regression Validation", "next_installed_version": "8.643.19", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192670#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503335#step:11:1" } ], - "duration_seconds": 30, + "duration_seconds": 17, "failed": 0, "passed": 6, "skipped": 0 @@ -73964,7 +73964,7 @@ "dashboard_link": "/linux/opensource_packages/victoriametrics", "job_url_resolution_status": "central_exact", "package_slug": "victoriametrics", - "production_refreshed_at": "2026-05-14T19:37:17.457111+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.663051+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -73978,15 +73978,15 @@ }, "run": { "attempt": "1", - "id": "25877379982", + "id": "26658688675", "job_name": "test-victoriametrics / test-victoriametrics", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:05Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057139" + "timestamp": "2026-05-29T19:48:15Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380643" }, "schema_version": "2.0", "tests": { @@ -73995,31 +73995,31 @@ "duration_seconds": 0, "name": "Test 1 - Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057139#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380643#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057139#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380643#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Configuration Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057139#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380643#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057139#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380643#step:9:1" }, { "duration_seconds": 1, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057139#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380643#step:10:1" }, { "comparison": "Current pinned VictoriaMetrics version 1.137.0 passed smoke tests in this run. Regression validation downloaded the candidate 1.138.0 Arm64 artifact from https://github.com/VictoriaMetrics/VictoriaMetrics/releases/download/v1.138.0/victoria-metrics-linux-arm64-v1.138.0.tar.gz and the isolated startup plus health-check validation also passed successfully.", @@ -74031,7 +74031,7 @@ "next_installed_version": "1.138.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057139#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380643#step:11:1" } ], "duration_seconds": 3, @@ -74049,7 +74049,7 @@ "dashboard_link": "/linux/opensource_packages/videomass", "job_url_resolution_status": "central_exact", "package_slug": "videomass", - "production_refreshed_at": "2026-05-14T19:37:17.457290+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.663227+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -74063,48 +74063,48 @@ }, "run": { "attempt": "1", - "id": "25877435852", + "id": "26658737633", "job_name": "test-videomass / test-videomass", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:19Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252087" + "timestamp": "2026-05-29T19:49:20Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550108" }, "schema_version": "2.0", "tests": { "details": [ { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 1 - Package installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252087#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550108#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Version metadata matches baseline", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252087#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550108#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Installed files metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252087#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550108#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252087#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550108#step:10:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252087#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550108#step:11:1" }, { "comparison": "Current pinned package version 1.4.4 passed smoke tests in this run, and the newer stable PyPI candidate 1.4.5 installed successfully on Arm64.", @@ -74116,10 +74116,10 @@ "next_installed_version": "1.4.5", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252087#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550108#step:12:1" } ], - "duration_seconds": 6, + "duration_seconds": 5, "failed": 0, "passed": 6, "skipped": 0 @@ -74134,7 +74134,7 @@ "dashboard_link": "/linux/opensource_packages/vidgear", "job_url_resolution_status": "central_exact", "package_slug": "vidgear", - "production_refreshed_at": "2026-05-14T19:37:17.457470+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.663445+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -74148,15 +74148,15 @@ }, "run": { "attempt": "1", - "id": "25877435852", + "id": "26658737633", "job_name": "test-vidgear / test-vidgear", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:22Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251842" + "timestamp": "2026-05-29T19:49:29Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550098" }, "schema_version": "2.0", "tests": { @@ -74165,46 +74165,46 @@ "duration_seconds": 0, "name": "Test 1 - Check package-specific baseline markers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251842#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550098#step:9:1" }, { "duration_seconds": 0, "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251842#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550098#step:10:1" }, { "duration_seconds": 0, "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251842#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550098#step:11:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251842#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550098#step:12:1" }, { - "duration_seconds": 11, + "duration_seconds": 10, "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251842#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550098#step:13:1" }, { "comparison": "Installed the next VidGear candidate on Arm64 and wrote/read a synthetic video frame path.", "current_version": "0.1.0", "decision": "limited_cpu_smoke_validated", - "duration_seconds": 14, + "duration_seconds": 13, "latest_version": "0.3.4", "name": "Test 6 - Regression Validation", "next_installed_version": "0.3.4", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251842#step:14:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550098#step:14:1" } ], - "duration_seconds": 14, + "duration_seconds": 13, "failed": 0, "passed": 6, "skipped": 0 @@ -74219,7 +74219,7 @@ "dashboard_link": "/linux/opensource_packages/visualreview", "job_url_resolution_status": "central_exact", "package_slug": "visualreview", - "production_refreshed_at": "2026-05-14T19:37:17.457648+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.663628+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -74233,15 +74233,15 @@ }, "run": { "attempt": "1", - "id": "25877387746", + "id": "26658696365", "job_name": "test-visualreview / test-visualreview", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:21Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083707" + "timestamp": "2026-05-29T19:48:29Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407301" }, "schema_version": "2.0", "tests": { @@ -74250,43 +74250,43 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083707#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407301#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083707#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407301#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Help Output or Configuration", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083707#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407301#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083707#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407301#step:10:1" }, { - "duration_seconds": 5, + "duration_seconds": 4, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083707#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407301#step:11:1" }, { "comparison": "Current pinned VisualReview version 0.1.4 passed smoke tests in this run. Regression validation downloaded candidate 0.1.5 from https://github.com/xebia/VisualReview/releases/download/0.1.5/visualreview-0.1.5.zip and the isolated startup plus HTTP validation also passed successfully on Arm64.", "current_version": "0.1.4", "decision": "next_install_validated", - "duration_seconds": 4, + "duration_seconds": 5, "latest_version": "0.1.5", "name": "Test 6 - Regression Validation", "next_installed_version": "0.1.5", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083707#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407301#step:12:1" } ], "duration_seconds": 9, @@ -74304,7 +74304,7 @@ "dashboard_link": "/linux/opensource_packages/vitess", "job_url_resolution_status": "central_exact", "package_slug": "vitess", - "production_refreshed_at": "2026-05-14T19:37:17.457845+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.663808+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -74318,15 +74318,15 @@ }, "run": { "attempt": "1", - "id": "25877399008", + "id": "26658707245", "job_name": "test-vitess / test-vitess", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:34Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125657" + "timestamp": "2026-05-29T19:48:38Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445982" }, "schema_version": "2.0", "tests": { @@ -74335,46 +74335,46 @@ "duration_seconds": 0, "name": "Test 1 - Check Vitess clients exist", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125657#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445982#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check exact tag provenance", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125657#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445982#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check vtctldclient help", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125657#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445982#step:8:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 4 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125657#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445982#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125657#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445982#step:10:1" }, { "comparison": "Current pinned Vitess version 0.20.6 passed source-build smoke tests in this run, and the latest stable source release 20.0.7 also built successfully on Arm64 with working vtctldclient and vtctlclient help paths.", "current_version": "0.20.6", "decision": "next_install_validated", - "duration_seconds": 46, + "duration_seconds": 47, "latest_version": "20.0.7", "name": "Test 6 - Regression Validation", "next_installed_version": "0.20.7", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125657#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445982#step:11:1" } ], - "duration_seconds": 46, + "duration_seconds": 47, "failed": 0, "passed": 6, "skipped": 0 @@ -74389,7 +74389,7 @@ "dashboard_link": "/linux/opensource_packages/vllm", "job_url_resolution_status": "central_exact", "package_slug": "vllm", - "production_refreshed_at": "2026-05-14T19:37:17.458021+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.663980+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -74401,57 +74401,57 @@ }, "run": { "attempt": "1", - "id": "25877379982", + "id": "26658688675", "job_name": "test-vllm / test-vllm", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:06Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057287" + "timestamp": "2026-05-29T19:48:15Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380466" }, "schema_version": "2.0", "tests": { "details": [ { - "duration_seconds": 2, + "duration_seconds": 1, "name": "Test 1 - Check vLLM import", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057287#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380466#step:6:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 2 - Check exact version metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057287#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380466#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check wheel metadata is aarch64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057287#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380466#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057287#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380466#step:9:1" }, { - "duration_seconds": 7, + "duration_seconds": 6, "name": "Test 5 - Functional validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057287#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380466#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057287#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380466#step:11:1" } ], - "duration_seconds": 9, + "duration_seconds": 8, "failed": 0, "passed": 6, "skipped": 0 @@ -74466,7 +74466,7 @@ "dashboard_link": "/linux/opensource_packages/volcano", "job_url_resolution_status": "central_exact", "package_slug": "volcano", - "production_refreshed_at": "2026-05-14T19:37:17.458193+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.664151+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -74480,15 +74480,15 @@ }, "run": { "attempt": "1", - "id": "25877359516", + "id": "26658670904", "job_name": "test-volcano / test-volcano", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:44Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991520" + "timestamp": "2026-05-29T19:47:54Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321690" }, "schema_version": "2.0", "tests": { @@ -74497,31 +74497,31 @@ "duration_seconds": 0, "name": "Test 1 - Check vcctl binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991520#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321690#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check repository contains vcctl sources", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991520#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321690#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check vcctl help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991520#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321690#step:8:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 4 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991520#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321690#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991520#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321690#step:10:1" }, { "comparison": "Volcano baseline v1.10.0 built vcctl and passed Arm64 help validation, and candidate v1.10.1 also built vcctl successfully and passed queue help validation on Arm64.", @@ -74533,10 +74533,10 @@ "next_installed_version": "v1.10.1", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991520#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321690#step:11:1" } ], - "duration_seconds": 4, + "duration_seconds": 5, "failed": 0, "passed": 6, "skipped": 0 @@ -74551,7 +74551,7 @@ "dashboard_link": "/linux/opensource_packages/vpp", "job_url_resolution_status": "central_exact", "package_slug": "vpp", - "production_refreshed_at": "2026-05-14T19:37:17.458369+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.664363+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -74563,15 +74563,15 @@ }, "run": { "attempt": "1", - "id": "25877379982", + "id": "26658688675", "job_name": "test-vpp / test-vpp", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:05Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057180" + "timestamp": "2026-05-29T19:48:15Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380891" }, "schema_version": "2.0", "tests": { @@ -74580,37 +74580,37 @@ "duration_seconds": 0, "name": "Test 1 - Check VPP binaries exist", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057180#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380891#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check exact version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057180#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380891#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check CLI help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057180#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380891#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057180#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380891#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057180#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380891#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057180#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380891#step:11:1" } ], "duration_seconds": 0, @@ -74628,7 +74628,7 @@ "dashboard_link": "/linux/opensource_packages/vscode", "job_url_resolution_status": "central_exact", "package_slug": "vscode", - "production_refreshed_at": "2026-05-14T19:37:17.458541+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.664553+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -74636,19 +74636,19 @@ }, "package": { "name": "Visual Studio Code (VSCode)", - "version": "1.120.0" + "version": "1.122.1" }, "run": { "attempt": "1", - "id": "25877399008", + "id": "26658707245", "job_name": "test-vscode / test-vscode", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:32Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125815" + "timestamp": "2026-05-29T19:48:39Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445476" }, "schema_version": "2.0", "tests": { @@ -74657,40 +74657,40 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125815#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445476#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125815#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445476#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Help Output or Configuration", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125815#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445476#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125815#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445476#step:9:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125815#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445476#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125815#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445476#step:11:1" } ], - "duration_seconds": 1, + "duration_seconds": 0, "failed": 0, "passed": 6, "skipped": 0 @@ -74705,7 +74705,7 @@ "dashboard_link": "/linux/opensource_packages/vsftpd", "job_url_resolution_status": "central_exact", "package_slug": "vsftpd", - "production_refreshed_at": "2026-05-14T19:37:17.458718+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.664734+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -74717,15 +74717,15 @@ }, "run": { "attempt": "1", - "id": "25877383844", + "id": "26658692522", "job_name": "test-vsftpd / test-vsftpd", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:12Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071445" + "timestamp": "2026-05-29T19:48:20Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394964" }, "schema_version": "2.0", "tests": { @@ -74734,37 +74734,37 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071445#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394964#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Package Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071445#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394964#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Configuration Startup Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071445#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394964#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071445#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394964#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071445#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394964#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071445#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394964#step:11:1" } ], "duration_seconds": 0, @@ -74782,7 +74782,7 @@ "dashboard_link": "/linux/opensource_packages/vtk", "job_url_resolution_status": "central_exact", "package_slug": "vtk", - "production_refreshed_at": "2026-05-14T19:37:17.458922+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.664911+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -74794,15 +74794,15 @@ }, "run": { "attempt": "1", - "id": "25877371674", + "id": "26658681575", "job_name": "test-vtk / test-vtk", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:58Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031075" + "timestamp": "2026-05-29T19:48:09Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357249" }, "schema_version": "2.0", "tests": { @@ -74811,40 +74811,40 @@ "duration_seconds": 0, "name": "Test 1 - Check VTK runtime availability", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031075#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357249#step:6:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 2 - Check VTK version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031075#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357249#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check VTK Python API help", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031075#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357249#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031075#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357249#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031075#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357249#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031075#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357249#step:11:1" } ], - "duration_seconds": 1, + "duration_seconds": 0, "failed": 0, "passed": 6, "skipped": 0 @@ -74859,7 +74859,7 @@ "dashboard_link": "/linux/opensource_packages/vue", "job_url_resolution_status": "central_exact", "package_slug": "vue", - "production_refreshed_at": "2026-05-14T19:37:17.459096+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.665086+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -74871,15 +74871,15 @@ }, "run": { "attempt": "1", - "id": "25877423406", + "id": "26658727918", "job_name": "test-vue / test-vue", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:12Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210371" + "timestamp": "2026-05-29T19:49:09Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516329" }, "schema_version": "2.0", "tests": { @@ -74888,40 +74888,40 @@ "duration_seconds": 0, "name": "Test 1 - Check vue binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210371#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516329#step:6:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 2 - Check vue version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210371#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516329#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check vue help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210371#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516329#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210371#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516329#step:9:1" }, { - "duration_seconds": 35, + "duration_seconds": 28, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210371#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516329#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210371#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516329#step:11:1" } ], - "duration_seconds": 35, + "duration_seconds": 29, "failed": 0, "passed": 6, "skipped": 0 @@ -74936,7 +74936,7 @@ "dashboard_link": "/linux/opensource_packages/vvdec", "job_url_resolution_status": "central_exact", "package_slug": "vvdec", - "production_refreshed_at": "2026-05-14T19:37:17.459269+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.665285+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -74950,15 +74950,15 @@ }, "run": { "attempt": "1", - "id": "25877423406", + "id": "26658727918", "job_name": "test-vvdec / test-vvdec", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:09Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209991" + "timestamp": "2026-05-29T19:49:05Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515990" }, "schema_version": "2.0", "tests": { @@ -74967,31 +74967,31 @@ "duration_seconds": 0, "name": "Test 1 - Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209991#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515990#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209991#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515990#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Help Output Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209991#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515990#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209991#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515990#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209991#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515990#step:10:1" }, { "comparison": "Current pinned VVdeC version 3.0.0 passed smoke tests in this run. Regression validation built candidate version 3.1.0 on Arm64, and the installed vvdecapp binary reported version 3.1.0.", @@ -75003,7 +75003,7 @@ "next_installed_version": "3.1.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209991#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515990#step:11:1" } ], "duration_seconds": 32, @@ -75021,7 +75021,7 @@ "dashboard_link": "/linux/opensource_packages/warp", "job_url_resolution_status": "central_exact", "package_slug": "warp", - "production_refreshed_at": "2026-05-14T19:37:17.459441+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.665482+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -75035,15 +75035,15 @@ }, "run": { "attempt": "1", - "id": "25877435852", + "id": "26658737633", "job_name": "test-warp / test-warp", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:16Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251941" + "timestamp": "2026-05-29T19:49:20Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549955" }, "schema_version": "2.0", "tests": { @@ -75052,31 +75052,31 @@ "duration_seconds": 0, "name": "Test 1 - Check package-specific baseline markers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251941#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549955#step:8:1" }, { "duration_seconds": 0, "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251941#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549955#step:9:1" }, { "duration_seconds": 0, "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251941#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549955#step:10:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251941#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549955#step:11:1" }, { - "duration_seconds": 11, + "duration_seconds": 12, "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251941#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549955#step:12:1" }, { "comparison": "Baseline 1.0.0-beta.6 was installed from the GitHub Linux aarch64 wheel, and next stable 1.12.1 was installed from the Python package index; both created CPU tensors on the Ubuntu Arm64 runner.", @@ -75088,10 +75088,10 @@ "next_installed_version": "1.12.1", "regression_result": "Warp next stable Python package installed and executed a CPU tensor smoke successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251941#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549955#step:13:1" } ], - "duration_seconds": 21, + "duration_seconds": 22, "failed": 0, "passed": 6, "skipped": 0 @@ -75106,7 +75106,7 @@ "dashboard_link": "/linux/opensource_packages/wasmtime", "job_url_resolution_status": "central_exact", "package_slug": "wasmtime", - "production_refreshed_at": "2026-05-14T19:37:17.459613+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.665666+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -75120,15 +75120,15 @@ }, "run": { "attempt": "1", - "id": "25877419588", + "id": "26658724696", "job_name": "test-wasmtime / test-wasmtime", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:02Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192294" + "timestamp": "2026-05-29T19:49:02Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503991" }, "schema_version": "2.0", "tests": { @@ -75137,43 +75137,43 @@ "duration_seconds": 0, "name": "Test 1 - Check wasmtime binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192294#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503991#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check wasmtime version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192294#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503991#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check wasmtime help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192294#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503991#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192294#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503991#step:9:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192294#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503991#step:10:1" }, { "comparison": "Current pinned Wasmtime version 31.0.0 passed smoke tests in this run. Regression validation installed candidate version 32.0.0 on Arm64, and the staged binary reported version 32.0.0 while successfully compiling the sample WebAssembly module.", "current_version": "31.0.0", "decision": "next_install_validated", - "duration_seconds": 0, + "duration_seconds": 1, "latest_version": "32.0.0", "name": "Test 6 - Regression Validation", "next_installed_version": "32.0.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192294#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503991#step:11:1" } ], "duration_seconds": 1, @@ -75191,7 +75191,7 @@ "dashboard_link": "/linux/opensource_packages/wave", "job_url_resolution_status": "central_exact", "package_slug": "wave", - "production_refreshed_at": "2026-05-14T19:37:17.459807+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.665852+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -75205,15 +75205,15 @@ }, "run": { "attempt": "1", - "id": "25877375677", + "id": "26658685142", "job_name": "test-wave / test-wave", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:02Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045280" + "timestamp": "2026-05-29T19:48:11Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370677" }, "schema_version": "2.0", "tests": { @@ -75222,46 +75222,46 @@ "duration_seconds": 0, "name": "Test 1 - Check source tree and Gradle wrapper", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045280#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370677#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Check exact version file", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045280#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370677#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Check build info metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045280#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370677#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045280#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370677#step:10:1" }, { "duration_seconds": 9, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045280#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370677#step:11:1" }, { "comparison": "Current pinned Wave version 1.16.0 passed Arm64 source-build smoke tests in this run, and candidate version 1.16.1 completed the same build-info, assemble, and BuildInfo self-test path successfully.", "current_version": "1.16.0", "decision": "next_install_validated", - "duration_seconds": 56, + "duration_seconds": 55, "latest_version": "1.16.1", "name": "Test 6 - Regression Validation", "next_installed_version": "1.16.1", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045280#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370677#step:12:1" } ], - "duration_seconds": 65, + "duration_seconds": 64, "failed": 0, "passed": 6, "skipped": 0 @@ -75276,7 +75276,7 @@ "dashboard_link": "/linux/opensource_packages/weavenet", "job_url_resolution_status": "central_exact", "package_slug": "weavenet", - "production_refreshed_at": "2026-05-14T19:37:17.459988+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.666028+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -75290,15 +75290,15 @@ }, "run": { "attempt": "1", - "id": "25877403044", + "id": "26658710721", "job_name": "test-weavenet / test-weavenet", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:38Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140819" + "timestamp": "2026-05-29T19:48:43Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456370" }, "schema_version": "2.0", "tests": { @@ -75307,31 +75307,31 @@ "duration_seconds": 0, "name": "Test 1 - Check weave script exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140819#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456370#step:6:1" }, { "duration_seconds": 1, "name": "Test 2 - Check exact version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140819#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456370#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140819#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456370#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140819#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456370#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140819#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456370#step:10:1" }, { "comparison": "Current pinned Weave Net script 2.8.0 passed smoke tests in this run. Regression validation downloaded candidate script 2.8.1 on Arm64 and confirmed exact version output, script syntax, and help usage output.", @@ -75343,7 +75343,7 @@ "next_installed_version": "2.8.1", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140819#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456370#step:11:1" } ], "duration_seconds": 1, @@ -75361,7 +75361,7 @@ "dashboard_link": "/linux/opensource_packages/weaviate", "job_url_resolution_status": "central_exact", "package_slug": "weaviate", - "production_refreshed_at": "2026-05-14T19:37:17.460173+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.666197+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -75373,15 +75373,15 @@ }, "run": { "attempt": "1", - "id": "25877403044", + "id": "26658710721", "job_name": "test-weaviate / test-weaviate", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:39Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140565" + "timestamp": "2026-05-29T19:48:44Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456101" }, "schema_version": "2.0", "tests": { @@ -75390,40 +75390,40 @@ "duration_seconds": 0, "name": "Test 1 - Check Weaviate image exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140565#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456101#step:6:1" }, { - "duration_seconds": 4, + "duration_seconds": 3, "name": "Test 2 - Check version endpoint", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140565#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456101#step:7:1" }, { "duration_seconds": 1, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140565#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456101#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140565#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456101#step:9:1" }, { "duration_seconds": 4, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140565#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456101#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140565#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456101#step:11:1" } ], - "duration_seconds": 9, + "duration_seconds": 8, "failed": 0, "passed": 6, "skipped": 0 @@ -75438,7 +75438,7 @@ "dashboard_link": "/linux/opensource_packages/wget", "job_url_resolution_status": "central_exact", "package_slug": "wget", - "production_refreshed_at": "2026-05-14T19:37:17.460341+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.666412+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -75452,15 +75452,15 @@ }, "run": { "attempt": "1", - "id": "25877363365", + "id": "26658674448", "job_name": "test-wget / test-wget", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:48Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000919" + "timestamp": "2026-05-29T19:47:56Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334974" }, "schema_version": "2.0", "tests": { @@ -75469,31 +75469,31 @@ "duration_seconds": 0, "name": "Test 1 - Check Wget binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000919#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334974#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000919#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334974#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000919#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334974#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000919#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334974#step:9:1" }, { "duration_seconds": 1, "name": "Test 5 - Functional validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000919#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334974#step:10:1" }, { "comparison": "Baseline Wget 1.24.5 passed the Arm64 source-build and download smoke in this run, and candidate 1.25.0 also built and completed the real local download smoke successfully.", @@ -75505,7 +75505,7 @@ "next_installed_version": "1.25.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000919#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334974#step:11:1" } ], "duration_seconds": 35, @@ -75523,7 +75523,7 @@ "dashboard_link": "/linux/opensource_packages/whisper", "job_url_resolution_status": "central_exact", "package_slug": "whisper", - "production_refreshed_at": "2026-05-14T19:37:17.460498+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.666594+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -75535,15 +75535,15 @@ }, "run": { "attempt": "1", - "id": "25877411197", + "id": "26658717942", "job_name": "test-whisper / test-whisper", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:49Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175217" + "timestamp": "2026-05-29T19:48:51Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479473" }, "schema_version": "2.0", "tests": { @@ -75552,40 +75552,40 @@ "duration_seconds": 0, "name": "Test 1 - Check whisper CLI exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175217#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479473#step:6:1" }, { "duration_seconds": 2, "name": "Test 2 - Check package version via import", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175217#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479473#step:7:1" }, { "duration_seconds": 1, "name": "Test 3 - Check whisper help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175217#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479473#step:8:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175217#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479473#step:9:1" }, { - "duration_seconds": 1, + "duration_seconds": 2, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175217#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479473#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175217#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479473#step:11:1" } ], - "duration_seconds": 4, + "duration_seconds": 5, "failed": 0, "passed": 6, "skipped": 0 @@ -75600,7 +75600,7 @@ "dashboard_link": "/linux/opensource_packages/wildfly", "job_url_resolution_status": "central_exact", "package_slug": "wildfly", - "production_refreshed_at": "2026-05-14T19:37:17.460660+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.666764+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -75614,15 +75614,15 @@ }, "run": { "attempt": "1", - "id": "25877383844", + "id": "26658692522", "job_name": "test-wildfly / test-wildfly", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:13Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071707" + "timestamp": "2026-05-29T19:48:19Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394976" }, "schema_version": "2.0", "tests": { @@ -75631,46 +75631,46 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071707#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394976#step:6:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071707#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394976#step:7:1" }, { - "duration_seconds": 2, + "duration_seconds": 3, "name": "Test 3 - Check Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071707#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394976#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071707#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394976#step:9:1" }, { "duration_seconds": 4, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071707#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394976#step:10:1" }, { "comparison": "Current pinned WildFly version 35.0.0.Final passed release-tarball validation in this run, and candidate release 35.0.1.Final also passed isolated version, help, and bounded server-start smoke on Arm64.", "current_version": "35.0.0.Final", "decision": "next_install_validated", - "duration_seconds": 9, + "duration_seconds": 10, "latest_version": "35.0.1.Final", "name": "Test 6 - Regression Validation", "next_installed_version": "35.0.1.Final", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071707#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394976#step:11:1" } ], - "duration_seconds": 16, + "duration_seconds": 17, "failed": 0, "passed": 6, "skipped": 0 @@ -75685,7 +75685,7 @@ "dashboard_link": "/linux/opensource_packages/wireshark", "job_url_resolution_status": "central_exact", "package_slug": "wireshark", - "production_refreshed_at": "2026-05-14T19:37:17.460877+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.666953+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "no_newer_stable_available", @@ -75695,19 +75695,19 @@ }, "package": { "name": "Wireshark", - "version": "4.6.3" + "version": "4.6.6" }, "run": { "attempt": "1", - "id": "25877419588", + "id": "26658724696", "job_name": "test-wireshark / test-wireshark", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:55Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192362" + "timestamp": "2026-05-29T19:49:02Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504055" }, "schema_version": "2.0", "tests": { @@ -75716,46 +75716,46 @@ "duration_seconds": 0, "name": "Test 1 - Check tshark binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192362#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504055#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check exact version output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192362#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504055#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192362#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504055#step:8:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 4 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192362#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504055#step:9:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 5 - Functional validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192362#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504055#step:10:1" }, { - "comparison": "Wireshark 4.6.3 is both the pinned Arm64 source baseline and the newest stable public Wireshark source release currently published, so there is no newer stable source tarball to validate in Test 6 yet.", - "current_version": "4.6.3", + "comparison": "Wireshark 4.6.6 is both the pinned Arm64 source baseline and the newest stable public Wireshark source release currently published, so there is no newer stable source tarball to validate in Test 6 yet.", + "current_version": "4.6.6", "decision": "no_newer_stable_available", "duration_seconds": 0, - "latest_version": "4.6.3", + "latest_version": "4.6.6", "name": "Test 6 - Regression Validation", - "next_installed_version": "4.6.3", + "next_installed_version": "4.6.6", "regression_result": "No newer stable Wireshark release is available for Arm64 validation", "status": "skipped", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192362#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504055#step:11:1" } ], - "duration_seconds": 0, + "duration_seconds": 1, "failed": 0, "passed": 5, "skipped": 1 @@ -75770,7 +75770,7 @@ "dashboard_link": "/linux/opensource_packages/woocommerce", "job_url_resolution_status": "central_exact", "package_slug": "woocommerce", - "production_refreshed_at": "2026-05-14T19:37:17.461197+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.667290+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -75784,15 +75784,15 @@ }, "run": { "attempt": "1", - "id": "25877411197", + "id": "26658717942", "job_name": "test-woocommerce / test-woocommerce", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:49Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175287" + "timestamp": "2026-05-29T19:48:51Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479664" }, "schema_version": "2.0", "tests": { @@ -75801,31 +75801,31 @@ "duration_seconds": 0, "name": "Test 1 - Plugin File Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175287#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479664#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Exact Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175287#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479664#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - PHP Lint And Plugin Metadata Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175287#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479664#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175287#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479664#step:9:1" }, { "duration_seconds": 3, "name": "Test 5 - WordPress And Plugin Smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175287#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479664#step:10:1" }, { "comparison": "Current pinned WooCommerce version 9.5.1 passed source-zip validation in this run, and candidate release 9.5.2 also passed exact version, PHP lint, and WordPress installer-page smoke on Arm64 from a fresh isolated install.", @@ -75837,7 +75837,7 @@ "next_installed_version": "9.5.2", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175287#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479664#step:11:1" } ], "duration_seconds": 7, @@ -75855,7 +75855,7 @@ "dashboard_link": "/linux/opensource_packages/wordpress", "job_url_resolution_status": "central_exact", "package_slug": "wordpress", - "production_refreshed_at": "2026-05-14T19:37:17.461394+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.667487+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -75869,15 +75869,15 @@ }, "run": { "attempt": "1", - "id": "25877406767", + "id": "26658714432", "job_name": "test-wordpress / test-wordpress", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:45Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155435" + "timestamp": "2026-05-29T19:48:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469229" }, "schema_version": "2.0", "tests": { @@ -75886,43 +75886,43 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155435#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469229#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155435#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469229#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Help Output or Configuration", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155435#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469229#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155435#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469229#step:9:1" }, { "duration_seconds": 2, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155435#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469229#step:10:1" }, { - "comparison": "Current pinned WordPress version 6.8 passed source tarball validation in this run, and candidate release 6.9.4 also passed PHP lint plus installer-page smoke on Arm64 from a fresh isolated install.", + "comparison": "Current pinned WordPress version 6.8 passed source tarball validation in this run, and candidate release 7.0 also passed PHP lint plus installer-page smoke on Arm64 from a fresh isolated install.", "current_version": "6.8", "decision": "next_install_validated", "duration_seconds": 4, - "latest_version": "6.9.4", + "latest_version": "7.0", "name": "Test 6 - Regression Validation", - "next_installed_version": "6.9.4", + "next_installed_version": "7.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155435#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469229#step:11:1" } ], "duration_seconds": 6, @@ -75940,7 +75940,7 @@ "dashboard_link": "/linux/opensource_packages/wrf", "job_url_resolution_status": "central_exact", "package_slug": "wrf", - "production_refreshed_at": "2026-05-14T19:37:17.461583+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.667671+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -75954,15 +75954,15 @@ }, "run": { "attempt": "1", - "id": "25877419588", + "id": "26658724696", "job_name": "test-wrf / test-wrf", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:01Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192602" + "timestamp": "2026-05-29T19:49:01Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504012" }, "schema_version": "2.0", "tests": { @@ -75971,46 +75971,46 @@ "duration_seconds": 0, "name": "Test 1 - Check wrf binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192602#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504012#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check wrf version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192602#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504012#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check WRF case assets", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192602#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504012#step:8:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192602#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504012#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192602#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504012#step:10:1" }, { "comparison": "Current pinned WRF version 4.7.0 built the EM_REAL configuration on Arm64, and the real-data preprocessor binary reached the expected input-processing stage. Regression validation rebuilt candidate version 4.7.1, confirmed the binaries are AArch64, and the same EM_REAL runtime smoke behaved correctly on Arm64.", "current_version": "4.7.0", "decision": "next_install_validated", - "duration_seconds": 616, + "duration_seconds": 633, "latest_version": "4.7.1", "name": "Test 6 - Regression Validation", "next_installed_version": "4.7.1", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192602#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504012#step:11:1" } ], - "duration_seconds": 616, + "duration_seconds": 634, "failed": 0, "passed": 6, "skipped": 0 @@ -76025,7 +76025,7 @@ "dashboard_link": "/linux/opensource_packages/wrk", "job_url_resolution_status": "central_exact", "package_slug": "wrk", - "production_refreshed_at": "2026-05-14T19:37:17.461852+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.667848+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -76039,15 +76039,15 @@ }, "run": { "attempt": "1", - "id": "25877367704", + "id": "26658677990", "job_name": "test-wrk / test-wrk", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:55Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027113" + "timestamp": "2026-05-29T19:48:02Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347318" }, "schema_version": "2.0", "tests": { @@ -76056,46 +76056,46 @@ "duration_seconds": 0, "name": "Test 1 - Check wrk binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027113#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347318#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check repository contents", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027113#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347318#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027113#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347318#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027113#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347318#step:9:1" }, { "duration_seconds": 4, "name": "Test 5 - Functional validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027113#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347318#step:10:1" }, { "comparison": "WRK baseline 4.1.0 built from source and passed an HTTP benchmark smoke on Arm64, and candidate 4.2.0 also built successfully and completed the same benchmark smoke on Arm64.", "current_version": "4.1.0", "decision": "next_install_validated", - "duration_seconds": 6, + "duration_seconds": 5, "latest_version": "4.2.0", "name": "Test 6 - Regression Validation", "next_installed_version": "4.2.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027113#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347318#step:11:1" } ], - "duration_seconds": 10, + "duration_seconds": 9, "failed": 0, "passed": 6, "skipped": 0 @@ -76110,7 +76110,7 @@ "dashboard_link": "/linux/opensource_packages/wsl", "job_url_resolution_status": "central_exact", "package_slug": "wsl", - "production_refreshed_at": "2026-05-14T19:37:17.462077+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.668020+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "limited_cpu_smoke_validated", @@ -76124,15 +76124,15 @@ }, "run": { "attempt": "1", - "id": "25877435852", + "id": "26658737633", "job_name": "test-wsl / test-wsl", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:16Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251963" + "timestamp": "2026-05-29T19:49:20Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550266" }, "schema_version": "2.0", "tests": { @@ -76141,31 +76141,31 @@ "duration_seconds": 0, "name": "Test 1 - Check package-specific baseline markers", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251963#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550266#step:8:1" }, { "duration_seconds": 0, "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251963#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550266#step:9:1" }, { "duration_seconds": 0, "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251963#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550266#step:10:1" }, { "duration_seconds": 0, "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251963#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550266#step:11:1" }, { "duration_seconds": 2, "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251963#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550266#step:12:1" }, { "comparison": "Test 6 reran the scoped WSL Arm preflight against the latest published WSL release artifact with Arm64 assets: package download, payload listing, ARM64 manifest inspection, and WSL payload completeness checks. Launching WSL still requires Windows on Arm.", @@ -76177,7 +76177,7 @@ "next_installed_version": "2.7.3", "regression_result": "Arm preflight proof passed on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251963#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550266#step:13:1" } ], "duration_seconds": 4, @@ -76195,7 +76195,7 @@ "dashboard_link": "/linux/opensource_packages/xalan", "job_url_resolution_status": "central_exact", "package_slug": "xalan", - "production_refreshed_at": "2026-05-14T19:37:17.462311+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.668199+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -76207,15 +76207,15 @@ }, "run": { "attempt": "1", - "id": "25877392111", + "id": "26658699892", "job_name": "test-xalan / test-xalan", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:23Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096490" + "timestamp": "2026-05-29T19:48:30Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421038" }, "schema_version": "2.0", "tests": { @@ -76224,37 +76224,37 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096490#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421038#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096490#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421038#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096490#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421038#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096490#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421038#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096490#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421038#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096490#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421038#step:11:1" } ], "duration_seconds": 0, @@ -76272,7 +76272,7 @@ "dashboard_link": "/linux/opensource_packages/xebium", "job_url_resolution_status": "central_exact", "package_slug": "xebium", - "production_refreshed_at": "2026-05-14T19:37:17.462542+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.668411+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -76286,63 +76286,63 @@ }, "run": { "attempt": "1", - "id": "25877419588", + "id": "26658724696", "job_name": "test-xebium / test-xebium", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:00Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192516" + "timestamp": "2026-05-29T19:49:02Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504200" }, "schema_version": "2.0", "tests": { "details": [ { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 1 - Check Xebium jar artifacts exist", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192516#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504200#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check exact version metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192516#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504200#step:7:1" }, { "duration_seconds": 1, "name": "Test 3 - Check built classes are present", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192516#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504200#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192516#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504200#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional artifact validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192516#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504200#step:10:1" }, { "comparison": "Current pinned Xebium version 0.6 passed artifact validation in this run. Regression validation rebuilt candidate version 0.14 with the Java 8 Maven lane on Arm64, and the candidate artifacts reported version 0.14 with the expected Selenium and IDE resources present.", "current_version": "0.6", "decision": "next_install_validated", - "duration_seconds": 31, + "duration_seconds": 29, "latest_version": "0.14", "name": "Test 6 - Regression Validation", "next_installed_version": "0.14", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192516#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504200#step:11:1" } ], - "duration_seconds": 32, + "duration_seconds": 30, "failed": 0, "passed": 6, "skipped": 0 @@ -76357,7 +76357,7 @@ "dashboard_link": "/linux/opensource_packages/xen_ci", "job_url_resolution_status": "central_exact", "package_slug": "xen_ci", - "production_refreshed_at": "2026-05-14T19:37:17.462784+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.680154+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -76371,15 +76371,15 @@ }, "run": { "attempt": "1", - "id": "25877399008", + "id": "26658707245", "job_name": "test-xen_ci / test-xen_ci", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:32Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125307" + "timestamp": "2026-05-29T19:48:38Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575444495" }, "schema_version": "2.0", "tests": { @@ -76388,46 +76388,46 @@ "duration_seconds": 0, "name": "Test 1 - Check baseline source tree", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125307#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575444495#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check release tag version", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125307#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575444495#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check configure help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125307#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575444495#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125307#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575444495#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional source validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125307#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575444495#step:10:1" }, { "comparison": "Current pinned Xen release 4.3.0 passed source validation in this run. Regression validation cloned the next stable source tag 4.4.0, and the Arm64 source tree plus configure flow validated successfully on Arm64.", "current_version": "4.3.0", "decision": "next_install_validated", - "duration_seconds": 2, + "duration_seconds": 1, "latest_version": "4.4.0", "name": "Test 6 - Regression Validation", "next_installed_version": "4.4.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125307#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575444495#step:11:1" } ], - "duration_seconds": 2, + "duration_seconds": 1, "failed": 0, "passed": 6, "skipped": 0 @@ -76442,7 +76442,7 @@ "dashboard_link": "/linux/opensource_packages/xerces", "job_url_resolution_status": "central_exact", "package_slug": "xerces", - "production_refreshed_at": "2026-05-14T19:37:17.463007+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.680411+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -76454,15 +76454,15 @@ }, "run": { "attempt": "1", - "id": "25877371674", + "id": "26658681575", "job_name": "test-xerces / test-xerces", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:59Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031857" + "timestamp": "2026-05-29T19:48:07Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358443" }, "schema_version": "2.0", "tests": { @@ -76471,37 +76471,37 @@ "duration_seconds": 0, "name": "Test 1 - Check Header Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031857#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358443#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031857#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358443#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Configuration or Linkage", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031857#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358443#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031857#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358443#step:9:1" }, { "duration_seconds": 2, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031857#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358443#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031857#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358443#step:11:1" } ], "duration_seconds": 2, @@ -76519,7 +76519,7 @@ "dashboard_link": "/linux/opensource_packages/xgboost", "job_url_resolution_status": "central_exact", "package_slug": "xgboost", - "production_refreshed_at": "2026-05-14T19:37:17.463241+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.680604+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -76531,54 +76531,54 @@ }, "run": { "attempt": "1", - "id": "25877387746", + "id": "26658696365", "job_name": "test-xgboost / test-xgboost", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:16Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084830" + "timestamp": "2026-05-29T19:48:24Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407780" }, "schema_version": "2.0", "tests": { "details": [ { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 1 - Module import validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084830#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407780#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Exact version check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084830#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407780#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - API surface validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084830#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407780#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084830#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407780#step:9:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 5 - Functional training smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084830#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407780#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084830#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407780#step:11:1" } ], "duration_seconds": 1, @@ -76596,7 +76596,7 @@ "dashboard_link": "/linux/opensource_packages/xml2", "job_url_resolution_status": "central_exact", "package_slug": "xml2", - "production_refreshed_at": "2026-05-14T19:37:17.463474+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.680796+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -76608,15 +76608,15 @@ }, "run": { "attempt": "1", - "id": "25877423406", + "id": "26658727918", "job_name": "test-xml2 / test-xml2", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:11Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210225" + "timestamp": "2026-05-29T19:49:08Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516303" }, "schema_version": "2.0", "tests": { @@ -76625,40 +76625,40 @@ "duration_seconds": 0, "name": "Test 1 - Package Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210225#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516303#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Exact Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210225#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516303#step:7:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 3 - Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210225#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516303#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210225#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516303#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional XML And HTML Smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210225#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516303#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210225#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516303#step:11:1" } ], - "duration_seconds": 1, + "duration_seconds": 0, "failed": 0, "passed": 6, "skipped": 0 @@ -76673,7 +76673,7 @@ "dashboard_link": "/linux/opensource_packages/xmlsec", "job_url_resolution_status": "central_exact", "package_slug": "xmlsec", - "production_refreshed_at": "2026-05-14T19:37:17.463693+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.680967+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -76685,15 +76685,15 @@ }, "run": { "attempt": "1", - "id": "25877419588", + "id": "26658724696", "job_name": "test-xmlsec / test-xmlsec", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:58Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192463" + "timestamp": "2026-05-29T19:49:01Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503998" }, "schema_version": "2.0", "tests": { @@ -76702,37 +76702,37 @@ "duration_seconds": 0, "name": "Test 1 - Check xmlsec1 binary exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192463#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503998#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192463#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503998#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192463#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503998#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192463#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503998#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192463#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503998#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192463#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503998#step:11:1" } ], "duration_seconds": 0, @@ -76750,7 +76750,7 @@ "dashboard_link": "/linux/opensource_packages/xpra", "job_url_resolution_status": "central_exact", "package_slug": "xpra", - "production_refreshed_at": "2026-05-14T19:37:17.463923+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.681155+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -76762,15 +76762,15 @@ }, "run": { "attempt": "1", - "id": "25877435852", + "id": "26658737633", "job_name": "test-xpra / test-xpra", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:18Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252069" + "timestamp": "2026-05-29T19:49:21Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550094" }, "schema_version": "2.0", "tests": { @@ -76779,40 +76779,40 @@ "duration_seconds": 0, "name": "Test 1 - Package-manager install evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252069#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550094#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Installed Arm64 package metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252069#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550094#step:7:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 3 - CLI version starts on Arm", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252069#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550094#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Arm64 runner gate", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252069#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550094#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Headless runtime smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252069#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550094#step:10:1" }, { "duration_seconds": 0, "name": "Test 6 - Regression validation applicability", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252069#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550094#step:11:1" } ], - "duration_seconds": 0, + "duration_seconds": 1, "failed": 0, "passed": 6, "skipped": 0 @@ -76827,7 +76827,7 @@ "dashboard_link": "/linux/opensource_packages/xschem", "job_url_resolution_status": "central_exact", "package_slug": "xschem", - "production_refreshed_at": "2026-05-14T19:37:17.464154+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.681352+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -76839,15 +76839,15 @@ }, "run": { "attempt": "1", - "id": "25877435852", + "id": "26658737633", "job_name": "test-xschem / test-xschem", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:15Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251785" + "timestamp": "2026-05-29T19:49:21Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550119" }, "schema_version": "2.0", "tests": { @@ -76856,37 +76856,37 @@ "duration_seconds": 0, "name": "Test 1 - Package-manager install evidence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251785#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550119#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Installed Arm64 package metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251785#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550119#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - CLI version starts on Arm", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251785#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550119#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Arm64 runner gate", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251785#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550119#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Headless runtime smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251785#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550119#step:10:1" }, { "duration_seconds": 0, "name": "Test 6 - Regression validation applicability", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251785#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550119#step:11:1" } ], "duration_seconds": 0, @@ -76904,7 +76904,7 @@ "dashboard_link": "/linux/opensource_packages/xtrabackup", "job_url_resolution_status": "central_exact", "package_slug": "xtrabackup", - "production_refreshed_at": "2026-05-14T19:37:17.464381+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.681528+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -76916,15 +76916,15 @@ }, "run": { "attempt": "1", - "id": "25877363365", + "id": "26658674448", "job_name": "test-xtrabackup / test-xtrabackup", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:49Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000050" + "timestamp": "2026-05-29T19:47:56Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333729" }, "schema_version": "2.0", "tests": { @@ -76933,40 +76933,40 @@ "duration_seconds": 0, "name": "Test 1 - Binary existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000050#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333729#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Exact version check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000050#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333729#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Help output validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000050#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333729#step:8:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 4 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000050#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333729#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Print-defaults functional smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000050#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333729#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000050#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333729#step:11:1" } ], - "duration_seconds": 1, + "duration_seconds": 0, "failed": 0, "passed": 6, "skipped": 0 @@ -76981,7 +76981,7 @@ "dashboard_link": "/linux/opensource_packages/xxhash", "job_url_resolution_status": "central_exact", "package_slug": "xxhash", - "production_refreshed_at": "2026-05-14T19:37:17.464588+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.681697+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -76993,15 +76993,15 @@ }, "run": { "attempt": "1", - "id": "25877375677", + "id": "26658685142", "job_name": "test-xxhash / test-xxhash", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:02Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043629" + "timestamp": "2026-05-29T19:48:11Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369848" }, "schema_version": "2.0", "tests": { @@ -77010,37 +77010,37 @@ "duration_seconds": 0, "name": "Test 1 - Module Import", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043629#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369848#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - One-shot hash APIs", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043629#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369848#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Streaming hash update", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043629#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369848#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Hash object copy preserves state", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043629#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369848#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043629#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369848#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043629#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369848#step:11:1" } ], "duration_seconds": 0, @@ -77058,7 +77058,7 @@ "dashboard_link": "/linux/opensource_packages/xxljob", "job_url_resolution_status": "central_exact", "package_slug": "xxljob", - "production_refreshed_at": "2026-05-14T19:37:17.464834+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.681865+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -77072,15 +77072,15 @@ }, "run": { "attempt": "1", - "id": "25877406767", + "id": "26658714432", "job_name": "test-xxljob / test-xxljob", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:42Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155361" + "timestamp": "2026-05-29T19:48:50Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469331" }, "schema_version": "2.0", "tests": { @@ -77089,46 +77089,46 @@ "duration_seconds": 0, "name": "Test 1 - Check admin jar exists", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155361#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469331#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check exact version provenance", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155361#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469331#step:7:1" }, { "duration_seconds": 1, "name": "Test 3 - Check layer listing output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155361#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469331#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155361#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469331#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional jar validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155361#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469331#step:10:1" }, { "comparison": "Current pinned XXL-JOB version 3.2.0 passed the real Arm64 Spring Boot jar build in this run, and candidate release 3.3.0 also passed isolated source-build plus jarmode layer execution successfully.", "current_version": "3.2.0", "decision": "next_install_validated", - "duration_seconds": 20, + "duration_seconds": 21, "latest_version": "3.3.0", "name": "Test 6 - Regression Validation", "next_installed_version": "3.3.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155361#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469331#step:11:1" } ], - "duration_seconds": 21, + "duration_seconds": 22, "failed": 0, "passed": 6, "skipped": 0 @@ -77143,7 +77143,7 @@ "dashboard_link": "/linux/opensource_packages/yarn", "job_url_resolution_status": "central_exact", "package_slug": "yarn", - "production_refreshed_at": "2026-05-14T19:37:17.465048+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.682036+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -77155,15 +77155,15 @@ }, "run": { "attempt": "1", - "id": "25877371674", + "id": "26658681575", "job_name": "test-yarn / test-yarn", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:03Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031741" + "timestamp": "2026-05-29T19:48:10Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358026" }, "schema_version": "2.0", "tests": { @@ -77172,37 +77172,37 @@ "duration_seconds": 0, "name": "Test 1 - Launcher availability", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031741#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358026#step:7:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 2 - Exact version check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031741#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358026#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Help output validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031741#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358026#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031741#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358026#step:10:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 5 - Functional validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031741#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358026#step:11:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031741#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358026#step:12:1" } ], "duration_seconds": 1, @@ -77220,7 +77220,7 @@ "dashboard_link": "/linux/opensource_packages/ycsb", "job_url_resolution_status": "central_exact", "package_slug": "ycsb", - "production_refreshed_at": "2026-05-14T19:37:17.465253+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.682195+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -77234,15 +77234,15 @@ }, "run": { "attempt": "1", - "id": "25877419588", + "id": "26658724696", "job_name": "test-ycsb / test-ycsb", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:09Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192610" + "timestamp": "2026-05-29T19:49:03Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503956" }, "schema_version": "2.0", "tests": { @@ -77251,46 +77251,46 @@ "duration_seconds": 0, "name": "Test 1 - Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192610#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503956#step:6:1" }, { - "duration_seconds": 5, + "duration_seconds": 4, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192610#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503956#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Help Output Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192610#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503956#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192610#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503956#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192610#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503956#step:10:1" }, { "comparison": "Current pinned YCSB version 0.15.0 passed smoke tests in this run. Regression validation re-installed candidate version 0.16.0 into an isolated directory and reran the real workload smoke successfully on Arm64.", "current_version": "0.15.0", "decision": "next_install_validated", - "duration_seconds": 15, + "duration_seconds": 18, "latest_version": "0.16.0", "name": "Test 6 - Regression Validation", "next_installed_version": "0.16.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192610#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503956#step:11:1" } ], - "duration_seconds": 17, + "duration_seconds": 20, "failed": 0, "passed": 6, "skipped": 0 @@ -77305,7 +77305,7 @@ "dashboard_link": "/linux/opensource_packages/ydata-profiling", "job_url_resolution_status": "central_exact", "package_slug": "ydata-profiling", - "production_refreshed_at": "2026-05-14T19:37:17.465455+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.682403+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -77317,57 +77317,57 @@ }, "run": { "attempt": "1", - "id": "25877363365", + "id": "26658674448", "job_name": "test-ydata-profiling / test-ydata-profiling", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:48Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000158" + "timestamp": "2026-05-29T19:47:56Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333839" }, "schema_version": "2.0", "tests": { "details": [ { - "duration_seconds": 6, + "duration_seconds": 3, "name": "Test 1 - Check ydata-profiling import", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000158#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333839#step:6:1" }, { - "duration_seconds": 4, + "duration_seconds": 3, "name": "Test 2 - Check version via python", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000158#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333839#step:7:1" }, { "duration_seconds": 2, "name": "Test 3 - Check help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000158#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333839#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000158#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333839#step:9:1" }, { "duration_seconds": 2, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000158#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333839#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000158#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333839#step:11:1" } ], - "duration_seconds": 14, + "duration_seconds": 10, "failed": 0, "passed": 6, "skipped": 0 @@ -77382,7 +77382,7 @@ "dashboard_link": "/linux/opensource_packages/yosys", "job_url_resolution_status": "central_exact", "package_slug": "yosys", - "production_refreshed_at": "2026-05-14T19:37:17.465634+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.682571+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -77394,15 +77394,15 @@ }, "run": { "attempt": "1", - "id": "25877435852", + "id": "26658737633", "job_name": "test-yosys / test-yosys", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:19:16Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251753" + "timestamp": "2026-05-29T19:49:21Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550024" }, "schema_version": "2.0", "tests": { @@ -77411,37 +77411,37 @@ "duration_seconds": 0, "name": "Test 1 - Check yosys binary", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251753#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550024#step:7:1" }, { "duration_seconds": 0, "name": "Test 2 - Check yosys version command", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251753#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550024#step:8:1" }, { "duration_seconds": 0, "name": "Test 3 - Check yosys help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251753#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550024#step:9:1" }, { "duration_seconds": 0, "name": "Test 4 - Check read_verilog command help", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251753#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550024#step:10:1" }, { "duration_seconds": 0, "name": "Test 5 - Synthesize a minimal Verilog module", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251753#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550024#step:11:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251753#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550024#step:12:1" } ], "duration_seconds": 0, @@ -77459,7 +77459,7 @@ "dashboard_link": "/linux/opensource_packages/yugabytedb", "job_url_resolution_status": "central_exact", "package_slug": "yugabytedb", - "production_refreshed_at": "2026-05-14T19:37:17.465857+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.682739+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -77471,15 +77471,15 @@ }, "run": { "attempt": "1", - "id": "25877383844", + "id": "26658692522", "job_name": "test-yugabytedb / test-yugabytedb", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:12Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071580" + "timestamp": "2026-05-29T19:48:19Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394531" }, "schema_version": "2.0", "tests": { @@ -77488,40 +77488,40 @@ "duration_seconds": 0, "name": "Test 1 - Artifact Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071580#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394531#step:6:1" }, { "duration_seconds": 1, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071580#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394531#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Help Output Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071580#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394531#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071580#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394531#step:9:1" }, { - "duration_seconds": 18, + "duration_seconds": 20, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071580#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394531#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071580#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394531#step:11:1" } ], - "duration_seconds": 19, + "duration_seconds": 20, "failed": 0, "passed": 6, "skipped": 0 @@ -77536,7 +77536,7 @@ "dashboard_link": "/linux/opensource_packages/zabbix", "job_url_resolution_status": "central_exact", "package_slug": "zabbix", - "production_refreshed_at": "2026-05-14T19:37:17.466068+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.682917+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -77548,15 +77548,15 @@ }, "run": { "attempt": "1", - "id": "25877406767", + "id": "26658714432", "job_name": "test-zabbix / test-zabbix", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:42Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155265" + "timestamp": "2026-05-29T19:48:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469452" }, "schema_version": "2.0", "tests": { @@ -77565,40 +77565,40 @@ "duration_seconds": 0, "name": "Test 1 - Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155265#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469452#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Exact Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155265#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469452#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155265#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469452#step:8:1" }, { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155265#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469452#step:9:1" }, { "duration_seconds": 1, "name": "Test 5 - Functional Agent Smoke", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155265#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469452#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155265#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469452#step:11:1" } ], - "duration_seconds": 1, + "duration_seconds": 2, "failed": 0, "passed": 6, "skipped": 0 @@ -77613,7 +77613,7 @@ "dashboard_link": "/linux/opensource_packages/zed", "job_url_resolution_status": "central_exact", "package_slug": "zed", - "production_refreshed_at": "2026-05-14T19:37:17.466250+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.683094+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_install_validated", @@ -77627,15 +77627,15 @@ }, "run": { "attempt": "1", - "id": "25877403044", + "id": "26658710721", "job_name": "test-zed / test-zed", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:39Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140894" + "timestamp": "2026-05-29T19:48:44Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456117" }, "schema_version": "2.0", "tests": { @@ -77644,31 +77644,31 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140894#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456117#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140894#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456117#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Help Output or Configuration", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140894#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456117#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140894#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456117#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140894#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456117#step:10:1" }, { "comparison": "Current pinned version v0.28.0 passed smoke tests in this run. Regression validation then verified the newer stable Arm64 candidate v0.29.0 successfully.", @@ -77680,7 +77680,7 @@ "next_installed_version": "v0.29.0", "regression_result": "Next version installed successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140894#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456117#step:11:1" } ], "duration_seconds": 1, @@ -77698,7 +77698,7 @@ "dashboard_link": "/linux/opensource_packages/zeroc_ice", "job_url_resolution_status": "central_exact", "package_slug": "zeroc_ice", - "production_refreshed_at": "2026-05-14T19:37:17.466560+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.683397+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -77710,15 +77710,15 @@ }, "run": { "attempt": "1", - "id": "25877379982", + "id": "26658688675", "job_name": "test-zeroc_ice / test-zeroc_ice", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:06Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057286" + "timestamp": "2026-05-29T19:48:15Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380535" }, "schema_version": "2.0", "tests": { @@ -77727,37 +77727,37 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057286#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380535#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057286#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380535#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057286#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380535#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057286#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380535#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057286#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380535#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057286#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380535#step:11:1" } ], "duration_seconds": 0, @@ -77775,7 +77775,7 @@ "dashboard_link": "/linux/opensource_packages/zerotier", "job_url_resolution_status": "central_exact", "package_slug": "zerotier", - "production_refreshed_at": "2026-05-14T19:37:17.466787+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.683575+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -77783,19 +77783,19 @@ }, "package": { "name": "Zerotier", - "version": "1.16.1" + "version": "1.16.2" }, "run": { "attempt": "1", - "id": "25877406767", + "id": "26658714432", "job_name": "test-zerotier / test-zerotier", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:42Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155238" + "timestamp": "2026-05-29T19:48:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469431" }, "schema_version": "2.0", "tests": { @@ -77804,37 +77804,37 @@ "duration_seconds": 0, "name": "Test 1 - Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155238#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469431#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Version Check", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155238#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469431#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Help Output Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155238#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469431#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155238#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469431#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155238#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469431#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155238#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469431#step:11:1" } ], "duration_seconds": 0, @@ -77852,7 +77852,7 @@ "dashboard_link": "/linux/opensource_packages/zlib", "job_url_resolution_status": "central_exact", "package_slug": "zlib", - "production_refreshed_at": "2026-05-14T19:37:17.466996+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.683745+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -77864,15 +77864,15 @@ }, "run": { "attempt": "1", - "id": "25877363365", + "id": "26658674448", "job_name": "test-zlib / test-zlib", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:17:48Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001074" + "timestamp": "2026-05-29T19:47:57Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334784" }, "schema_version": "2.0", "tests": { @@ -77881,37 +77881,37 @@ "duration_seconds": 0, "name": "Test 1 - Check Header Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001074#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334784#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001074#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334784#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Build Configuration", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001074#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334784#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001074#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334784#step:9:1" }, { "duration_seconds": 1, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001074#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334784#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001074#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334784#step:11:1" } ], "duration_seconds": 1, @@ -77929,7 +77929,7 @@ "dashboard_link": "/linux/opensource_packages/zookeeper", "job_url_resolution_status": "central_exact", "package_slug": "zookeeper", - "production_refreshed_at": "2026-05-14T19:37:17.467197+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.683912+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -77941,57 +77941,57 @@ }, "run": { "attempt": "1", - "id": "25877403044", + "id": "26658710721", "job_name": "test-zookeeper / test-zookeeper", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:39Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140997" + "timestamp": "2026-05-29T19:48:43Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456434" }, "schema_version": "2.0", "tests": { "details": [ { - "duration_seconds": 0, + "duration_seconds": 1, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140997#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456434#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140997#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456434#step:7:1" }, { - "duration_seconds": 1, + "duration_seconds": 0, "name": "Test 3 - Check Help Output or Configuration", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140997#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456434#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140997#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456434#step:9:1" }, { - "duration_seconds": 3, + "duration_seconds": 2, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140997#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456434#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140997#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456434#step:11:1" } ], - "duration_seconds": 3, + "duration_seconds": 2, "failed": 0, "passed": 6, "skipped": 0 @@ -78006,7 +78006,7 @@ "dashboard_link": "/linux/opensource_packages/zstandard", "job_url_resolution_status": "central_exact", "package_slug": "zstandard", - "production_refreshed_at": "2026-05-14T19:37:17.467396+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.684092+00:00", "publish_state": "published", "regression_applicability": "not_applicable", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", @@ -78018,15 +78018,15 @@ }, "run": { "attempt": "1", - "id": "25877415436", + "id": "26658721315", "job_name": "test-zstandard / test-zstandard", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:50Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180571" + "timestamp": "2026-05-29T19:48:56Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491918" }, "schema_version": "2.0", "tests": { @@ -78035,37 +78035,37 @@ "duration_seconds": 0, "name": "Test 1 - Check Binary Existence", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180571#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491918#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check Version Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180571#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491918#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check Help Output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180571#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491918#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture Verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180571#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491918#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional Validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180571#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491918#step:10:1" }, { "duration_seconds": 0, "name": "Regression applicability - package manager installed", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180571#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491918#step:11:1" } ], "duration_seconds": 0, @@ -78083,7 +78083,7 @@ "dashboard_link": "/linux/opensource_packages/zulip", "job_url_resolution_status": "central_exact", "package_slug": "zulip", - "production_refreshed_at": "2026-05-14T19:37:17.467585+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.684284+00:00", "publish_state": "published", "regression_applicability": "applicable", "regression_decision": "next_bundle_validated", @@ -78097,15 +78097,15 @@ }, "run": { "attempt": "1", - "id": "25877383844", + "id": "26658692522", "job_name": "test-zulip / test-zulip", "runner": { "arch": "arm64", "os": "ubuntu-24.04" }, "status": "success", - "timestamp": "2026-05-14T18:18:15Z", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071731" + "timestamp": "2026-05-29T19:48:19Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394314" }, "schema_version": "2.0", "tests": { @@ -78114,46 +78114,46 @@ "duration_seconds": 0, "name": "Test 1 - Check release bundle contents", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071731#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394314#step:6:1" }, { "duration_seconds": 0, "name": "Test 2 - Check version metadata", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071731#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394314#step:7:1" }, { "duration_seconds": 0, "name": "Test 3 - Check installer help output", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071731#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394314#step:8:1" }, { "duration_seconds": 0, "name": "Test 4 - Architecture verification", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071731#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394314#step:9:1" }, { "duration_seconds": 0, "name": "Test 5 - Functional release bundle validation", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071731#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394314#step:10:1" }, { "comparison": "Current pinned Zulip release bundle 11.4 passed smoke tests in this run. Regression validation downloaded candidate release bundle 11.5, confirmed its installer help path, and revalidated the extracted Python entrypoints on Arm64.", "current_version": "11.4", "decision": "next_bundle_validated", - "duration_seconds": 1, + "duration_seconds": 3, "latest_version": "11.5", "name": "Test 6 - Regression Validation", "next_installed_version": "11.5", "regression_result": "Next release bundle validated successfully on Arm64", "status": "passed", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071731#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394314#step:11:1" } ], - "duration_seconds": 1, + "duration_seconds": 3, "failed": 0, "passed": 6, "skipped": 0 diff --git a/data/test-results/0xffff.json b/data/test-results/0xffff.json index d83afc77b9..dd77e9d54b 100644 --- a/data/test-results/0xffff.json +++ b/data/test-results/0xffff.json @@ -5,10 +5,10 @@ "version": "0.9" }, "run": { - "id": "25877367704", + "id": "26658677990", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026098", - "timestamp": "2026-05-14T18:17:54Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346133", + "timestamp": "2026-05-29T19:48:03Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check 0xffff binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026098#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346133#step:6:1" }, { "name": "Test 2 - Check 0xffff version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026098#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346133#step:7:1" }, { "name": "Test 3 - Check 0xffff help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026098#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346133#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026098#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346133#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026098#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346133#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 3, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026098#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346133#step:11:1", "current_version": "0.9", "latest_version": "0.10", "next_installed_version": "0.10", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.264343+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.477143+00:00", "publish_state": "published" } } diff --git a/data/test-results/5G-RAL.json b/data/test-results/5G-RAL.json index 3035483039..728d2cd5c4 100644 --- a/data/test-results/5G-RAL.json +++ b/data/test-results/5G-RAL.json @@ -5,10 +5,10 @@ "version": "armral-25.01" }, "run": { - "id": "25877359516", + "id": "26658670904", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991334", - "timestamp": "2026-05-14T18:17:44Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321794", + "timestamp": "2026-05-29T19:47:53Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 174, + "duration_seconds": 172, "details": [ { "name": "Test 1 - Check Library Built", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991334#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321794#step:7:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991334#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321794#step:8:1" }, { "name": "Test 3 - Check Headers", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991334#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321794#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 53, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991334#step:10:1" + "duration_seconds": 54, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321794#step:10:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991334#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321794#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 122, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991334#step:12:1", + "duration_seconds": 118, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321794#step:12:1", "current_version": "armral-25.01", "latest_version": "armral-25.04", "next_installed_version": "armral-25.04", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.264702+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.477508+00:00", "publish_state": "published" } } diff --git a/data/test-results/7-zip.json b/data/test-results/7-zip.json index 2c7d596cdb..a21ccaac27 100644 --- a/data/test-results/7-zip.json +++ b/data/test-results/7-zip.json @@ -5,10 +5,10 @@ "version": "23.01" }, "run": { - "id": "25877399008", + "id": "26658707245", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125634", - "timestamp": "2026-05-14T18:18:34Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445324", + "timestamp": "2026-05-29T19:48:38Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check 7-zip binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125634#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445324#step:6:1" }, { "name": "Test 2 - Check 7-zip version/help command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125634#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445324#step:7:1" }, { "name": "Test 3 - Check 7-zip help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125634#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445324#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125634#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445324#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125634#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445324#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125634#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445324#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.264958+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.477743+00:00", "publish_state": "published" } } diff --git a/data/test-results/AvxToNeon.json b/data/test-results/AvxToNeon.json index e3173e95bd..2e7ce3d28d 100644 --- a/data/test-results/AvxToNeon.json +++ b/data/test-results/AvxToNeon.json @@ -5,10 +5,10 @@ "version": "1.0.0" }, "run": { - "id": "25877359516", + "id": "26658670904", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991130", - "timestamp": "2026-05-14T18:17:45Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320679", + "timestamp": "2026-05-29T19:47:52Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 5, "failed": 0, "skipped": 1, - "duration_seconds": 1, + "duration_seconds": 2, "details": [ { "name": "Test 1 - Check Header Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991130#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320679#step:7:1" }, { "name": "Test 2 - Compile Simple Program", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991130#step:9:1" + "duration_seconds": 2, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320679#step:9:1" }, { "name": "Test 3 - Run Program", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991130#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320679#step:10:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991130#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320679#step:11:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991130#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320679#step:12:1" }, { "name": "Test 6 - Regression Validation", "status": "skipped", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991130#step:13:1", + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320679#step:13:1", "current_version": "1.0.0", "latest_version": "1.0.0", "next_installed_version": "1.0.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "skipped", "regression_decision": "no_newer_stable_available", - "production_refreshed_at": "2026-05-14T19:37:17.265169+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.477940+00:00", "publish_state": "published" } } diff --git a/data/test-results/CP2K.json b/data/test-results/CP2K.json index 6b4b929966..1ac8cac15c 100644 --- a/data/test-results/CP2K.json +++ b/data/test-results/CP2K.json @@ -5,10 +5,10 @@ "version": "2023.1" }, "run": { - "id": "25877371674", + "id": "26658681575", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031564", - "timestamp": "2026-05-14T18:17:58Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358382", + "timestamp": "2026-05-29T19:48:07Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 595, + "duration_seconds": 575, "details": [ { "name": "Test 1 - Check cp2k binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031564#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358382#step:6:1" }, { "name": "Test 2 - Check exact release version", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031564#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358382#step:7:1" }, { "name": "Test 3 - Check cp2k help output", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031564#step:8:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358382#step:8:1" }, { "name": "Test 4 - Verify binary is Arm64", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031564#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358382#step:9:1" }, { "name": "Test 5 - Functional validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031564#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358382#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 593, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031564#step:11:1", + "duration_seconds": 574, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358382#step:11:1", "current_version": "2023.1", "latest_version": "2023.2", "next_installed_version": "2023.2", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.265378+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.478148+00:00", "publish_state": "published" } } diff --git a/data/test-results/Crystal-Language.json b/data/test-results/Crystal-Language.json index f8478acc0a..bbd2f2fc80 100644 --- a/data/test-results/Crystal-Language.json +++ b/data/test-results/Crystal-Language.json @@ -5,10 +5,10 @@ "version": "1.16.0" }, "run": { - "id": "25877406767", + "id": "26658714432", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155651", - "timestamp": "2026-05-14T18:18:43Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469416", + "timestamp": "2026-05-29T19:48:48Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 2, + "duration_seconds": 3, "details": [ { "name": "Test 1 - Check crystal binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155651#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469416#step:6:1" }, { "name": "Test 2 - Check crystal version", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155651#step:7:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469416#step:7:1" }, { "name": "Test 3 - Check crystal help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155651#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469416#step:8:1" }, { "name": "Test 4 - Architecture verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155651#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469416#step:9:1" }, { "name": "Test 5 - Functional validation", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155651#step:10:1" + "duration_seconds": 3, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469416#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155651#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469416#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.265578+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.478371+00:00", "publish_state": "published" } } diff --git a/data/test-results/DPDK.json b/data/test-results/DPDK.json index e095cf2dee..14866da5a9 100644 --- a/data/test-results/DPDK.json +++ b/data/test-results/DPDK.json @@ -5,10 +5,10 @@ "version": "23.11.4" }, "run": { - "id": "25877419588", + "id": "26658724696", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192293", - "timestamp": "2026-05-14T18:18:59Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503416", + "timestamp": "2026-05-29T19:49:01Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 1, + "duration_seconds": 2, "details": [ { "name": "Test 1 - Check library and headers", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192293#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503416#step:6:1" }, { "name": "Test 2 - Check version metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192293#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503416#step:7:1" }, { "name": "Test 3 - Check pkg-config output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192293#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503416#step:8:1" }, { "name": "Test 4 - Verify architecture", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192293#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503416#step:9:1" }, { "name": "Test 5 - Functional compile and run", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192293#step:10:1" + "duration_seconds": 2, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503416#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192293#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503416#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.265785+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.478560+00:00", "publish_state": "published" } } diff --git a/data/test-results/Datree.json b/data/test-results/Datree.json index c61ee1103b..5869913779 100644 --- a/data/test-results/Datree.json +++ b/data/test-results/Datree.json @@ -5,10 +5,10 @@ "version": "1.9.17" }, "run": { - "id": "25877427741", + "id": "26658731236", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218867", - "timestamp": "2026-05-14T18:19:09Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529377", + "timestamp": "2026-05-29T19:49:10Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check datree binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218867#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529377#step:6:1" }, { "name": "Test 2 - Check version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218867#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529377#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218867#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529377#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218867#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529377#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218867#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529377#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218867#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529377#step:11:1", "current_version": "1.9.17", "latest_version": "1.9.19", "next_installed_version": "1.9.19", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.265997+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.478740+00:00", "publish_state": "published" } } diff --git a/data/test-results/Dgraph-Labs.json b/data/test-results/Dgraph-Labs.json index 5d6523087f..f8974eb4d4 100644 --- a/data/test-results/Dgraph-Labs.json +++ b/data/test-results/Dgraph-Labs.json @@ -5,10 +5,10 @@ "version": "24.1.0" }, "run": { - "id": "25877375677", + "id": "26658685142", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045289", - "timestamp": "2026-05-14T18:18:02Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370467", + "timestamp": "2026-05-29T19:48:10Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -25,38 +25,38 @@ { "name": "Test 1 - Check dgraph binary exists", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045289#step:6:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370467#step:6:1" }, { "name": "Test 2 - Check version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045289#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370467#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045289#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370467#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045289#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370467#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045289#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370467#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045289#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370467#step:11:1", "current_version": "24.1.0", "latest_version": "24.1.1", "next_installed_version": "24.1.1", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.266243+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.478933+00:00", "publish_state": "published" } } diff --git a/data/test-results/DroneCli.json b/data/test-results/DroneCli.json index 2139f0892a..705cdc373f 100644 --- a/data/test-results/DroneCli.json +++ b/data/test-results/DroneCli.json @@ -5,10 +5,10 @@ "version": "1.8.0" }, "run": { - "id": "25877423406", + "id": "26658727918", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209535", - "timestamp": "2026-05-14T18:19:03Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516064", + "timestamp": "2026-05-29T19:49:05Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check drone binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209535#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516064#step:6:1" }, { "name": "Test 2 - Check version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209535#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516064#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209535#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516064#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209535#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516064#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209535#step:10:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516064#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209535#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516064#step:11:1", "current_version": "1.8.0", "latest_version": "1.9.0", "next_installed_version": "1.9.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.266448+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.479111+00:00", "publish_state": "published" } } diff --git a/data/test-results/Flume.json b/data/test-results/Flume.json index ab13f7b4d3..370e5e0ef3 100644 --- a/data/test-results/Flume.json +++ b/data/test-results/Flume.json @@ -5,10 +5,10 @@ "version": "1.10.0" }, "run": { - "id": "25877375677", + "id": "26658685142", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045194", - "timestamp": "2026-05-14T18:18:03Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370730", + "timestamp": "2026-05-29T19:48:11Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 175, + "duration_seconds": 169, "details": [ { "name": "Test 1 - Check flume-ng binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045194#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370730#step:7:1" }, { "name": "Test 2 - Check flume version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045194#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370730#step:8:1" }, { "name": "Test 3 - Check flume help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045194#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370730#step:9:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045194#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370730#step:10:1" }, { "name": "Test 5 - Functional Validation (Configuration)", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045194#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370730#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 175, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045194#step:12:1", + "duration_seconds": 169, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370730#step:12:1", "current_version": "1.10.0", "latest_version": "1.10.1", "next_installed_version": "1.10.1", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.266679+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.479321+00:00", "publish_state": "published" } } diff --git a/data/test-results/H2.json b/data/test-results/H2.json index b1dc45a904..1ec3f3a742 100644 --- a/data/test-results/H2.json +++ b/data/test-results/H2.json @@ -5,10 +5,10 @@ "version": "2.3.230" }, "run": { - "id": "25877403044", + "id": "26658710721", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140889", - "timestamp": "2026-05-14T18:18:38Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456235", + "timestamp": "2026-05-29T19:48:44Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 1, + "duration_seconds": 2, "details": [ { "name": "Test 1 - Check Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140889#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456235#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140889#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456235#step:7:1" }, { "name": "Test 3 - Check Help Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140889#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456235#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140889#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456235#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140889#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456235#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140889#step:11:1", + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456235#step:11:1", "current_version": "2.3.230", "latest_version": "2.3.232", "next_installed_version": "2.3.232", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.267008+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.479598+00:00", "publish_state": "published" } } diff --git a/data/test-results/HMMER.json b/data/test-results/HMMER.json index 826f3d14f3..884a93cd26 100644 --- a/data/test-results/HMMER.json +++ b/data/test-results/HMMER.json @@ -5,10 +5,10 @@ "version": "3.4" }, "run": { - "id": "25877399008", + "id": "26658707245", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126185", - "timestamp": "2026-05-14T18:18:32Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445237", + "timestamp": "2026-05-29T19:48:38Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check hmmbuild binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126185#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445237#step:6:1" }, { "name": "Test 2 - Check hmmsearch binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126185#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445237#step:7:1" }, { "name": "Test 3 - Check hmmbuild help command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126185#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445237#step:8:1" }, { "name": "Test 4 - Create a simple HMM profile", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126185#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445237#step:9:1" }, { "name": "Test 5 - Search sequence against profile", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126185#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445237#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126185#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445237#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.267216+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.479794+00:00", "publish_state": "published" } } diff --git a/data/test-results/Iguazio_Nuclio.json b/data/test-results/Iguazio_Nuclio.json index 4aef368e67..616f4fa6f1 100644 --- a/data/test-results/Iguazio_Nuclio.json +++ b/data/test-results/Iguazio_Nuclio.json @@ -5,10 +5,10 @@ "version": "1.13.21" }, "run": { - "id": "25877403044", + "id": "26658710721", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140979", - "timestamp": "2026-05-14T18:18:37Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456376", + "timestamp": "2026-05-29T19:48:44Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 7, + "duration_seconds": 6, "details": [ { "name": "Test 1 - Check nuctl binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140979#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456376#step:6:1" }, { "name": "Test 2 - Check nuctl version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140979#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456376#step:7:1" }, { "name": "Test 3 - Check nuctl help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140979#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456376#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140979#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456376#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 7, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140979#step:10:1" + "duration_seconds": 6, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456376#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140979#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456376#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.267421+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.479967+00:00", "publish_state": "published" } } diff --git a/data/test-results/Indigo-EPAM.json b/data/test-results/Indigo-EPAM.json index 47cc21432c..4b60cb2b49 100644 --- a/data/test-results/Indigo-EPAM.json +++ b/data/test-results/Indigo-EPAM.json @@ -5,10 +5,10 @@ "version": "1.43.0" }, "run": { - "id": "25877392111", + "id": "26658699892", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095818", - "timestamp": "2026-05-14T18:18:23Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420503", + "timestamp": "2026-05-29T19:48:30Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Python Import", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095818#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420503#step:6:1" }, { "name": "Test 2 - Check pip metadata", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095818#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420503#step:7:1" }, { "name": "Test 3 - Basic Usage Check", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095818#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420503#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095818#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420503#step:9:1" }, { "name": "Test 5 - Functional Validation (Molecule Loading)", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095818#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420503#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095818#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420503#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.267604+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.480140+00:00", "publish_state": "published" } } diff --git a/data/test-results/JAX.json b/data/test-results/JAX.json index 6161c353e8..370ab54a30 100644 --- a/data/test-results/JAX.json +++ b/data/test-results/JAX.json @@ -2,13 +2,13 @@ "schema_version": "2.0", "package": { "name": "JAX", - "version": "0.10.0" + "version": "0.10.1" }, "run": { - "id": "25877387746", + "id": "26658696365", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084134", - "timestamp": "2026-05-14T18:18:17Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407493", + "timestamp": "2026-05-29T19:48:23Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 1, + "duration_seconds": 2, "details": [ { "name": "Test 1 - Check jax binary exists", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084134#step:6:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407493#step:6:1" }, { "name": "Test 2 - Check jax version command", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084134#step:7:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407493#step:7:1" }, { "name": "Test 3 - Check jax help output", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084134#step:8:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407493#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084134#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407493#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084134#step:10:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407493#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084134#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407493#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.267832+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.480345+00:00", "publish_state": "published" } } diff --git a/data/test-results/Junit5.json b/data/test-results/Junit5.json index 8ffc1b014d..73a2e8cb3b 100644 --- a/data/test-results/Junit5.json +++ b/data/test-results/Junit5.json @@ -5,10 +5,10 @@ "version": "1.11.4" }, "run": { - "id": "25877395502", + "id": "26658703674", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110101", - "timestamp": "2026-05-14T18:18:26Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432926", + "timestamp": "2026-05-29T19:48:33Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 2, + "duration_seconds": 1, "details": [ { "name": "Test 1 - Check junit5 binary/jar", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110101#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432926#step:6:1" }, { "name": "Test 2 - Check junit5 engines command", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110101#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432926#step:7:1" }, { "name": "Test 3 - Check junit5 help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110101#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432926#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110101#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432926#step:9:1" }, { "name": "Test 5 - Functional Validation (Dummy Test)", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110101#step:10:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432926#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110101#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432926#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.268043+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.480523+00:00", "publish_state": "published" } } diff --git a/data/test-results/Kunpeng_Acceleration_Engine.json b/data/test-results/Kunpeng_Acceleration_Engine.json index 10ef2950bc..8be4089aa9 100644 --- a/data/test-results/Kunpeng_Acceleration_Engine.json +++ b/data/test-results/Kunpeng_Acceleration_Engine.json @@ -5,10 +5,10 @@ "version": "2.0.3" }, "run": { - "id": "25877423406", + "id": "26658727918", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209435", - "timestamp": "2026-05-14T18:19:00Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516096", + "timestamp": "2026-05-29T19:49:05Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 1, + "duration_seconds": 2, "details": [ { "name": "Test 1 - Artifact Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209435#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516096#step:6:1" }, { "name": "Test 2 - Version Check", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209435#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516096#step:7:1" }, { "name": "Test 3 - Help Or Configuration Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209435#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516096#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209435#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516096#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209435#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516096#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209435#step:11:1", + "duration_seconds": 2, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516096#step:11:1", "current_version": "2.0.3", "latest_version": "2.0.4", "next_installed_version": "2.0.4", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.268264+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.480692+00:00", "publish_state": "published" } } diff --git a/data/test-results/LZO.json b/data/test-results/LZO.json index a310dd9099..dc2c71ef27 100644 --- a/data/test-results/LZO.json +++ b/data/test-results/LZO.json @@ -5,10 +5,10 @@ "version": "1.04" }, "run": { - "id": "25877399008", + "id": "26658707245", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125155", - "timestamp": "2026-05-14T18:18:32Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445514", + "timestamp": "2026-05-29T19:48:39Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check lzo binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125155#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445514#step:6:1" }, { "name": "Test 2 - Check lzo version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125155#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445514#step:7:1" }, { "name": "Test 3 - Check lzo help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125155#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445514#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125155#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445514#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125155#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445514#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125155#step:11:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445514#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.268473+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.480870+00:00", "publish_state": "published" } } diff --git a/data/test-results/Lachesis.json b/data/test-results/Lachesis.json index da858ac26c..13988785e4 100644 --- a/data/test-results/Lachesis.json +++ b/data/test-results/Lachesis.json @@ -5,10 +5,10 @@ "version": "0.0.1.0" }, "run": { - "id": "25877419588", + "id": "26658724696", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192471", - "timestamp": "2026-05-14T18:18:57Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504010", + "timestamp": "2026-05-29T19:49:01Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check package install exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192471#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504010#step:6:1" }, { "name": "Test 2 - Check lachesis version metadata", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192471#step:7:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504010#step:7:1" }, { "name": "Test 3 - Check lachesis import", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192471#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504010#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192471#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504010#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192471#step:10:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504010#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192471#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504010#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.268672+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.481031+00:00", "publish_state": "published" } } diff --git a/data/test-results/Neutron.json b/data/test-results/Neutron.json index e9f3977320..e31f27bee0 100644 --- a/data/test-results/Neutron.json +++ b/data/test-results/Neutron.json @@ -5,10 +5,10 @@ "version": "25.2.2" }, "run": { - "id": "25877411197", + "id": "26658717942", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174519", - "timestamp": "2026-05-14T18:18:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478665", + "timestamp": "2026-05-29T19:48:51Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Neutron entry points", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174519#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478665#step:6:1" }, { "name": "Test 2 - Check exact pinned version", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174519#step:7:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478665#step:7:1" }, { "name": "Test 3 - Check neutron-server help output", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174519#step:8:1" + "duration_seconds": 2, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478665#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174519#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478665#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174519#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478665#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174519#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478665#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.268885+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.481197+00:00", "publish_state": "published" } } diff --git a/data/test-results/ODP.json b/data/test-results/ODP.json index 77a5812874..cc3814de33 100644 --- a/data/test-results/ODP.json +++ b/data/test-results/ODP.json @@ -5,10 +5,10 @@ "version": "1.46.0.0" }, "run": { - "id": "25877383844", + "id": "26658692522", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071819", - "timestamp": "2026-05-14T18:18:12Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394517", + "timestamp": "2026-05-29T19:48:20Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 64, + "duration_seconds": 63, "details": [ { "name": "Test 1 - Check Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071819#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394517#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071819#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394517#step:7:1" }, { "name": "Test 3 - Check Configuration or Linkage", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071819#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394517#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071819#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394517#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071819#step:10:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394517#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 63, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071819#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394517#step:11:1", "current_version": "1.46.0.0", "latest_version": "1.47.0.0", "next_installed_version": "1.47.0.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.269108+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.481410+00:00", "publish_state": "published" } } diff --git a/data/test-results/OVS.json b/data/test-results/OVS.json index 15a0c6fe20..b46bcc2f49 100644 --- a/data/test-results/OVS.json +++ b/data/test-results/OVS.json @@ -5,10 +5,10 @@ "version": "3.3.4" }, "run": { - "id": "25877363365", + "id": "26658674448", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000717", - "timestamp": "2026-05-14T18:17:48Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334940", + "timestamp": "2026-05-29T19:47:56Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check ovs-vsctl binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000717#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334940#step:6:1" }, { "name": "Test 2 - Check ovs version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000717#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334940#step:7:1" }, { "name": "Test 3 - Check ovs service status (smoke check only)", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000717#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334940#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000717#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334940#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000717#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334940#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000717#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334940#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.269296+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.481600+00:00", "publish_state": "published" } } diff --git a/data/test-results/Open-Policy-Agent.json b/data/test-results/Open-Policy-Agent.json index 061ea78eac..7710f2993f 100644 --- a/data/test-results/Open-Policy-Agent.json +++ b/data/test-results/Open-Policy-Agent.json @@ -5,10 +5,10 @@ "version": "1.2.0" }, "run": { - "id": "25877406767", + "id": "26658714432", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155439", - "timestamp": "2026-05-14T18:18:43Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469541", + "timestamp": "2026-05-29T19:48:49Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 0, + "duration_seconds": 1, "details": [ { "name": "Test 1 - Check OPA binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155439#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469541#step:6:1" }, { "name": "Test 2 - Check version command", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155439#step:7:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469541#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155439#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469541#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155439#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469541#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155439#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469541#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155439#step:11:1", + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469541#step:11:1", "current_version": "1.2.0", "latest_version": "1.14.1", "next_installed_version": "1.14.1", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.269498+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.481770+00:00", "publish_state": "published" } } diff --git a/data/test-results/OpenEBS.json b/data/test-results/OpenEBS.json index 44d9dafc5b..3219c34381 100644 --- a/data/test-results/OpenEBS.json +++ b/data/test-results/OpenEBS.json @@ -5,10 +5,10 @@ "version": "3.8.0" }, "run": { - "id": "25877363365", + "id": "26658674448", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000735", - "timestamp": "2026-05-14T18:17:47Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334848", + "timestamp": "2026-05-29T19:47:58Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000735#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334848#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000735#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334848#step:7:1" }, { "name": "Test 3 - Check Configuration Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000735#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334848#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000735#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334848#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000735#step:10:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334848#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000735#step:11:1", + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334848#step:11:1", "current_version": "3.8.0", "latest_version": "3.9.0", "next_installed_version": "3.9.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.269713+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.481943+00:00", "publish_state": "published" } } diff --git a/data/test-results/OpenH264.json b/data/test-results/OpenH264.json index 7879454178..4f9075feff 100644 --- a/data/test-results/OpenH264.json +++ b/data/test-results/OpenH264.json @@ -5,10 +5,10 @@ "version": "2.5.1" }, "run": { - "id": "25877367704", + "id": "26658677990", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027039", - "timestamp": "2026-05-14T18:17:59Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347072", + "timestamp": "2026-05-29T19:48:03Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 13, + "duration_seconds": 12, "details": [ { "name": "Test 1 - Check encoder and decoder binaries exist", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027039#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347072#step:6:1" }, { "name": "Test 2 - Check versioned library install", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027039#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347072#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027039#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347072#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027039#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347072#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027039#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347072#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 13, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027039#step:11:1", + "duration_seconds": 12, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347072#step:11:1", "current_version": "2.5.1", "latest_version": "2.6.0", "next_installed_version": "2.6.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.269944+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.482114+00:00", "publish_state": "published" } } diff --git a/data/test-results/R.json b/data/test-results/R.json index b78395017f..facf160655 100644 --- a/data/test-results/R.json +++ b/data/test-results/R.json @@ -5,10 +5,10 @@ "version": "4.4.2" }, "run": { - "id": "25877383844", + "id": "26658692522", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071538", - "timestamp": "2026-05-14T18:18:11Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394378", + "timestamp": "2026-05-29T19:48:19Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 169, + "duration_seconds": 165, "details": [ { "name": "Test 1 - Check Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071538#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394378#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071538#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394378#step:7:1" }, { "name": "Test 3 - Check Help Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071538#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394378#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071538#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394378#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071538#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394378#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 169, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071538#step:11:1", + "duration_seconds": 165, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394378#step:11:1", "current_version": "4.4.2", "latest_version": "4.4.3", "next_installed_version": "4.4.3", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.270138+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.482301+00:00", "publish_state": "published" } } diff --git a/data/test-results/RKE.json b/data/test-results/RKE.json index f3a44252c3..69973c5f4f 100644 --- a/data/test-results/RKE.json +++ b/data/test-results/RKE.json @@ -5,10 +5,10 @@ "version": "1.8.0" }, "run": { - "id": "25877411197", + "id": "26658717942", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174597", - "timestamp": "2026-05-14T18:18:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478588", + "timestamp": "2026-05-29T19:48:51Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check rke binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174597#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478588#step:6:1" }, { "name": "Test 2 - Check rke version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174597#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478588#step:7:1" }, { "name": "Test 3 - Check rke help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174597#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478588#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174597#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478588#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174597#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478588#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174597#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478588#step:11:1", "current_version": "1.8.0", "latest_version": "1.8.1", "next_installed_version": "1.8.1", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.270356+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.482494+00:00", "publish_state": "published" } } diff --git a/data/test-results/Redundans.json b/data/test-results/Redundans.json index 0832e72ab2..e4a5de1205 100644 --- a/data/test-results/Redundans.json +++ b/data/test-results/Redundans.json @@ -5,10 +5,10 @@ "version": "v1.01" }, "run": { - "id": "25877371674", + "id": "26658681575", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031513", - "timestamp": "2026-05-14T18:18:02Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358603", + "timestamp": "2026-05-29T19:48:07Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check main script exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031513#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358603#step:6:1" }, { "name": "Test 2 - Check binary folder content", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031513#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358603#step:7:1" }, { "name": "Test 3 - Check help output (source script)", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031513#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358603#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031513#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358603#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031513#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358603#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031513#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358603#step:11:1", "current_version": "v1.01", "latest_version": "v2.00", "next_installed_version": "v2.00", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.270587+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.482673+00:00", "publish_state": "published" } } diff --git a/data/test-results/RoaringBitmap.json b/data/test-results/RoaringBitmap.json index 65d4e93a30..cbccac98a2 100644 --- a/data/test-results/RoaringBitmap.json +++ b/data/test-results/RoaringBitmap.json @@ -5,10 +5,10 @@ "version": "1.3.0" }, "run": { - "id": "25877415436", + "id": "26658721315", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180750", - "timestamp": "2026-05-14T18:18:54Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491803", + "timestamp": "2026-05-29T19:48:56Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check JAR Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180750#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491803#step:6:1" }, { "name": "Test 2 - Check Versioned Artifact Coordinate", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180750#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491803#step:7:1" }, { "name": "Test 3 - Compile Java Smoke Program", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180750#step:8:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491803#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180750#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491803#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180750#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491803#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180750#step:11:1", + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491803#step:11:1", "current_version": "1.3.0", "latest_version": "1.6.13", "next_installed_version": "1.6.13", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.270788+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.482848+00:00", "publish_state": "published" } } diff --git a/data/test-results/SAS-Kernel.json b/data/test-results/SAS-Kernel.json index 55d57f7a75..13eaaf7bdf 100644 --- a/data/test-results/SAS-Kernel.json +++ b/data/test-results/SAS-Kernel.json @@ -5,10 +5,10 @@ "version": "2.4.13" }, "run": { - "id": "25877423406", + "id": "26658727918", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209676", - "timestamp": "2026-05-14T18:19:05Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515985", + "timestamp": "2026-05-29T19:49:08Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check sas-kernel binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209676#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515985#step:6:1" }, { "name": "Test 2 - Check sas-kernel version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209676#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515985#step:7:1" }, { "name": "Test 3 - Check sas-kernel help output", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209676#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515985#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209676#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515985#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209676#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515985#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209676#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515985#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.270966+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.483024+00:00", "publish_state": "published" } } diff --git a/data/test-results/Split-Python-SDK.json b/data/test-results/Split-Python-SDK.json index 86fa41b538..1e324fcf71 100644 --- a/data/test-results/Split-Python-SDK.json +++ b/data/test-results/Split-Python-SDK.json @@ -5,10 +5,10 @@ "version": "10.6.0" }, "run": { - "id": "25877403044", + "id": "26658710721", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048139858", - "timestamp": "2026-05-14T18:18:37Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455621", + "timestamp": "2026-05-29T19:48:42Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -25,38 +25,38 @@ { "name": "Test 1 - Check module import", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048139858#step:6:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455621#step:6:1" }, { "name": "Test 2 - Check pip package info", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048139858#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455621#step:7:1" }, { "name": "Test 3 - Check Class Import", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048139858#step:8:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455621#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048139858#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455621#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048139858#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455621#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048139858#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455621#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.271171+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.483184+00:00", "publish_state": "published" } } diff --git a/data/test-results/TiDB.json b/data/test-results/TiDB.json index 86032759e0..3cfac48b88 100644 --- a/data/test-results/TiDB.json +++ b/data/test-results/TiDB.json @@ -5,10 +5,10 @@ "version": "v7.5.5" }, "run": { - "id": "25877383844", + "id": "26658692522", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071823", - "timestamp": "2026-05-14T18:18:11Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394558", + "timestamp": "2026-05-29T19:48:20Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 16, + "duration_seconds": 18, "details": [ { "name": "Test 1 - Binary Existence", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071823#step:6:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394558#step:6:1" }, { "name": "Test 2 - Version Check", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071823#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394558#step:7:1" }, { "name": "Test 3 - Configuration Validation", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071823#step:8:1" + "duration_seconds": 3, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394558#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071823#step:9:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394558#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071823#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394558#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 13, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071823#step:11:1", + "duration_seconds": 15, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394558#step:11:1", "current_version": "v7.5.5", "latest_version": "v7.5.6", "next_installed_version": "v7.5.6", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.271430+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.483462+00:00", "publish_state": "published" } } diff --git a/data/test-results/VVenC.json b/data/test-results/VVenC.json index 4bedc09897..386800e00e 100644 --- a/data/test-results/VVenC.json +++ b/data/test-results/VVenC.json @@ -5,10 +5,10 @@ "version": "1.13.1" }, "run": { - "id": "25877415436", + "id": "26658721315", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180973", - "timestamp": "2026-05-14T18:18:51Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491886", + "timestamp": "2026-05-29T19:48:57Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 131, + "duration_seconds": 124, "details": [ { "name": "Test 1 - Check Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180973#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491886#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180973#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491886#step:7:1" }, { "name": "Test 3 - Check Help Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180973#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491886#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180973#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491886#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180973#step:10:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491886#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 130, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180973#step:11:1", + "duration_seconds": 124, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491886#step:11:1", "current_version": "1.13.1", "latest_version": "1.14.0", "next_installed_version": "1.14.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.271631+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.483645+00:00", "publish_state": "published" } } diff --git a/data/test-results/Zipkin.json b/data/test-results/Zipkin.json index 05ccb1bc69..082dc9f3e1 100644 --- a/data/test-results/Zipkin.json +++ b/data/test-results/Zipkin.json @@ -5,10 +5,10 @@ "version": "3.4.3" }, "run": { - "id": "25877383844", + "id": "26658692522", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071572", - "timestamp": "2026-05-14T18:18:12Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394397", + "timestamp": "2026-05-29T19:48:19Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check JAR Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071572#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394397#step:6:1" }, { "name": "Test 2 - Check Versioned Artifact Download", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071572#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394397#step:7:1" }, { "name": "Test 3 - Check JAR Readability", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071572#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394397#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071572#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394397#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 8, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071572#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394397#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071572#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394397#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.271856+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.483821+00:00", "publish_state": "published" } } diff --git a/data/test-results/abyss.json b/data/test-results/abyss.json index 7e6a7c8bc1..bbf82cd631 100644 --- a/data/test-results/abyss.json +++ b/data/test-results/abyss.json @@ -5,10 +5,10 @@ "version": "2.3.9" }, "run": { - "id": "25877355625", + "id": "26658667828", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976400", - "timestamp": "2026-05-14T18:17:37Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308676", + "timestamp": "2026-05-29T19:47:49Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check abyss-pe binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976400#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308676#step:6:1" }, { "name": "Test 2 - Check ABySS tool version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976400#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308676#step:7:1" }, { "name": "Test 3 - Check ABySS tool help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976400#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308676#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976400#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308676#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976400#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308676#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976400#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308676#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.272065+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.483993+00:00", "publish_state": "published" } } diff --git a/data/test-results/accumulo.json b/data/test-results/accumulo.json index 345a828369..f94f1bf63f 100644 --- a/data/test-results/accumulo.json +++ b/data/test-results/accumulo.json @@ -5,10 +5,10 @@ "version": "2.1.4" }, "run": { - "id": "25877355625", + "id": "26658667828", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976572", - "timestamp": "2026-05-14T18:17:38Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308963", + "timestamp": "2026-05-29T19:47:49Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 27, + "duration_seconds": 51, "details": [ { "name": "Test 1 - Check accumulo binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976572#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308963#step:6:1" }, { "name": "Test 2 - Check 'accumulo version' reachability", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976572#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308963#step:7:1" }, { "name": "Test 3 - Check 'accumulo help' reachability", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976572#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308963#step:8:1" }, { "name": "Test 4 - Check accumulo-util helper exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976572#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308963#step:9:1" }, { "name": "Test 5 - Check 'accumulo classpath' reachability", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976572#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308963#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 27, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976572#step:11:1", + "duration_seconds": 51, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308963#step:11:1", "current_version": "2.1.4", "latest_version": "3.0.0", "next_installed_version": "3.0.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.272284+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.484159+00:00", "publish_state": "published" } } diff --git a/data/test-results/ace.json b/data/test-results/ace.json index e2f37b0e18..9bb3be9a75 100644 --- a/data/test-results/ace.json +++ b/data/test-results/ace.json @@ -5,10 +5,10 @@ "version": "1.39.1" }, "run": { - "id": "25877355625", + "id": "26658667828", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976539", - "timestamp": "2026-05-14T18:17:39Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308749", + "timestamp": "2026-05-29T19:47:49Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Library Entry Point", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976539#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308749#step:6:1" }, { "name": "Test 2 - Check Version Metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976539#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308749#step:7:1" }, { "name": "Test 3 - Check Package Metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976539#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308749#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976539#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308749#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976539#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308749#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976539#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308749#step:11:1", "current_version": "1.39.1", "latest_version": "1.40.0", "next_installed_version": "1.40.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.272486+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.484352+00:00", "publish_state": "published" } } diff --git a/data/test-results/acl.json b/data/test-results/acl.json index 7682548da6..dc6efe4bd5 100644 --- a/data/test-results/acl.json +++ b/data/test-results/acl.json @@ -5,10 +5,10 @@ "version": "3.6.5" }, "run": { - "id": "25877355625", + "id": "26658667828", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976611", - "timestamp": "2026-05-14T18:17:39Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309090", + "timestamp": "2026-05-29T19:47:49Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 61, + "duration_seconds": 57, "details": [ { "name": "Test 1 - Check acl binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976611#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309090#step:6:1" }, { "name": "Test 2 - Check acl version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976611#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309090#step:7:1" }, { "name": "Test 3 - Check ACL headers/libs installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976611#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309090#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976611#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309090#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976611#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309090#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 61, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976611#step:11:1", + "duration_seconds": 57, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309090#step:11:1", "current_version": "3.6.5", "latest_version": "3.6.6", "next_installed_version": "3.6.6", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.272723+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.484526+00:00", "publish_state": "published" } } diff --git a/data/test-results/activemq.json b/data/test-results/activemq.json index ac1707500e..c49bfde7a7 100644 --- a/data/test-results/activemq.json +++ b/data/test-results/activemq.json @@ -5,10 +5,10 @@ "version": "5.17.6+dfsg-1" }, "run": { - "id": "25877355625", + "id": "26658667828", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976453", - "timestamp": "2026-05-14T18:17:37Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308837", + "timestamp": "2026-05-29T19:47:49Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check activemq binary exists and is executable", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976453#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308837#step:6:1" }, { "name": "Test 2 - Check ActiveMQ package is installed (dpkg status)", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976453#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308837#step:7:1" }, { "name": "Test 3 - Check 'activemq --help' output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976453#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308837#step:8:1" }, { "name": "Test 4 - Check Java dependency", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976453#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308837#step:9:1" }, { "name": "Test 5 - Check ActiveMQ has configuration files under /etc", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976453#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308837#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976453#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308837#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.272957+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.484694+00:00", "publish_state": "published" } } diff --git a/data/test-results/adoptopenjdk.json b/data/test-results/adoptopenjdk.json index e5d7ece0eb..3f610b768f 100644 --- a/data/test-results/adoptopenjdk.json +++ b/data/test-results/adoptopenjdk.json @@ -5,10 +5,10 @@ "version": "21" }, "run": { - "id": "25877355625", + "id": "26658667828", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976672", - "timestamp": "2026-05-14T18:17:38Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308671", + "timestamp": "2026-05-29T19:47:49Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check java binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976672#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308671#step:6:1" }, { "name": "Test 2 - Check javac binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976672#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308671#step:7:1" }, { "name": "Test 3 - Check java -version output includes 21", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976672#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308671#step:8:1" }, { "name": "Test 4 - Compile and run HelloWorld", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976672#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308671#step:9:1" }, { "name": "Test 5 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976672#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308671#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 5, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976672#step:11:1", + "duration_seconds": 4, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308671#step:11:1", "current_version": "21", "latest_version": "22", "next_installed_version": "22", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.273160+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.484857+00:00", "publish_state": "published" } } diff --git a/data/test-results/aerospike.json b/data/test-results/aerospike.json index 32231ff78b..000fc477f1 100644 --- a/data/test-results/aerospike.json +++ b/data/test-results/aerospike.json @@ -5,10 +5,10 @@ "version": "7.2.0.4" }, "run": { - "id": "25877355625", + "id": "26658667828", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976756", - "timestamp": "2026-05-14T18:17:37Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309011", + "timestamp": "2026-05-29T19:47:49Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976756#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309011#step:6:1" }, { "name": "Test 2 - Check version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976756#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309011#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976756#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309011#step:8:1" }, { "name": "Test 4 - Check configuration file", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976756#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309011#step:9:1" }, { "name": "Test 5 - Validate Config (Dry Run)", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976756#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309011#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976756#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309011#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.273367+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.485035+00:00", "publish_state": "published" } } diff --git a/data/test-results/airflow.json b/data/test-results/airflow.json index 6265812327..5f3a70b12a 100644 --- a/data/test-results/airflow.json +++ b/data/test-results/airflow.json @@ -5,10 +5,10 @@ "version": "2.8.1" }, "run": { - "id": "25877355625", + "id": "26658667828", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976999", - "timestamp": "2026-05-14T18:17:37Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308762", + "timestamp": "2026-05-29T19:47:49Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Version Command", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976999#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308762#step:7:1" }, { "name": "Test 2 - Initialize Database", "status": "passed", "duration_seconds": 3, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976999#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308762#step:8:1" }, { "name": "Test 3 - Check Config List", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976999#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308762#step:9:1" }, { "name": "Test 4 - Create User", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976999#step:10:1" + "duration_seconds": 3, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308762#step:10:1" }, { "name": "Test 5 - Start Webserver and Check Health", "status": "passed", - "duration_seconds": 10, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976999#step:11:1" + "duration_seconds": 9, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308762#step:11:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976999#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308762#step:12:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.273547+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.485204+00:00", "publish_state": "published" } } diff --git a/data/test-results/akka.json b/data/test-results/akka.json index 43249f2056..86a9b3eecb 100644 --- a/data/test-results/akka.json +++ b/data/test-results/akka.json @@ -5,10 +5,10 @@ "version": "2.7.1" }, "run": { - "id": "25877355625", + "id": "26658667828", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976555", - "timestamp": "2026-05-14T18:17:37Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308818", + "timestamp": "2026-05-29T19:47:49Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 3, + "duration_seconds": 2, "details": [ { "name": "Test 1 - Check Akka JAR exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976555#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308818#step:6:1" }, { "name": "Test 2 - Check Java version", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976555#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308818#step:7:1" }, { "name": "Test 3 - Verify JAR content (basic check)", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976555#step:8:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308818#step:8:1" }, { "name": "Test 4 - Simple Classpath Check", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976555#step:9:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308818#step:9:1" }, { "name": "Test 5 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976555#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308818#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976555#step:11:1", + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308818#step:11:1", "current_version": "2.7.1", "latest_version": "2.8.0", "next_installed_version": "2.8.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.273775+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.485398+00:00", "publish_state": "published" } } diff --git a/data/test-results/albumentations.json b/data/test-results/albumentations.json index 61e38fe33d..13282bb6e7 100644 --- a/data/test-results/albumentations.json +++ b/data/test-results/albumentations.json @@ -5,10 +5,10 @@ "version": "0.0.2" }, "run": { - "id": "25877355625", + "id": "26658667828", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976918", - "timestamp": "2026-05-14T18:17:37Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308821", + "timestamp": "2026-05-29T19:47:49Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 20, + "duration_seconds": 22, "details": [ { "name": "Test 1 - Package installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976918#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308821#step:7:1" }, { "name": "Test 2 - Version metadata matches baseline", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976918#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308821#step:8:1" }, { "name": "Test 3 - Installed files metadata", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976918#step:9:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308821#step:9:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976918#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308821#step:10:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976918#step:11:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308821#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 20, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976918#step:12:1", + "duration_seconds": 22, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308821#step:12:1", "current_version": "0.0.2", "latest_version": "0.0.3", "next_installed_version": "0.0.3", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.273979+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.485571+00:00", "publish_state": "published" } } diff --git a/data/test-results/alertmanager.json b/data/test-results/alertmanager.json index d2a224b0ba..8e49b58af1 100644 --- a/data/test-results/alertmanager.json +++ b/data/test-results/alertmanager.json @@ -5,10 +5,10 @@ "version": "0.28.1" }, "run": { - "id": "25877403044", + "id": "26658710721", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140529", - "timestamp": "2026-05-14T18:18:37Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456408", + "timestamp": "2026-05-29T19:48:43Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check alertmanager binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140529#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456408#step:6:1" }, { "name": "Test 2 - Check alertmanager version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140529#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456408#step:7:1" }, { "name": "Test 3 - Check alertmanager help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140529#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456408#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140529#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456408#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140529#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456408#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140529#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456408#step:11:1", "current_version": "0.28.1", "latest_version": "0.29.0", "next_installed_version": "0.29.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.274191+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.485748+00:00", "publish_state": "published" } } diff --git a/data/test-results/alfresco.json b/data/test-results/alfresco.json index e78d17177b..687a41a344 100644 --- a/data/test-results/alfresco.json +++ b/data/test-results/alfresco.json @@ -5,10 +5,10 @@ "version": "25.2.0" }, "run": { - "id": "25877355625", + "id": "26658667828", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976541", - "timestamp": "2026-05-14T18:17:37Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309053", + "timestamp": "2026-05-29T19:47:49Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 0, + "duration_seconds": 1, "details": [ { "name": "Test 1 - Check Docker image exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976541#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309053#step:6:1" }, { "name": "Test 2 - Inspect Image Architecture (Verify Arm64 Support)", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976541#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309053#step:7:1" }, { "name": "Test 3 - Check Image Labels/Env", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976541#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309053#step:8:1" }, { "name": "Test 4 - Dry Run Container Start", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976541#step:9:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309053#step:9:1" }, { "name": "Test 5 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976541#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309053#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976541#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309053#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.274395+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.485921+00:00", "publish_state": "published" } } diff --git a/data/test-results/alluxio.json b/data/test-results/alluxio.json index a70b403002..54e0493e07 100644 --- a/data/test-results/alluxio.json +++ b/data/test-results/alluxio.json @@ -5,10 +5,10 @@ "version": "2.9.4" }, "run": { - "id": "25877355625", + "id": "26658667828", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976414", - "timestamp": "2026-05-14T18:17:37Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308681", + "timestamp": "2026-05-29T19:47:49Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976414#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308681#step:6:1" }, { "name": "Test 2 - Check version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976414#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308681#step:7:1" }, { "name": "Test 3 - Check validateEnv command", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976414#step:8:1" + "duration_seconds": 2, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308681#step:8:1" }, { "name": "Test 4 - Check configuration file template", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976414#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308681#step:9:1" }, { "name": "Test 5 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976414#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308681#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 24, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976414#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308681#step:11:1", "current_version": "2.9.4", "latest_version": "2.9.5", "next_installed_version": "2.9.5", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.274589+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.486084+00:00", "publish_state": "published" } } diff --git a/data/test-results/almalinux.json b/data/test-results/almalinux.json index 182212f8bc..ffea9adc08 100644 --- a/data/test-results/almalinux.json +++ b/data/test-results/almalinux.json @@ -5,10 +5,10 @@ "version": "10.0" }, "run": { - "id": "25877355625", + "id": "26658667828", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976774", - "timestamp": "2026-05-14T18:17:37Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308758", + "timestamp": "2026-05-29T19:47:49Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 17, + "duration_seconds": 10, "details": [ { "name": "Test 1 - Check Image Availability", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976774#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308758#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976774#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308758#step:7:1" }, { "name": "Test 3 - Check Help Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976774#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308758#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976774#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308758#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 10, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976774#step:10:1" + "duration_seconds": 3, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308758#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 6, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976774#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308758#step:11:1", "current_version": "10.0", "latest_version": "10.1", "next_installed_version": "10.1", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.274809+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.486266+00:00", "publish_state": "published" } } diff --git a/data/test-results/alpine_linux.json b/data/test-results/alpine_linux.json index beb7e830cb..8f91778796 100644 --- a/data/test-results/alpine_linux.json +++ b/data/test-results/alpine_linux.json @@ -5,10 +5,10 @@ "version": "3.20.10" }, "run": { - "id": "25877406767", + "id": "26658714432", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154556", - "timestamp": "2026-05-14T18:18:43Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468605", + "timestamp": "2026-05-29T19:48:49Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 5, + "duration_seconds": 6, "details": [ { "name": "Test 1 - Check image architecture", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154556#step:6:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468605#step:6:1" }, { "name": "Test 2 - Check OS release file", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154556#step:7:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468605#step:7:1" }, { "name": "Test 3 - Install package with apk", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154556#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468605#step:8:1" }, { "name": "Test 4 - Check architecture inside container", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154556#step:9:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468605#step:9:1" }, { "name": "Test 5 - Simple command execution", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154556#step:10:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468605#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 3, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154556#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468605#step:11:1", "current_version": "3.20.10", "latest_version": "3.21", "next_installed_version": "3.21.7", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.275044+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.486459+00:00", "publish_state": "published" } } diff --git a/data/test-results/amaranth.json b/data/test-results/amaranth.json index ceee0b5134..780339a171 100644 --- a/data/test-results/amaranth.json +++ b/data/test-results/amaranth.json @@ -5,10 +5,10 @@ "version": "0.3" }, "run": { - "id": "25877355625", + "id": "26658667828", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976911", - "timestamp": "2026-05-14T18:17:37Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308862", + "timestamp": "2026-05-29T19:47:49Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 7, + "duration_seconds": 6, "details": [ { "name": "Test 1 - Package installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976911#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308862#step:7:1" }, { "name": "Test 2 - Version metadata matches baseline", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976911#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308862#step:8:1" }, { "name": "Test 3 - Installed files metadata", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976911#step:9:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308862#step:9:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976911#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308862#step:10:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976911#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308862#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 7, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976911#step:12:1", + "duration_seconds": 5, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308862#step:12:1", "current_version": "0.3", "latest_version": "0.4.0", "next_installed_version": "0.4.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.275249+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.486631+00:00", "publish_state": "published" } } diff --git a/data/test-results/amazon-vpc-cni-k8s.json b/data/test-results/amazon-vpc-cni-k8s.json index 4bb18cb01f..55e8411490 100644 --- a/data/test-results/amazon-vpc-cni-k8s.json +++ b/data/test-results/amazon-vpc-cni-k8s.json @@ -5,10 +5,10 @@ "version": "1.4.0" }, "run": { - "id": "25877355625", + "id": "26658667828", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976840", - "timestamp": "2026-05-14T18:17:37Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308768", + "timestamp": "2026-05-29T19:47:49Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check package-specific baseline markers", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976840#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308768#step:8:1" }, { "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976840#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308768#step:9:1" }, { "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976840#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308768#step:10:1" }, { "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976840#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308768#step:11:1" }, { "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976840#step:12:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308768#step:12:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 30, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976840#step:13:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308768#step:13:1", "current_version": "1.4.0", "latest_version": "1.6.3", "next_installed_version": "1.6.3", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.275462+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.486814+00:00", "publish_state": "published" } } diff --git a/data/test-results/ampere-ai-text-to-sql.json b/data/test-results/ampere-ai-text-to-sql.json index cd28a3354b..74d7134f6f 100644 --- a/data/test-results/ampere-ai-text-to-sql.json +++ b/data/test-results/ampere-ai-text-to-sql.json @@ -5,10 +5,10 @@ "version": "0.1" }, "run": { - "id": "25877355625", + "id": "26658667828", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976835", - "timestamp": "2026-05-14T18:17:37Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308904", + "timestamp": "2026-05-29T19:47:49Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 5, "failed": 0, "skipped": 1, - "duration_seconds": 0, + "duration_seconds": 1, "details": [ { "name": "Test 1 - Check package-specific baseline markers", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976835#step:8:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308904#step:8:1" }, { "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976835#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308904#step:9:1" }, { "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976835#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308904#step:10:1" }, { "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976835#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308904#step:11:1" }, { "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976835#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308904#step:12:1" }, { "name": "Test 6 - Regression Validation", "status": "skipped", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976835#step:13:1", + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308904#step:13:1", "current_version": "0.1", "latest_version": "0.1", "next_installed_version": "not_installed", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "skipped", "regression_decision": "no_newer_stable_available", - "production_refreshed_at": "2026-05-14T19:37:17.275672+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.486993+00:00", "publish_state": "published" } } diff --git a/data/test-results/ampere-optimised-ollama.json b/data/test-results/ampere-optimised-ollama.json index 7ee4267a1e..ea90f45d1b 100644 --- a/data/test-results/ampere-optimised-ollama.json +++ b/data/test-results/ampere-optimised-ollama.json @@ -5,10 +5,10 @@ "version": "1.0.0-ol9" }, "run": { - "id": "25877355625", + "id": "26658667828", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976810", - "timestamp": "2026-05-14T18:17:37Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308916", + "timestamp": "2026-05-29T19:47:49Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check package-specific baseline markers", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976810#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308916#step:8:1" }, { "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976810#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308916#step:9:1" }, { "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976810#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308916#step:10:1" }, { "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976810#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308916#step:11:1" }, { "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976810#step:12:1" + "duration_seconds": 2, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308916#step:12:1" }, { "name": "Test 6 - Regression Validation", "status": "skipped", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976810#step:13:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308916#step:13:1", "current_version": "1.0.0-ol9", "latest_version": "1.0.0-ol9", "next_installed_version": "not_installed", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "skipped", "regression_decision": "no_newer_stable_available", - "production_refreshed_at": "2026-05-14T19:37:17.275885+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.487170+00:00", "publish_state": "published" } } diff --git a/data/test-results/ampere-optimized-llama.json b/data/test-results/ampere-optimized-llama.json index 6ab111c74b..a7105ac1a8 100644 --- a/data/test-results/ampere-optimized-llama.json +++ b/data/test-results/ampere-optimized-llama.json @@ -5,10 +5,10 @@ "version": "1.2.0" }, "run": { - "id": "25877355625", + "id": "26658667828", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047977071", - "timestamp": "2026-05-14T18:17:38Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308942", + "timestamp": "2026-05-29T19:47:49Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 7, + "duration_seconds": 4, "details": [ { "name": "Test 1 - Check package-specific baseline markers", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047977071#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308942#step:8:1" }, { "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047977071#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308942#step:9:1" }, { "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047977071#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308942#step:10:1" }, { "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047977071#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308942#step:11:1" }, { "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "duration_seconds": 10, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047977071#step:12:1" + "duration_seconds": 7, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308942#step:12:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 7, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047977071#step:13:1", + "duration_seconds": 4, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308942#step:13:1", "current_version": "1.2.0", "latest_version": "3.4.2", "next_installed_version": "3.4.2", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.276198+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.487465+00:00", "publish_state": "published" } } diff --git a/data/test-results/ampere-optimized-onnx.json b/data/test-results/ampere-optimized-onnx.json index 2c8e64a2ca..350a49482b 100644 --- a/data/test-results/ampere-optimized-onnx.json +++ b/data/test-results/ampere-optimized-onnx.json @@ -5,10 +5,10 @@ "version": "1.4.0" }, "run": { - "id": "25877355625", + "id": "26658667828", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976933", - "timestamp": "2026-05-14T18:17:37Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308978", + "timestamp": "2026-05-29T19:47:49Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 84, + "duration_seconds": 89, "details": [ { "name": "Test 1 - Check package-specific baseline markers", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976933#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308978#step:8:1" }, { "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976933#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308978#step:9:1" }, { "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976933#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308978#step:10:1" }, { "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976933#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308978#step:11:1" }, { "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "duration_seconds": 41, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976933#step:12:1" + "duration_seconds": 44, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308978#step:12:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 43, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976933#step:13:1", + "duration_seconds": 45, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308978#step:13:1", "current_version": "1.4.0", "latest_version": "1.12.0", "next_installed_version": "1.12.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.276410+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.487737+00:00", "publish_state": "published" } } diff --git a/data/test-results/ampere-optimized-pytorch.json b/data/test-results/ampere-optimized-pytorch.json index 1e9ecaab80..481bac6a2a 100644 --- a/data/test-results/ampere-optimized-pytorch.json +++ b/data/test-results/ampere-optimized-pytorch.json @@ -5,10 +5,10 @@ "version": "1.4.0" }, "run": { - "id": "25877355625", + "id": "26658667828", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976944", - "timestamp": "2026-05-14T18:17:38Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308970", + "timestamp": "2026-05-29T19:47:49Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 70, + "duration_seconds": 72, "details": [ { "name": "Test 1 - Check package-specific baseline markers", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976944#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308970#step:8:1" }, { "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976944#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308970#step:9:1" }, { "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976944#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308970#step:10:1" }, { "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976944#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308970#step:11:1" }, { "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "duration_seconds": 32, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976944#step:12:1" + "duration_seconds": 33, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308970#step:12:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 38, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976944#step:13:1", + "duration_seconds": 39, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308970#step:13:1", "current_version": "1.4.0", "latest_version": "1.12.1", "next_installed_version": "1.12.1", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.276623+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.487962+00:00", "publish_state": "published" } } diff --git a/data/test-results/ampere-optimized-tensorflow.json b/data/test-results/ampere-optimized-tensorflow.json index 5c539feab9..6625f29036 100644 --- a/data/test-results/ampere-optimized-tensorflow.json +++ b/data/test-results/ampere-optimized-tensorflow.json @@ -5,10 +5,10 @@ "version": "1.4.0" }, "run": { - "id": "25877359516", + "id": "26658670904", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991282", - "timestamp": "2026-05-14T18:17:44Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321573", + "timestamp": "2026-05-29T19:47:53Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 72, + "duration_seconds": 99, "details": [ { "name": "Test 1 - Check package-specific baseline markers", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991282#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321573#step:8:1" }, { "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991282#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321573#step:9:1" }, { "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991282#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321573#step:10:1" }, { "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991282#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321573#step:11:1" }, { "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "duration_seconds": 35, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991282#step:12:1" + "duration_seconds": 48, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321573#step:12:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 37, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991282#step:13:1", + "duration_seconds": 51, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321573#step:13:1", "current_version": "1.4.0", "latest_version": "1.12.0", "next_installed_version": "1.12.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.276845+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.488289+00:00", "publish_state": "published" } } diff --git a/data/test-results/anda.json b/data/test-results/anda.json index 5fd61316ab..176697fd4c 100644 --- a/data/test-results/anda.json +++ b/data/test-results/anda.json @@ -5,10 +5,10 @@ "version": "0.4.4" }, "run": { - "id": "25877355625", + "id": "26658667828", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976545", - "timestamp": "2026-05-14T18:17:37Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308728", + "timestamp": "2026-05-29T19:47:48Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976545#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308728#step:6:1" }, { "name": "Test 2 - Check version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976545#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308728#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976545#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308728#step:8:1" }, { "name": "Test 4 - Check 'build' subcommand availability", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976545#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308728#step:9:1" }, { "name": "Test 5 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976545#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308728#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976545#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308728#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.277070+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.488523+00:00", "publish_state": "published" } } diff --git a/data/test-results/angularcli.json b/data/test-results/angularcli.json index 1bd6792f57..a2dd9fae4d 100644 --- a/data/test-results/angularcli.json +++ b/data/test-results/angularcli.json @@ -2,13 +2,13 @@ "schema_version": "2.0", "package": { "name": "Angular CLI", - "version": "21.2.11" + "version": "21.2.13" }, "run": { - "id": "25877355625", + "id": "26658667828", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976621", - "timestamp": "2026-05-14T18:17:37Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309032", + "timestamp": "2026-05-29T19:47:49Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976621#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309032#step:6:1" }, { "name": "Test 2 - Check version command", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976621#step:7:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309032#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976621#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309032#step:8:1" }, { "name": "Test 4 - Create New Project (Dry Run)", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976621#step:9:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309032#step:9:1" }, { "name": "Test 5 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976621#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309032#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976621#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309032#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.277259+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.488705+00:00", "publish_state": "published" } } diff --git a/data/test-results/anolis-os.json b/data/test-results/anolis-os.json index f36267f302..d17609262e 100644 --- a/data/test-results/anolis-os.json +++ b/data/test-results/anolis-os.json @@ -5,10 +5,10 @@ "version": "23" }, "run": { - "id": "25877355625", + "id": "26658667828", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976511", - "timestamp": "2026-05-14T18:17:37Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308949", + "timestamp": "2026-05-29T19:47:49Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 25, + "duration_seconds": 24, "details": [ { "name": "Test 1 - Check Image Architecture", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976511#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308949#step:6:1" }, { "name": "Test 2 - Check OS Release File", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976511#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308949#step:7:1" }, { "name": "Test 3 - Install Package (yum/dnf)", "status": "passed", - "duration_seconds": 8, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976511#step:8:1" + "duration_seconds": 9, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308949#step:8:1" }, { "name": "Test 4 - Check Kernel/Arch inside container", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976511#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308949#step:9:1" }, { "name": "Test 5 - Simple Command Execution", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976511#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308949#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 16, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976511#step:11:1", + "duration_seconds": 14, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308949#step:11:1", "current_version": "23", "latest_version": "23.4", "next_installed_version": "23.4", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.277469+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.488881+00:00", "publish_state": "published" } } diff --git a/data/test-results/ansible.json b/data/test-results/ansible.json index 06220e7484..ba544a9212 100644 --- a/data/test-results/ansible.json +++ b/data/test-results/ansible.json @@ -5,10 +5,10 @@ "version": "2.16.18" }, "run": { - "id": "25877355625", + "id": "26658667828", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976536", - "timestamp": "2026-05-14T18:17:37Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308767", + "timestamp": "2026-05-29T19:47:49Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Version Command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976536#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308767#step:7:1" }, { "name": "Test 2 - Run Ad-hoc Ping", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976536#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308767#step:8:1" }, { "name": "Test 3 - Run Simple Playbook", "status": "passed", "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976536#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308767#step:9:1" }, { "name": "Test 4 - Verify Playbook Effect", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976536#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308767#step:10:1" }, { "name": "Test 5 - Check Module Documentation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976536#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308767#step:11:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976536#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308767#step:12:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.277687+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.489055+00:00", "publish_state": "published" } } diff --git a/data/test-results/ant.json b/data/test-results/ant.json index d36cde14ea..42e94db724 100644 --- a/data/test-results/ant.json +++ b/data/test-results/ant.json @@ -5,10 +5,10 @@ "version": "2.3.3.1" }, "run": { - "id": "25877359516", + "id": "26658670904", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991631", - "timestamp": "2026-05-14T18:17:44Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321861", + "timestamp": "2026-05-29T19:47:53Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check package-specific baseline markers", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991631#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321861#step:8:1" }, { "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991631#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321861#step:9:1" }, { "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991631#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321861#step:10:1" }, { "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991631#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321861#step:11:1" }, { "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991631#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321861#step:12:1" }, { "name": "Test 6 - Regression Validation", "status": "skipped", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991631#step:13:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321861#step:13:1", "current_version": "2.3.3.1", "latest_version": "2.3.3.1", "next_installed_version": "not_installed", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "skipped", "regression_decision": "no_newer_stable_available", - "production_refreshed_at": "2026-05-14T19:37:17.277913+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.489229+00:00", "publish_state": "published" } } diff --git a/data/test-results/antlr4.json b/data/test-results/antlr4.json index 8eaa454ffc..c774a38b6d 100644 --- a/data/test-results/antlr4.json +++ b/data/test-results/antlr4.json @@ -5,10 +5,10 @@ "version": "4.13.1" }, "run": { - "id": "25877355625", + "id": "26658667828", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976772", - "timestamp": "2026-05-14T18:17:38Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308685", + "timestamp": "2026-05-29T19:47:49Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 1, + "duration_seconds": 2, "details": [ { "name": "Test 1 - Check JAR Execution", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976772#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308685#step:7:1" }, { "name": "Test 2 - Create Grammar File", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976772#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308685#step:8:1" }, { "name": "Test 3 - Compile Grammar", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976772#step:9:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308685#step:9:1" }, { "name": "Test 4 - Check Generated Files", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976772#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308685#step:10:1" }, { "name": "Test 5 - Compile Generated Java Code", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976772#step:11:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308685#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976772#step:12:1", + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308685#step:12:1", "current_version": "4.13.1", "latest_version": "4.13.2", "next_installed_version": "4.13.2", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.278100+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.489438+00:00", "publish_state": "published" } } diff --git a/data/test-results/apache-arrow.json b/data/test-results/apache-arrow.json index d16f162b46..7e52b0fc1d 100644 --- a/data/test-results/apache-arrow.json +++ b/data/test-results/apache-arrow.json @@ -5,10 +5,10 @@ "version": "14.0.1" }, "run": { - "id": "25877355625", + "id": "26658667828", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976744", - "timestamp": "2026-05-14T18:17:37Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309038", + "timestamp": "2026-05-29T19:47:49Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check import", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976744#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309038#step:6:1" }, { "name": "Test 2 - Create Array", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976744#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309038#step:7:1" }, { "name": "Test 3 - Write Parquet File", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976744#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309038#step:8:1" }, { "name": "Test 4 - Read Parquet File", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976744#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309038#step:9:1" }, { "name": "Test 5 - Check Build Info", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976744#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309038#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976744#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309038#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.278320+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.489625+00:00", "publish_state": "published" } } diff --git a/data/test-results/apache-doris.json b/data/test-results/apache-doris.json index f668b6c4a5..5a1c2e3f65 100644 --- a/data/test-results/apache-doris.json +++ b/data/test-results/apache-doris.json @@ -5,10 +5,10 @@ "version": "3.0.8" }, "run": { - "id": "25877406767", + "id": "26658714432", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155423", - "timestamp": "2026-05-14T18:18:43Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469299", + "timestamp": "2026-05-29T19:48:49Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 175, + "duration_seconds": 85, "details": [ { "name": "Test 1 - Check FE image contents", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155423#step:6:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469299#step:6:1" }, { "name": "Test 2 - Check BE image contents", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155423#step:7:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469299#step:7:1" }, { "name": "Test 3 - Check FE and BE startup scripts parse", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155423#step:8:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469299#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155423#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469299#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155423#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469299#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 172, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155423#step:11:1", + "duration_seconds": 83, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469299#step:11:1", "current_version": "3.0.8", "latest_version": "3.1.0", "next_installed_version": "3.1.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.278518+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.489804+00:00", "publish_state": "published" } } diff --git a/data/test-results/apache-shiro.json b/data/test-results/apache-shiro.json index 7387204f01..b78d8b61ef 100644 --- a/data/test-results/apache-shiro.json +++ b/data/test-results/apache-shiro.json @@ -5,10 +5,10 @@ "version": "2.0.0" }, "run": { - "id": "25877363365", + "id": "26658674448", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000797", - "timestamp": "2026-05-14T18:17:46Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334861", + "timestamp": "2026-05-29T19:47:57Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 37, + "duration_seconds": 26, "details": [ { "name": "Test 1 - Create Shiro Maven test project", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000797#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334861#step:6:1" }, { "name": "Test 2 - Resolve Shiro dependency artifact", "status": "passed", - "duration_seconds": 24, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000797#step:7:1" + "duration_seconds": 17, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334861#step:7:1" }, { "name": "Test 3 - Compile Shiro JUnit test", "status": "passed", - "duration_seconds": 6, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000797#step:8:1" + "duration_seconds": 4, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334861#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000797#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334861#step:9:1" }, { "name": "Test 5 - Functional Validation - Shiro auth JUnit", "status": "passed", - "duration_seconds": 7, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000797#step:10:1" + "duration_seconds": 5, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334861#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 9, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000797#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334861#step:11:1", "current_version": "2.0.0", "latest_version": "2.1.0", "next_installed_version": "2.1.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.278695+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.489975+00:00", "publish_state": "published" } } diff --git a/data/test-results/apache_ant.json b/data/test-results/apache_ant.json index bc6d72fcf9..2b74282355 100644 --- a/data/test-results/apache_ant.json +++ b/data/test-results/apache_ant.json @@ -5,10 +5,10 @@ "version": "1.10.14" }, "run": { - "id": "25877419588", + "id": "26658724696", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048191499", - "timestamp": "2026-05-14T18:18:58Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503341", + "timestamp": "2026-05-29T19:49:02Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 42, + "duration_seconds": 40, "details": [ { "name": "Test 1 - Check ant binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048191499#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503341#step:6:1" }, { "name": "Test 2 - Check ant version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048191499#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503341#step:7:1" }, { "name": "Test 3 - Check ant help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048191499#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503341#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048191499#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503341#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 3, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048191499#step:10:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503341#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 39, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048191499#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503341#step:11:1", "current_version": "1.10.14", "latest_version": "1.10.15", "next_installed_version": "1.10.15", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.278917+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.490142+00:00", "publish_state": "published" } } diff --git a/data/test-results/apache_drill.json b/data/test-results/apache_drill.json index a418796afa..62c7943e9a 100644 --- a/data/test-results/apache_drill.json +++ b/data/test-results/apache_drill.json @@ -5,10 +5,10 @@ "version": "1.21.2" }, "run": { - "id": "25877363365", + "id": "26658674448", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000859", - "timestamp": "2026-05-14T18:17:47Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334652", + "timestamp": "2026-05-29T19:47:57Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 25, + "duration_seconds": 34, "details": [ { "name": "Test 1 - Check drill binaries exist", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000859#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334652#step:6:1" }, { "name": "Test 2 - Check drill-conf command", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000859#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334652#step:7:1" }, { "name": "Test 3 - Java Environment Check", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000859#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334652#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000859#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334652#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000859#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334652#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 24, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000859#step:11:1", + "duration_seconds": 33, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334652#step:11:1", "current_version": "1.21.2", "latest_version": "1.22.0", "next_installed_version": "1.22.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.279121+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.490334+00:00", "publish_state": "published" } } diff --git a/data/test-results/apache_knox.json b/data/test-results/apache_knox.json index 37bbc63572..1f43d5a0e2 100644 --- a/data/test-results/apache_knox.json +++ b/data/test-results/apache_knox.json @@ -5,10 +5,10 @@ "version": "2.0.0" }, "run": { - "id": "25877371674", + "id": "26658681575", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031888", - "timestamp": "2026-05-14T18:17:58Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358017", + "timestamp": "2026-05-29T19:48:07Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 12, + "duration_seconds": 11, "details": [ { "name": "Test 1 - Check Directory Structure", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031888#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358017#step:7:1" }, { "name": "Test 2 - Check Gateway Script", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031888#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358017#step:8:1" }, { "name": "Test 3 - Check Knox CLI Help", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031888#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358017#step:9:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031888#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358017#step:10:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031888#step:11:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358017#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 11, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031888#step:12:1", + "duration_seconds": 9, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358017#step:12:1", "current_version": "2.0.0", "latest_version": "2.1.0", "next_installed_version": "2.1.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.279336+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.490506+00:00", "publish_state": "published" } } diff --git a/data/test-results/apache_kudu.json b/data/test-results/apache_kudu.json index a20183d083..b5af3da2a1 100644 --- a/data/test-results/apache_kudu.json +++ b/data/test-results/apache_kudu.json @@ -5,10 +5,10 @@ "version": "1.17.0" }, "run": { - "id": "25877406767", + "id": "26658714432", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155346", - "timestamp": "2026-05-14T18:18:44Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469222", + "timestamp": "2026-05-29T19:48:49Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 4, + "duration_seconds": 5, "details": [ { "name": "Test 1 - Check README", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155346#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469222#step:6:1" }, { "name": "Test 2 - Check Build Files", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155346#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469222#step:7:1" }, { "name": "Test 3 - Check Source Structure", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155346#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469222#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155346#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469222#step:9:1" }, { "name": "Test 5 - Compile and Run Arm64 Atomic Probe", "status": "passed", "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155346#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469222#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155346#step:11:1", + "duration_seconds": 3, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469222#step:11:1", "current_version": "1.17.0", "latest_version": "1.17.1", "next_installed_version": "1.17.1", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.279530+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.490672+00:00", "publish_state": "published" } } diff --git a/data/test-results/apache_thrift.json b/data/test-results/apache_thrift.json index cbd060b2d8..673cf8fb10 100644 --- a/data/test-results/apache_thrift.json +++ b/data/test-results/apache_thrift.json @@ -5,10 +5,10 @@ "version": "0.21.0" }, "run": { - "id": "25877403044", + "id": "26658710721", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140576", - "timestamp": "2026-05-14T18:18:36Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455547", + "timestamp": "2026-05-29T19:48:44Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 62, + "duration_seconds": 60, "details": [ { "name": "Test 1 - Check thrift binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140576#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455547#step:6:1" }, { "name": "Test 2 - Check thrift version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140576#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455547#step:7:1" }, { "name": "Test 3 - Check thrift help output", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140576#step:8:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455547#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140576#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455547#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140576#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455547#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 62, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140576#step:11:1", + "duration_seconds": 60, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455547#step:11:1", "current_version": "0.21.0", "latest_version": "0.22.0", "next_installed_version": "0.22.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.279722+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.490848+00:00", "publish_state": "published" } } diff --git a/data/test-results/apache_tomcat.json b/data/test-results/apache_tomcat.json index 0033343f54..b9553508ea 100644 --- a/data/test-results/apache_tomcat.json +++ b/data/test-results/apache_tomcat.json @@ -5,10 +5,10 @@ "version": "10.1.16.0" }, "run": { - "id": "25877375677", + "id": "26658685142", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044606", - "timestamp": "2026-05-14T18:18:03Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370670", + "timestamp": "2026-05-29T19:48:10Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Tomcat directory exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044606#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370670#step:6:1" }, { "name": "Test 2 - Check for configuration files", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044606#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370670#step:7:1" }, { "name": "Test 3 - Check service status (mock)", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044606#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370670#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044606#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370670#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044606#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370670#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044606#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370670#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.279927+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.491024+00:00", "publish_state": "published" } } diff --git a/data/test-results/apisix.json b/data/test-results/apisix.json index 810e3bab61..29a68e71c3 100644 --- a/data/test-results/apisix.json +++ b/data/test-results/apisix.json @@ -5,10 +5,10 @@ "version": "3.12.0" }, "run": { - "id": "25877355625", + "id": "26658667828", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976547", - "timestamp": "2026-05-14T18:17:37Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309071", + "timestamp": "2026-05-29T19:47:49Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check container running", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976547#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309071#step:6:1" }, { "name": "Test 2 - Check Admin API", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976547#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309071#step:7:1" }, { "name": "Test 3 - Create a Route", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976547#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309071#step:8:1" }, { "name": "Test 4 - Access the Route", "status": "passed", "duration_seconds": 5, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976547#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309071#step:9:1" }, { "name": "Test 5 - Check Admin Routes Again", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976547#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309071#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 11, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976547#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309071#step:11:1", "current_version": "3.12.0", "latest_version": "3.13.0", "next_installed_version": "3.13.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.280133+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.491193+00:00", "publish_state": "published" } } diff --git a/data/test-results/apr.json b/data/test-results/apr.json index 86962c2e46..be97ac6721 100644 --- a/data/test-results/apr.json +++ b/data/test-results/apr.json @@ -5,10 +5,10 @@ "version": "1.7.5" }, "run": { - "id": "25877355625", + "id": "26658667828", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976868", - "timestamp": "2026-05-14T18:17:37Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308806", + "timestamp": "2026-05-29T19:47:49Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 226, + "duration_seconds": 222, "details": [ { "name": "Test 1 - Configure", "status": "passed", - "duration_seconds": 23, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976868#step:7:1" + "duration_seconds": 21, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308806#step:7:1" }, { "name": "Test 2 - Compile (Make)", "status": "passed", "duration_seconds": 18, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976868#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308806#step:8:1" }, { "name": "Test 3 - Run Tests (Make Test)", "status": "passed", "duration_seconds": 163, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976868#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308806#step:9:1" }, { "name": "Test 4 - Install (Dry Run)", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976868#step:10:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308806#step:10:1" }, { "name": "Test 5 - Check Installed Libs", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976868#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308806#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 21, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976868#step:12:1", + "duration_seconds": 20, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308806#step:12:1", "current_version": "1.7.5", "latest_version": "1.7.6", "next_installed_version": "1.7.6", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.280318+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.491397+00:00", "publish_state": "published" } } diff --git a/data/test-results/arangodb.json b/data/test-results/arangodb.json index f5c74ed23d..4a9bd69632 100644 --- a/data/test-results/arangodb.json +++ b/data/test-results/arangodb.json @@ -5,10 +5,10 @@ "version": "3.12.4" }, "run": { - "id": "25877359516", + "id": "26658670904", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990004", - "timestamp": "2026-05-14T18:17:45Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320729", + "timestamp": "2026-05-29T19:47:51Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 14, + "duration_seconds": 16, "details": [ { "name": "Test 1 - Check Database Binary", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990004#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320729#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990004#step:7:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320729#step:7:1" }, { "name": "Test 3 - Check Help Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990004#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320729#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990004#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320729#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 5, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990004#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320729#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 8, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990004#step:11:1", + "duration_seconds": 11, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320729#step:11:1", "current_version": "3.12.4", "latest_version": "3.12.5", "next_installed_version": "3.12.5", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.280538+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.491594+00:00", "publish_state": "published" } } diff --git a/data/test-results/archiconda3.json b/data/test-results/archiconda3.json index c689f837c0..8c4d38555e 100644 --- a/data/test-results/archiconda3.json +++ b/data/test-results/archiconda3.json @@ -5,10 +5,10 @@ "version": "24.11.3" }, "run": { - "id": "25877359516", + "id": "26658670904", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990083", - "timestamp": "2026-05-14T18:17:44Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320747", + "timestamp": "2026-05-29T19:47:51Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 20, + "duration_seconds": 19, "details": [ { "name": "Test 1 - Check Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990083#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320747#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990083#step:7:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320747#step:7:1" }, { "name": "Test 3 - Check Help Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990083#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320747#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990083#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320747#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 20, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990083#step:10:1" + "duration_seconds": 19, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320747#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990083#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320747#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.280774+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.491766+00:00", "publish_state": "published" } } diff --git a/data/test-results/argo.json b/data/test-results/argo.json index 7072ef0c46..fa91c976a4 100644 --- a/data/test-results/argo.json +++ b/data/test-results/argo.json @@ -5,10 +5,10 @@ "version": "v3.6.4" }, "run": { - "id": "25877359516", + "id": "26658670904", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990079", - "timestamp": "2026-05-14T18:17:45Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320694", + "timestamp": "2026-05-29T19:47:52Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Version Command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990079#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320694#step:6:1" }, { "name": "Test 2 - Create Workflow File", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990079#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320694#step:7:1" }, { "name": "Test 3 - Lint Workflow", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990079#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320694#step:8:1" }, { "name": "Test 4 - Check Help Command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990079#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320694#step:9:1" }, { "name": "Test 5 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990079#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320694#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990079#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320694#step:11:1", "current_version": "v3.6.4", "latest_version": "v3.6.5", "next_installed_version": "3.6.5", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.281054+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.492024+00:00", "publish_state": "published" } } diff --git a/data/test-results/arthas.json b/data/test-results/arthas.json index f2c6d3bca9..2963afc7d4 100644 --- a/data/test-results/arthas.json +++ b/data/test-results/arthas.json @@ -5,10 +5,10 @@ "version": "4.0.5" }, "run": { - "id": "25877359516", + "id": "26658670904", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990027", - "timestamp": "2026-05-14T18:17:45Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320664", + "timestamp": "2026-05-29T19:47:53Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Boot Jar Execution", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990027#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320664#step:7:1" }, { "name": "Test 2 - Start Dummy Java Process", "status": "passed", - "duration_seconds": 3, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990027#step:8:1" + "duration_seconds": 2, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320664#step:8:1" }, { "name": "Test 3 - Attach Arthas and Query JVM", "status": "passed", - "duration_seconds": 3, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990027#step:9:1" + "duration_seconds": 4, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320664#step:9:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990027#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320664#step:11:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990027#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320664#step:12:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990027#step:13:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320664#step:13:1", "current_version": "4.0.5", "latest_version": "4.1.0", "next_installed_version": "4.1.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.281255+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.492205+00:00", "publish_state": "published" } } diff --git a/data/test-results/asp-net.json b/data/test-results/asp-net.json index 903842b0b3..ef1d1fc225 100644 --- a/data/test-results/asp-net.json +++ b/data/test-results/asp-net.json @@ -2,13 +2,13 @@ "schema_version": "2.0", "package": { "name": "ASP.NET", - "version": "8.0.126" + "version": "8.0.127" }, "run": { - "id": "25877379982", + "id": "26658688675", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057237", - "timestamp": "2026-05-14T18:18:07Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380582", + "timestamp": "2026-05-29T19:48:15Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 1, + "duration_seconds": 0, "details": [ { "name": "Test 1 - Check dotnet binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057237#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380582#step:6:1" }, { "name": "Test 2 - Check dotnet version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057237#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380582#step:7:1" }, { "name": "Test 3 - Check dotnet help output", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057237#step:8:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380582#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057237#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380582#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057237#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380582#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057237#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380582#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.281462+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.492412+00:00", "publish_state": "published" } } diff --git a/data/test-results/atlas.json b/data/test-results/atlas.json index 1c6617d722..61631f8129 100644 --- a/data/test-results/atlas.json +++ b/data/test-results/atlas.json @@ -5,10 +5,10 @@ "version": "2.3.0" }, "run": { - "id": "25877355625", + "id": "26658667828", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976844", - "timestamp": "2026-05-14T18:17:37Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308864", + "timestamp": "2026-05-29T19:47:49Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 48, + "duration_seconds": 83, "details": [ { "name": "Test 1 - Check Source Files", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976844#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308864#step:8:1" }, { "name": "Test 2 - Check Maven Version", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976844#step:9:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308864#step:9:1" }, { "name": "Test 3 - Validate Build (Maven)", "status": "passed", - "duration_seconds": 34, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976844#step:10:1" + "duration_seconds": 48, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308864#step:10:1" }, { "name": "Test 4 - Check Distro Module", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976844#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308864#step:11:1" }, { "name": "Test 5 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976844#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308864#step:12:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 12, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976844#step:13:1", + "duration_seconds": 34, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308864#step:13:1", "current_version": "2.3.0", "latest_version": "2.4.0", "next_installed_version": "2.4.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.281644+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.492586+00:00", "publish_state": "published" } } diff --git a/data/test-results/auditbeat.json b/data/test-results/auditbeat.json index f863594763..e1cb23c726 100644 --- a/data/test-results/auditbeat.json +++ b/data/test-results/auditbeat.json @@ -5,10 +5,10 @@ "version": "8.17.0" }, "run": { - "id": "25877359516", + "id": "26658670904", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047989973", - "timestamp": "2026-05-14T18:17:45Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320695", + "timestamp": "2026-05-29T19:47:51Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 1, + "duration_seconds": 4, "details": [ { "name": "Test 1 - Check Version Command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047989973#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320695#step:6:1" }, { "name": "Test 2 - Check Help", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047989973#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320695#step:7:1" }, { "name": "Test 3 - Export Template", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047989973#step:8:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320695#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047989973#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320695#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047989973#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320695#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047989973#step:11:1", + "duration_seconds": 3, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320695#step:11:1", "current_version": "8.17.0", "latest_version": "8.18.0", "next_installed_version": "8.18.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.281845+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.492755+00:00", "publish_state": "published" } } diff --git a/data/test-results/avahi.json b/data/test-results/avahi.json index af019bc607..0ded48e656 100644 --- a/data/test-results/avahi.json +++ b/data/test-results/avahi.json @@ -5,10 +5,10 @@ "version": "0.8" }, "run": { - "id": "25877359516", + "id": "26658670904", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047989968", - "timestamp": "2026-05-14T18:17:45Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320701", + "timestamp": "2026-05-29T19:47:52Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Version Command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047989968#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320701#step:6:1" }, { "name": "Test 2 - Check Config Syntax", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047989968#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320701#step:7:1" }, { "name": "Test 3 - Check Avahi Browse Help", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047989968#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320701#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047989968#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320701#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047989968#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320701#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047989968#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320701#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.282063+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.492928+00:00", "publish_state": "published" } } diff --git a/data/test-results/avro_py.json b/data/test-results/avro_py.json index 1201887569..bc33dc754a 100644 --- a/data/test-results/avro_py.json +++ b/data/test-results/avro_py.json @@ -5,10 +5,10 @@ "version": "1.12.0" }, "run": { - "id": "25877359516", + "id": "26658670904", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990975", - "timestamp": "2026-05-14T18:17:47Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320731", + "timestamp": "2026-05-29T19:47:53Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Import Avro", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990975#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320731#step:7:1" }, { "name": "Test 2 - Validate datum against schema", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990975#step:8:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320731#step:8:1" }, { "name": "Test 3 - Parse schema", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990975#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320731#step:9:1" }, { "name": "Test 4 - Binary encode and decode", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990975#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320731#step:10:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990975#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320731#step:11:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990975#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575320731#step:12:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.282241+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.493093+00:00", "publish_state": "published" } } diff --git a/data/test-results/azul_system.json b/data/test-results/azul_system.json index a5794d8491..0137d5cf2d 100644 --- a/data/test-results/azul_system.json +++ b/data/test-results/azul_system.json @@ -5,10 +5,10 @@ "version": "17.0.9" }, "run": { - "id": "25877383844", + "id": "26658692522", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071330", - "timestamp": "2026-05-14T18:18:12Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394513", + "timestamp": "2026-05-29T19:48:20Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 11, + "duration_seconds": 6, "details": [ { "name": "Test 1 - Check azul_system binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071330#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394513#step:6:1" }, { "name": "Test 2 - Check azul_system version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071330#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394513#step:7:1" }, { "name": "Test 3 - Check azul_system help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071330#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394513#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071330#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394513#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071330#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394513#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 11, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071330#step:11:1", + "duration_seconds": 6, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394513#step:11:1", "current_version": "17.0.9", "latest_version": "17.0.10", "next_installed_version": "17.0.10", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.282446+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.493274+00:00", "publish_state": "published" } } diff --git a/data/test-results/azurecli.json b/data/test-results/azurecli.json index 2530382395..4a23ef4af2 100644 --- a/data/test-results/azurecli.json +++ b/data/test-results/azurecli.json @@ -5,10 +5,10 @@ "version": "2.46.0" }, "run": { - "id": "25877359516", + "id": "26658670904", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991464", - "timestamp": "2026-05-14T18:17:55Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321490", + "timestamp": "2026-05-29T19:48:00Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 109, + "duration_seconds": 103, "details": [ { "name": "Test 1 - Check package-specific baseline markers", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991464#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321490#step:9:1" }, { "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991464#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321490#step:10:1" }, { "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991464#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321490#step:11:1" }, { "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991464#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321490#step:12:1" }, { "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "duration_seconds": 10, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991464#step:13:1" + "duration_seconds": 9, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321490#step:13:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 109, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991464#step:14:1", + "duration_seconds": 103, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321490#step:14:1", "current_version": "2.46.0", "latest_version": "2.84.0", "next_installed_version": "2.84.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.282652+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.493458+00:00", "publish_state": "published" } } diff --git a/data/test-results/azurelinux.json b/data/test-results/azurelinux.json index b199cb7d7c..562bdb8c8f 100644 --- a/data/test-results/azurelinux.json +++ b/data/test-results/azurelinux.json @@ -5,10 +5,10 @@ "version": "3.0" }, "run": { - "id": "25877363365", + "id": "26658674448", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000933", - "timestamp": "2026-05-14T18:17:48Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334843", + "timestamp": "2026-05-29T19:47:58Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,46 +20,46 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 36, + "duration_seconds": 42, "details": [ { "name": "Test 1 - Check package-specific baseline markers", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000933#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334843#step:8:1" }, { "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000933#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334843#step:9:1" }, { "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000933#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334843#step:10:1" }, { "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000933#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334843#step:11:1" }, { "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "duration_seconds": 18, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000933#step:12:1" + "duration_seconds": 22, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334843#step:12:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 18, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000933#step:13:1", + "duration_seconds": 20, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334843#step:13:1", "current_version": "3.0", - "latest_version": "3.0.20260510-3.0", - "next_installed_version": "3.0.20260510-3.0", + "latest_version": "3.0.20260517-3.0", + "next_installed_version": "3.0.20260517-3.0", "decision": "limited_cpu_smoke_validated", "regression_result": "Arm preflight proof passed on Arm64", "comparison": "Test 6 reran the scoped Azure Linux Arm preflight using the matching stable Azure Linux base-image stream: Arm64 image pull/inspect, os-release and RPM checks, tdnf makecache, and a non-root process smoke. VM boot and Azure hardware validation remain out of scope." @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.282881+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.493629+00:00", "publish_state": "published" } } diff --git a/data/test-results/backstage.json b/data/test-results/backstage.json index f621f19c9c..b6589f3ed1 100644 --- a/data/test-results/backstage.json +++ b/data/test-results/backstage.json @@ -2,13 +2,13 @@ "schema_version": "2.0", "package": { "name": "Backstage", - "version": "0.34.6" + "version": "0.36.2" }, "run": { - "id": "25877375677", + "id": "26658685142", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044836", - "timestamp": "2026-05-14T18:18:02Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370317", + "timestamp": "2026-05-29T19:48:11Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 0, + "duration_seconds": 1, "details": [ { "name": "Test 1 - Check binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044836#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370317#step:7:1" }, { "name": "Test 2 - Check version command", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044836#step:8:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370317#step:8:1" }, { "name": "Test 3 - Check help command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044836#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370317#step:9:1" }, { "name": "Test 4 - Check Info", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044836#step:10:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370317#step:10:1" }, { "name": "Test 5 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044836#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370317#step:11:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044836#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370317#step:12:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.283085+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.493795+00:00", "publish_state": "published" } } diff --git a/data/test-results/bamtools.json b/data/test-results/bamtools.json index 1d5d717088..f9f85fe1e9 100644 --- a/data/test-results/bamtools.json +++ b/data/test-results/bamtools.json @@ -5,10 +5,10 @@ "version": "2.5.2" }, "run": { - "id": "25877375677", + "id": "26658685142", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044823", - "timestamp": "2026-05-14T18:18:03Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370906", + "timestamp": "2026-05-29T19:48:11Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044823#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370906#step:6:1" }, { "name": "Test 2 - Check version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044823#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370906#step:7:1" }, { "name": "Test 3 - Check help command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044823#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370906#step:8:1" }, { "name": "Test 4 - List Tools", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044823#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370906#step:9:1" }, { "name": "Test 5 - Basic Header Check (Dry Run)", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044823#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370906#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044823#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370906#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.283302+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.493957+00:00", "publish_state": "published" } } diff --git a/data/test-results/barbican.json b/data/test-results/barbican.json index 2a35f54d3b..71c915432e 100644 --- a/data/test-results/barbican.json +++ b/data/test-results/barbican.json @@ -5,10 +5,10 @@ "version": "5.7.0" }, "run": { - "id": "25877387746", + "id": "26658696365", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084608", - "timestamp": "2026-05-14T18:18:15Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407879", + "timestamp": "2026-05-29T19:48:25Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 3, + "duration_seconds": 1, "details": [ { "name": "Test 1 - Check binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084608#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407879#step:6:1" }, { "name": "Test 2 - Check version command", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084608#step:7:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407879#step:7:1" }, { "name": "Test 3 - Check help command", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084608#step:8:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407879#step:8:1" }, { "name": "Test 4 - List Secrets (Dry Run)", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084608#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407879#step:9:1" }, { "name": "Test 5 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084608#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407879#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084608#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407879#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.283483+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.494115+00:00", "publish_state": "published" } } diff --git a/data/test-results/bazel.json b/data/test-results/bazel.json index 4b896c947d..fcf659a7b2 100644 --- a/data/test-results/bazel.json +++ b/data/test-results/bazel.json @@ -5,10 +5,10 @@ "version": "7.5.0" }, "run": { - "id": "25877423406", + "id": "26658727918", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210430", - "timestamp": "2026-05-14T18:19:11Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515938", + "timestamp": "2026-05-29T19:49:06Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 24, + "duration_seconds": 14, "details": [ { "name": "Test 1 - Check binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210430#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515938#step:6:1" }, { "name": "Test 2 - Check version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210430#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515938#step:7:1" }, { "name": "Test 3 - Check help command", "status": "passed", - "duration_seconds": 6, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210430#step:8:1" + "duration_seconds": 5, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515938#step:8:1" }, { "name": "Test 4 - Build Simple Project", "status": "passed", - "duration_seconds": 17, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210430#step:9:1" + "duration_seconds": 8, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515938#step:9:1" }, { "name": "Test 5 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210430#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515938#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210430#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515938#step:11:1", "current_version": "7.5.0", "latest_version": "7.6.0", "next_installed_version": "7.6.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.283680+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.494288+00:00", "publish_state": "published" } } diff --git a/data/test-results/bcache.json b/data/test-results/bcache.json index b7bc2d9c58..c03b4c0fb0 100644 --- a/data/test-results/bcache.json +++ b/data/test-results/bcache.json @@ -5,10 +5,10 @@ "version": "1.0.8-5build1" }, "run": { - "id": "25877399008", + "id": "26658707245", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126362", - "timestamp": "2026-05-14T18:18:31Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445348", + "timestamp": "2026-05-29T19:48:39Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check make-bcache binary", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126362#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445348#step:6:1" }, { "name": "Test 2 - Check bcache-super-show binary", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126362#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445348#step:7:1" }, { "name": "Test 3 - Check help command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126362#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445348#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126362#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445348#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126362#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445348#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126362#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445348#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.283897+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.494457+00:00", "publish_state": "published" } } diff --git a/data/test-results/bcrypt.json b/data/test-results/bcrypt.json index d0c8a3a65f..d7df6b06ad 100644 --- a/data/test-results/bcrypt.json +++ b/data/test-results/bcrypt.json @@ -5,10 +5,10 @@ "version": "3.2.2" }, "run": { - "id": "25877359516", + "id": "26658670904", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991622", - "timestamp": "2026-05-14T18:17:44Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321634", + "timestamp": "2026-05-29T19:47:52Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Import", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991622#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321634#step:6:1" }, { "name": "Test 2 - Check Hashing", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991622#step:7:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321634#step:7:1" }, { "name": "Test 3 - Check Password Verification", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991622#step:8:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321634#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991622#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321634#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991622#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321634#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991622#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321634#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.284101+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.494618+00:00", "publish_state": "published" } } diff --git a/data/test-results/beanstalkd.json b/data/test-results/beanstalkd.json index 0a664eba51..e0d9ee1802 100644 --- a/data/test-results/beanstalkd.json +++ b/data/test-results/beanstalkd.json @@ -5,10 +5,10 @@ "version": "1.12" }, "run": { - "id": "25877379982", + "id": "26658688675", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057245", - "timestamp": "2026-05-14T18:18:05Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380525", + "timestamp": "2026-05-29T19:48:15Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057245#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380525#step:6:1" }, { "name": "Test 2 - Check version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057245#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380525#step:7:1" }, { "name": "Test 3 - Check help command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057245#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380525#step:8:1" }, { "name": "Test 4 - Start Service", "status": "passed", "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057245#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380525#step:9:1" }, { "name": "Test 5 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057245#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380525#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057245#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380525#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.284298+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.494777+00:00", "publish_state": "published" } } diff --git a/data/test-results/beeGFS.json b/data/test-results/beeGFS.json index 9d4effa360..318e5a52bd 100644 --- a/data/test-results/beeGFS.json +++ b/data/test-results/beeGFS.json @@ -5,10 +5,10 @@ "version": "20:8.0.1" }, "run": { - "id": "25877406767", + "id": "26658714432", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155723", - "timestamp": "2026-05-14T18:18:47Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469157", + "timestamp": "2026-05-29T19:48:49Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155723#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469157#step:6:1" }, { "name": "Test 2 - Version Check", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155723#step:7:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469157#step:7:1" }, { "name": "Test 3 - Help Or Configuration Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155723#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469157#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155723#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469157#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155723#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469157#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155723#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469157#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.284520+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.494939+00:00", "publish_state": "published" } } diff --git a/data/test-results/benchmark.json b/data/test-results/benchmark.json index 24f7e9531e..909298c8f9 100644 --- a/data/test-results/benchmark.json +++ b/data/test-results/benchmark.json @@ -5,10 +5,10 @@ "version": "1.9.3" }, "run": { - "id": "25877399008", + "id": "26658707245", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125769", - "timestamp": "2026-05-14T18:18:33Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445478", + "timestamp": "2026-05-29T19:48:39Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 111, + "duration_seconds": 115, "details": [ { "name": "Test 1 - Check Headers", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125769#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445478#step:7:1" }, { "name": "Test 2 - Compile Simple Benchmark", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125769#step:8:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445478#step:8:1" }, { "name": "Test 3 - Run Benchmark", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125769#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445478#step:9:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125769#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445478#step:10:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125769#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445478#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 110, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125769#step:12:1", + "duration_seconds": 113, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445478#step:12:1", "current_version": "1.9.3", "latest_version": "1.9.4", "next_installed_version": "1.9.4", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.284702+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.495100+00:00", "publish_state": "published" } } diff --git a/data/test-results/benchmarksql.json b/data/test-results/benchmarksql.json index ce15207853..71614a1aa2 100644 --- a/data/test-results/benchmarksql.json +++ b/data/test-results/benchmarksql.json @@ -5,10 +5,10 @@ "version": "REL6_0_RC2" }, "run": { - "id": "25877379982", + "id": "26658688675", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057364", - "timestamp": "2026-05-14T18:18:05Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380580", + "timestamp": "2026-05-29T19:48:14Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check runBenchmark.sh script", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057364#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380580#step:7:1" }, { "name": "Test 2 - Check Java Dependency", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057364#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380580#step:8:1" }, { "name": "Test 3 - Check Script Usage (Dry Run)", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057364#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380580#step:9:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057364#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380580#step:10:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057364#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380580#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "skipped", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057364#step:12:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380580#step:12:1", "current_version": "REL6_0_RC2", "latest_version": "REL6_0_RC2", "next_installed_version": "REL6_0_RC2", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "skipped", "regression_decision": "no_newer_stable_available", - "production_refreshed_at": "2026-05-14T19:37:17.284927+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.495301+00:00", "publish_state": "published" } } diff --git a/data/test-results/bentoml.json b/data/test-results/bentoml.json index e4c9dfcb04..04cb5cd05f 100644 --- a/data/test-results/bentoml.json +++ b/data/test-results/bentoml.json @@ -5,10 +5,10 @@ "version": "0.0.1" }, "run": { - "id": "25877363365", + "id": "26658674448", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000948", - "timestamp": "2026-05-14T18:17:48Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575335006", + "timestamp": "2026-05-29T19:47:57Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Package installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000948#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575335006#step:7:1" }, { "name": "Test 2 - Version metadata matches baseline", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000948#step:8:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575335006#step:8:1" }, { "name": "Test 3 - Installed files metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000948#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575335006#step:9:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000948#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575335006#step:10:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000948#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575335006#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 4, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000948#step:12:1", + "duration_seconds": 5, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575335006#step:12:1", "current_version": "0.0.1", "latest_version": "0.0.2", "next_installed_version": "0.0.2", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.285160+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.495495+00:00", "publish_state": "published" } } diff --git a/data/test-results/bioconda.json b/data/test-results/bioconda.json index 2ef1041176..3807f57c9e 100644 --- a/data/test-results/bioconda.json +++ b/data/test-results/bioconda.json @@ -5,10 +5,10 @@ "version": "24.11.3" }, "run": { - "id": "25877395502", + "id": "26658703674", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110110", - "timestamp": "2026-05-14T18:18:25Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432843", + "timestamp": "2026-05-29T19:48:34Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 23, + "duration_seconds": 22, "details": [ { "name": "Test 1 - Check Conda Binary", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110110#step:6:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432843#step:6:1" }, { "name": "Test 2 - Check Channels", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110110#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432843#step:7:1" }, { "name": "Test 3 - Install Simple Bioconda Package", "status": "passed", "duration_seconds": 20, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110110#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432843#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110110#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432843#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110110#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432843#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110110#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432843#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.285359+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.495662+00:00", "publish_state": "published" } } diff --git a/data/test-results/bionemo-framework.json b/data/test-results/bionemo-framework.json index f8a0bcad23..35ea06c67a 100644 --- a/data/test-results/bionemo-framework.json +++ b/data/test-results/bionemo-framework.json @@ -5,10 +5,10 @@ "version": "2.2" }, "run": { - "id": "25877363365", + "id": "26658674448", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000964", - "timestamp": "2026-05-14T18:17:47Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334944", + "timestamp": "2026-05-29T19:47:56Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 3, + "duration_seconds": 2, "details": [ { "name": "Test 1 - Check package-specific baseline markers", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000964#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334944#step:8:1" }, { "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000964#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334944#step:9:1" }, { "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000964#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334944#step:10:1" }, { "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000964#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334944#step:11:1" }, { "name": "Test 5 - Run scoped Arm preflight proof", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000964#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334944#step:12:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000964#step:13:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334944#step:13:1", "current_version": "2.2", "latest_version": "2.7.1", "next_installed_version": "2.7.1", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.285531+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.495821+00:00", "publish_state": "published" } } diff --git a/data/test-results/bishengjdk.json b/data/test-results/bishengjdk.json index d7cd3424cb..41bfc90374 100644 --- a/data/test-results/bishengjdk.json +++ b/data/test-results/bishengjdk.json @@ -5,10 +5,10 @@ "version": "21.0.6" }, "run": { - "id": "25877403044", + "id": "26658710721", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140888", - "timestamp": "2026-05-14T18:18:37Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456278", + "timestamp": "2026-05-29T19:48:43Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 17, + "duration_seconds": 19, "details": [ { "name": "Test 1 - Check Java Binary", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140888#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456278#step:6:1" }, { "name": "Test 2 - Verify BiSheng Vendor", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140888#step:7:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456278#step:7:1" }, { "name": "Test 3 - Compile and Run HelloWorld", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140888#step:8:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456278#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140888#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456278#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140888#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456278#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 17, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140888#step:11:1", + "duration_seconds": 18, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456278#step:11:1", "current_version": "21.0.6", "latest_version": "21.0.7", "next_installed_version": "21.0.7", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.286484+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.496612+00:00", "publish_state": "published" } } diff --git a/data/test-results/bison.json b/data/test-results/bison.json index 40196a29c0..a62a3af6c6 100644 --- a/data/test-results/bison.json +++ b/data/test-results/bison.json @@ -5,10 +5,10 @@ "version": "3.8.2" }, "run": { - "id": "25877379982", + "id": "26658688675", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057176", - "timestamp": "2026-05-14T18:18:10Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380675", + "timestamp": "2026-05-29T19:48:14Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057176#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380675#step:6:1" }, { "name": "Test 2 - Check version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057176#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380675#step:7:1" }, { "name": "Test 3 - Check help command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057176#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380675#step:8:1" }, { "name": "Test 4 - Process Simple Grammar", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057176#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380675#step:9:1" }, { "name": "Test 5 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057176#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380675#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057176#step:11:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380675#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.286685+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.496802+00:00", "publish_state": "published" } } diff --git a/data/test-results/bk_cmdb.json b/data/test-results/bk_cmdb.json index f67bf3384f..29ead6cee3 100644 --- a/data/test-results/bk_cmdb.json +++ b/data/test-results/bk_cmdb.json @@ -5,10 +5,10 @@ "version": "v3.10.41" }, "run": { - "id": "25877392111", + "id": "26658699892", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096466", - "timestamp": "2026-05-14T18:18:31Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421058", + "timestamp": "2026-05-29T19:48:37Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Build Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096466#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421058#step:7:1" }, { "name": "Test 2 - Check Version Command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096466#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421058#step:8:1" }, { "name": "Test 3 - Basic Help Check", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096466#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421058#step:9:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096466#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421058#step:10:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096466#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421058#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 7, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096466#step:12:1", + "duration_seconds": 6, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421058#step:12:1", "current_version": "v3.10.41", "latest_version": "v3.10.42", "next_installed_version": "v3.10.42", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.286909+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.496980+00:00", "publish_state": "published" } } diff --git a/data/test-results/blobfuse2.json b/data/test-results/blobfuse2.json index 82433e3885..17dd210eb9 100644 --- a/data/test-results/blobfuse2.json +++ b/data/test-results/blobfuse2.json @@ -5,10 +5,10 @@ "version": "2.1.0" }, "run": { - "id": "25877367704", + "id": "26658677990", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027171", - "timestamp": "2026-05-14T18:17:56Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347514", + "timestamp": "2026-05-29T19:48:02Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check package-specific baseline markers", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027171#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347514#step:8:1" }, { "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027171#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347514#step:9:1" }, { "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027171#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347514#step:10:1" }, { "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027171#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347514#step:11:1" }, { "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", "duration_seconds": 20, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027171#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347514#step:12:1" }, { "name": "Test 6 - Regression Validation", "status": "skipped", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027171#step:13:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347514#step:13:1", "current_version": "2.1.0", "latest_version": "2.1.0", "next_installed_version": "not_installed", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "skipped", "regression_decision": "no_newer_stable_available", - "production_refreshed_at": "2026-05-14T19:37:17.287101+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.497152+00:00", "publish_state": "published" } } diff --git a/data/test-results/boost.json b/data/test-results/boost.json index 54c2e7dad5..a2ee6249bb 100644 --- a/data/test-results/boost.json +++ b/data/test-results/boost.json @@ -5,10 +5,10 @@ "version": "1.83" }, "run": { - "id": "25877367704", + "id": "26658677990", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026904", - "timestamp": "2026-05-14T18:17:56Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347140", + "timestamp": "2026-05-29T19:48:02Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 4, + "duration_seconds": 3, "details": [ { "name": "Test 1 - Check Headers", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026904#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347140#step:6:1" }, { "name": "Test 2 - Check version metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026904#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347140#step:7:1" }, { "name": "Test 3 - Check library availability", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026904#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347140#step:8:1" }, { "name": "Test 4 - Verify architecture", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026904#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347140#step:9:1" }, { "name": "Test 5 - Compile and run Boost examples", "status": "passed", - "duration_seconds": 4, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026904#step:10:1" + "duration_seconds": 3, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347140#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026904#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347140#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.287281+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.500592+00:00", "publish_state": "published" } } diff --git a/data/test-results/boringssl.json b/data/test-results/boringssl.json index 7524f86248..809833882c 100644 --- a/data/test-results/boringssl.json +++ b/data/test-results/boringssl.json @@ -5,10 +5,10 @@ "version": "9d99d81" }, "run": { - "id": "25877371674", + "id": "26658681575", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031074", - "timestamp": "2026-05-14T18:17:58Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357273", + "timestamp": "2026-05-29T19:48:06Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check bssl binary", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031074#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357273#step:7:1" }, { "name": "Test 2 - Run bssl help", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031074#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357273#step:8:1" }, { "name": "Test 3 - Generate RSA Key", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031074#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357273#step:9:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031074#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357273#step:10:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031074#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357273#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "skipped", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031074#step:12:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357273#step:12:1", "current_version": "fips-20220613", "latest_version": "fips-20220613", "next_installed_version": "not_installed", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "skipped", "regression_decision": "no_newer_stable_available", - "production_refreshed_at": "2026-05-14T19:37:17.287454+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.500794+00:00", "publish_state": "published" } } diff --git a/data/test-results/bosh-cli.json b/data/test-results/bosh-cli.json index ff69a391ae..a9e5b1bc11 100644 --- a/data/test-results/bosh-cli.json +++ b/data/test-results/bosh-cli.json @@ -5,10 +5,10 @@ "version": "7.9.4" }, "run": { - "id": "25877411197", + "id": "26658717942", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175427", - "timestamp": "2026-05-14T18:18:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479729", + "timestamp": "2026-05-29T19:48:53Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175427#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479729#step:6:1" }, { "name": "Test 2 - Check version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175427#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479729#step:7:1" }, { "name": "Test 3 - Check help command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175427#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479729#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175427#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479729#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175427#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479729#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175427#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479729#step:11:1", "current_version": "7.9.4", "latest_version": "7.9.5", "next_installed_version": "7.9.5", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.287629+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.500976+00:00", "publish_state": "published" } } diff --git a/data/test-results/brotli.json b/data/test-results/brotli.json index 51407ee7e9..a2c756193b 100644 --- a/data/test-results/brotli.json +++ b/data/test-results/brotli.json @@ -5,10 +5,10 @@ "version": "1.1.0" }, "run": { - "id": "25877423406", + "id": "26658727918", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210325", - "timestamp": "2026-05-14T18:19:10Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516079", + "timestamp": "2026-05-29T19:49:06Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210325#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516079#step:6:1" }, { "name": "Test 2 - Check version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210325#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516079#step:7:1" }, { "name": "Test 3 - Compress and Decompress File", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210325#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516079#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210325#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516079#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210325#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516079#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210325#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516079#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.287870+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.501151+00:00", "publish_state": "published" } } diff --git a/data/test-results/brpc.json b/data/test-results/brpc.json index da5040f611..6ad4eaad8d 100644 --- a/data/test-results/brpc.json +++ b/data/test-results/brpc.json @@ -5,10 +5,10 @@ "version": "1.12.1" }, "run": { - "id": "25877387746", + "id": "26658696365", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083715", - "timestamp": "2026-05-14T18:18:18Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575406534", + "timestamp": "2026-05-29T19:48:24Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 195, + "duration_seconds": 192, "details": [ { "name": "Test 1 - Check Headers", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083715#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575406534#step:7:1" }, { "name": "Test 2 - Check Static Library", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083715#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575406534#step:8:1" }, { "name": "Test 3 - Compile Simple Example", "status": "passed", "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083715#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575406534#step:9:1" }, { "name": "Test 4 - Run Simple Example", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083715#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575406534#step:10:1" }, { "name": "Test 5 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083715#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575406534#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 193, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083715#step:12:1", + "duration_seconds": 190, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575406534#step:12:1", "current_version": "1.12.1", "latest_version": "1.13.0", "next_installed_version": "1.13.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.288064+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.501340+00:00", "publish_state": "published" } } diff --git a/data/test-results/buildah.json b/data/test-results/buildah.json index 9556bd88c7..befce284f9 100644 --- a/data/test-results/buildah.json +++ b/data/test-results/buildah.json @@ -5,10 +5,10 @@ "version": "1.40.0" }, "run": { - "id": "25877435852", + "id": "26658737633", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251946", - "timestamp": "2026-05-14T18:19:17Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549916", + "timestamp": "2026-05-29T19:49:21Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 43, + "duration_seconds": 45, "details": [ { "name": "Test 1 - Validate baseline image manifest and pull", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251946#step:5:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549916#step:5:1" }, { "name": "Test 2 - Inspect pulled baseline image", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251946#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549916#step:6:1" }, { "name": "Test 3 - Check Buildah version", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251946#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549916#step:7:1" }, { "name": "Test 4 - Check Buildah help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251946#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549916#step:8:1" }, { "name": "Test 5 - Run bounded Buildah functional smoke", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251946#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549916#step:9:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251946#step:10:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549916#step:10:1", "current_version": "1.40.0", "latest_version": "latest", "next_installed_version": "latest", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.288263+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.501514+00:00", "publish_state": "published" } } diff --git a/data/test-results/buildkite-agent.json b/data/test-results/buildkite-agent.json index 7284dac29e..4663e2be8a 100644 --- a/data/test-results/buildkite-agent.json +++ b/data/test-results/buildkite-agent.json @@ -5,10 +5,10 @@ "version": "3.89.0" }, "run": { - "id": "25877371674", + "id": "26658681575", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031663", - "timestamp": "2026-05-14T18:17:58Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357986", + "timestamp": "2026-05-29T19:48:08Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031663#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357986#step:6:1" }, { "name": "Test 2 - Check version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031663#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357986#step:7:1" }, { "name": "Test 3 - Check help command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031663#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357986#step:8:1" }, { "name": "Test 4 - Check Configuration", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031663#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357986#step:9:1" }, { "name": "Test 5 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031663#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357986#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031663#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357986#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.288452+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.501688+00:00", "publish_state": "published" } } diff --git a/data/test-results/buildkite-cli.json b/data/test-results/buildkite-cli.json index 1d11b3b7be..704e1ca060 100644 --- a/data/test-results/buildkite-cli.json +++ b/data/test-results/buildkite-cli.json @@ -5,10 +5,10 @@ "version": "3.7.1" }, "run": { - "id": "25877392111", + "id": "26658699892", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096553", - "timestamp": "2026-05-14T18:18:22Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421102", + "timestamp": "2026-05-29T19:48:29Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096553#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421102#step:6:1" }, { "name": "Test 2 - Check version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096553#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421102#step:7:1" }, { "name": "Test 3 - Check help command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096553#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421102#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096553#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421102#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096553#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421102#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096553#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421102#step:11:1", "current_version": "3.7.1", "latest_version": "3.8.0", "next_installed_version": "3.8.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.288661+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.501852+00:00", "publish_state": "published" } } diff --git a/data/test-results/buildkite-elastic-ci-stack-for-aws.json b/data/test-results/buildkite-elastic-ci-stack-for-aws.json index 6e4c8ed98a..3f60197e70 100644 --- a/data/test-results/buildkite-elastic-ci-stack-for-aws.json +++ b/data/test-results/buildkite-elastic-ci-stack-for-aws.json @@ -5,10 +5,10 @@ "version": "v6.30.0" }, "run": { - "id": "25877375677", + "id": "26658685142", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043648", - "timestamp": "2026-05-14T18:18:03Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369850", + "timestamp": "2026-05-29T19:48:11Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 1, + "duration_seconds": 0, "details": [ { "name": "Test 1 - Check repository exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043648#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369850#step:6:1" }, { "name": "Test 2 - Check for packer templates", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043648#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369850#step:7:1" }, { "name": "Test 3 - Parse CloudFormation templates", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043648#step:8:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369850#step:8:1" }, { "name": "Test 4 - Architecture verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043648#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369850#step:9:1" }, { "name": "Test 5 - Validate Arm64 Stack Support", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043648#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369850#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043648#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369850#step:11:1", "current_version": "v6.30.0", "latest_version": "v6.31.0", "next_installed_version": "v6.31.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.288886+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.502016+00:00", "publish_state": "published" } } diff --git a/data/test-results/buildpacks.json b/data/test-results/buildpacks.json index eea4bbc8b3..e1901afad9 100644 --- a/data/test-results/buildpacks.json +++ b/data/test-results/buildpacks.json @@ -5,10 +5,10 @@ "version": "0.37.0" }, "run": { - "id": "25877379982", + "id": "26658688675", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057355", - "timestamp": "2026-05-14T18:18:05Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380674", + "timestamp": "2026-05-29T19:48:15Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 0, + "duration_seconds": 1, "details": [ { "name": "Test 1 - Check binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057355#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380674#step:6:1" }, { "name": "Test 2 - Check version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057355#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380674#step:7:1" }, { "name": "Test 3 - Check help command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057355#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380674#step:8:1" }, { "name": "Test 4 - Run pack report", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057355#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380674#step:9:1" }, { "name": "Test 5 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057355#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380674#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057355#step:11:1", + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380674#step:11:1", "current_version": "0.37.0", "latest_version": "0.38.0", "next_installed_version": "0.38.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.289103+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.502190+00:00", "publish_state": "published" } } diff --git a/data/test-results/busybox.json b/data/test-results/busybox.json index cf62de7add..007cc8216a 100644 --- a/data/test-results/busybox.json +++ b/data/test-results/busybox.json @@ -5,10 +5,10 @@ "version": "1.36.1" }, "run": { - "id": "25877403044", + "id": "26658710721", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140866", - "timestamp": "2026-05-14T18:18:37Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456219", + "timestamp": "2026-05-29T19:48:43Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140866#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456219#step:6:1" }, { "name": "Test 2 - Check version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140866#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456219#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140866#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456219#step:8:1" }, { "name": "Test 4 - Verify architecture", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140866#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456219#step:9:1" }, { "name": "Test 5 - Run BusyBox applets", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140866#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456219#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140866#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456219#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.289285+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.507332+00:00", "publish_state": "published" } } diff --git a/data/test-results/bytebase.json b/data/test-results/bytebase.json index 2e44fb133e..65617b0fac 100644 --- a/data/test-results/bytebase.json +++ b/data/test-results/bytebase.json @@ -5,10 +5,10 @@ "version": "3.6.0" }, "run": { - "id": "25877423406", + "id": "26658727918", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209531", - "timestamp": "2026-05-14T18:19:09Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516081", + "timestamp": "2026-05-29T19:49:06Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 45, + "duration_seconds": 52, "details": [ { "name": "Test 1 - Check image exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209531#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516081#step:6:1" }, { "name": "Test 2 - Start Bytebase current container", "status": "passed", - "duration_seconds": 14, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209531#step:7:1" + "duration_seconds": 16, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516081#step:7:1" }, { "name": "Test 3 - Check current Bytebase HTTP response", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209531#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516081#step:8:1" }, { "name": "Test 4 - Check current version in logs", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209531#step:9:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516081#step:9:1" }, { "name": "Test 5 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209531#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516081#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 31, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209531#step:12:1", + "duration_seconds": 35, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516081#step:12:1", "current_version": "3.6.0", "latest_version": "3.6.1", "next_installed_version": "3.6.1", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.289480+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.507532+00:00", "publish_state": "published" } } diff --git a/data/test-results/caddy.json b/data/test-results/caddy.json index 1138a8f21b..a5ea07e911 100644 --- a/data/test-results/caddy.json +++ b/data/test-results/caddy.json @@ -5,10 +5,10 @@ "version": "v2.9.0" }, "run": { - "id": "25877399008", + "id": "26658707245", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048124768", - "timestamp": "2026-05-14T18:18:31Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445515", + "timestamp": "2026-05-29T19:48:38Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check caddy binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048124768#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445515#step:6:1" }, { "name": "Test 2 - Check caddy version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048124768#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445515#step:7:1" }, { "name": "Test 3 - Check caddy help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048124768#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445515#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048124768#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445515#step:9:1" }, { "name": "Test 5 - Functional Validation (Validate Config)", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048124768#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445515#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048124768#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445515#step:11:1", "current_version": "v2.9.0", "latest_version": "v2.9.1", "next_installed_version": "v2.9.1", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.289663+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.507720+00:00", "publish_state": "published" } } diff --git a/data/test-results/cadvisor.json b/data/test-results/cadvisor.json index d7f41f7b7c..41cf56c314 100644 --- a/data/test-results/cadvisor.json +++ b/data/test-results/cadvisor.json @@ -5,10 +5,10 @@ "version": "v0.52.1" }, "run": { - "id": "25877423406", + "id": "26658727918", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210365", - "timestamp": "2026-05-14T18:19:14Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515959", + "timestamp": "2026-05-29T19:49:08Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 5, + "duration_seconds": 6, "details": [ { "name": "Test 1 - Check cadvisor binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210365#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515959#step:6:1" }, { "name": "Test 2 - Check cadvisor version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210365#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515959#step:7:1" }, { "name": "Test 3 - Check cadvisor help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210365#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515959#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210365#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515959#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 5, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210365#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515959#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210365#step:11:1", + "duration_seconds": 2, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515959#step:11:1", "current_version": "v0.52.1", "latest_version": "0.53.0", "next_installed_version": "0.53.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.289864+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.507892+00:00", "publish_state": "published" } } diff --git a/data/test-results/caffe.json b/data/test-results/caffe.json index 4e56668a8a..b566b8b9a6 100644 --- a/data/test-results/caffe.json +++ b/data/test-results/caffe.json @@ -5,10 +5,10 @@ "version": "1.0" }, "run": { - "id": "25877399008", + "id": "26658707245", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126349", - "timestamp": "2026-05-14T18:18:32Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445313", + "timestamp": "2026-05-29T19:48:39Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 5, "failed": 0, "skipped": 1, - "duration_seconds": 5, + "duration_seconds": 3, "details": [ { "name": "Test 1 - Check Source Directory", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126349#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445313#step:6:1" }, { "name": "Test 2 - Check Include Directory", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126349#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445313#step:7:1" }, { "name": "Test 3 - Check CMakeLists.txt", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126349#step:8:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445313#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126349#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445313#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 5, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126349#step:10:1" + "duration_seconds": 3, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445313#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "skipped", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126349#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445313#step:11:1", "current_version": "1.0", "latest_version": "1.0", "next_installed_version": "not_installed", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "skipped", "regression_decision": "no_newer_stable_available", - "production_refreshed_at": "2026-05-14T19:37:17.290076+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.508057+00:00", "publish_state": "published" } } diff --git a/data/test-results/calico.json b/data/test-results/calico.json index 7946135d6d..3c3f1fe2df 100644 --- a/data/test-results/calico.json +++ b/data/test-results/calico.json @@ -5,10 +5,10 @@ "version": "v3.29.2" }, "run": { - "id": "25877363365", + "id": "26658674448", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000840", - "timestamp": "2026-05-14T18:17:47Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334477", + "timestamp": "2026-05-29T19:47:57Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 1, + "duration_seconds": 2, "details": [ { "name": "Test 1 - Check calicoctl binary architecture", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000840#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334477#step:6:1" }, { "name": "Test 2 - Check calicoctl help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000840#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334477#step:7:1" }, { "name": "Test 3 - Check Version", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000840#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334477#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000840#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334477#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000840#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334477#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000840#step:11:1", + "duration_seconds": 2, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334477#step:11:1", "current_version": "v3.29.2", "latest_version": "v3.29.3", "next_installed_version": "v3.29.3", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.290285+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.508222+00:00", "publish_state": "published" } } diff --git a/data/test-results/camelk.json b/data/test-results/camelk.json index b80e6e0fd0..db1195b359 100644 --- a/data/test-results/camelk.json +++ b/data/test-results/camelk.json @@ -5,10 +5,10 @@ "version": "v2.5.1" }, "run": { - "id": "25877403044", + "id": "26658710721", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048141038", - "timestamp": "2026-05-14T18:18:37Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456387", + "timestamp": "2026-05-29T19:48:43Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check kamel binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048141038#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456387#step:6:1" }, { "name": "Test 2 - Check kamel version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048141038#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456387#step:7:1" }, { "name": "Test 3 - Check kamel help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048141038#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456387#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048141038#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456387#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048141038#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456387#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048141038#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456387#step:11:1", "current_version": "v2.5.1", "latest_version": "v2.6.0", "next_installed_version": "v2.6.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.290484+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.508422+00:00", "publish_state": "published" } } diff --git a/data/test-results/canonical-ceph.json b/data/test-results/canonical-ceph.json index 26f9e07d1e..29404d0318 100644 --- a/data/test-results/canonical-ceph.json +++ b/data/test-results/canonical-ceph.json @@ -5,10 +5,10 @@ "version": "19.2.3-0ubuntu0.24.04.3" }, "run": { - "id": "25877367704", + "id": "26658677990", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026680", - "timestamp": "2026-05-14T18:17:55Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347730", + "timestamp": "2026-05-29T19:48:03Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Install Canonical Ceph client package", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026680#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347730#step:8:1" }, { "name": "Test 2 - Validate dashboard metadata and supported baseline", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026680#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347730#step:9:1" }, { "name": "Test 3 - Verify Ceph client commands and package files", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026680#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347730#step:10:1" }, { "name": "Test 4 - Verify Arm64 runner and package architecture", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026680#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347730#step:11:1" }, { "name": "Test 5 - Run bounded Ceph client smoke", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026680#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347730#step:12:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026680#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347730#step:13:1" } ] }, @@ -72,7 +72,7 @@ "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", "regression_status": "passed", - "production_refreshed_at": "2026-05-14T19:37:17.290704+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.508596+00:00", "publish_state": "published" } } diff --git a/data/test-results/canu.json b/data/test-results/canu.json index b9fd052a23..e309710c66 100644 --- a/data/test-results/canu.json +++ b/data/test-results/canu.json @@ -5,10 +5,10 @@ "version": "2.2" }, "run": { - "id": "25877375677", + "id": "26658685142", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044668", - "timestamp": "2026-05-14T18:18:02Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370917", + "timestamp": "2026-05-29T19:48:10Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Binary Exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044668#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370917#step:6:1" }, { "name": "Test 2 - Check Version", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044668#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370917#step:7:1" }, { "name": "Test 3 - Check Help Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044668#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370917#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044668#step:9:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370917#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044668#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370917#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044668#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370917#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.290942+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.508761+00:00", "publish_state": "published" } } diff --git a/data/test-results/cashpack.json b/data/test-results/cashpack.json index f22db133d5..090636d60f 100644 --- a/data/test-results/cashpack.json +++ b/data/test-results/cashpack.json @@ -5,10 +5,10 @@ "version": "0.1" }, "run": { - "id": "25877419588", + "id": "26658724696", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192231", - "timestamp": "2026-05-14T18:18:58Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503938", + "timestamp": "2026-05-29T19:49:02Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check built library artifacts", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192231#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503938#step:6:1" }, { "name": "Test 2 - Check public headers", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192231#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503938#step:7:1" }, { "name": "Test 3 - Run upstream test suite", "status": "passed", "duration_seconds": 3, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192231#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503938#step:8:1" }, { "name": "Test 4 - Check test binaries", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192231#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503938#step:9:1" }, { "name": "Test 5 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192231#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503938#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "skipped", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192231#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503938#step:11:1", "current_version": "0.1", "latest_version": "0.1", "next_installed_version": "not_installed", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "skipped", "regression_decision": "no_newer_stable_available", - "production_refreshed_at": "2026-05-14T19:37:17.291228+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.509024+00:00", "publish_state": "published" } } diff --git a/data/test-results/cassandra.json b/data/test-results/cassandra.json index 4c6c9c6835..2dffe20e77 100644 --- a/data/test-results/cassandra.json +++ b/data/test-results/cassandra.json @@ -5,10 +5,10 @@ "version": "5.0.8" }, "run": { - "id": "25877355625", + "id": "26658667828", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976732", - "timestamp": "2026-05-14T18:17:37Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308782", + "timestamp": "2026-05-29T19:47:49Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 41, + "duration_seconds": 40, "details": [ { "name": "Test 1 - Check binaries exist", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976732#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308782#step:7:1" }, { "name": "Test 2 - Check version command", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976732#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308782#step:8:1" }, { "name": "Test 3 - Check nodetool help", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976732#step:9:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308782#step:9:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976732#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308782#step:10:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 39, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976732#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308782#step:11:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976732#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308782#step:12:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.291436+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.509203+00:00", "publish_state": "published" } } diff --git a/data/test-results/catboost.json b/data/test-results/catboost.json index 5d169989cf..a010af7089 100644 --- a/data/test-results/catboost.json +++ b/data/test-results/catboost.json @@ -5,10 +5,10 @@ "version": "1.1.1" }, "run": { - "id": "25877367704", + "id": "26658677990", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026793", - "timestamp": "2026-05-14T18:18:04Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347565", + "timestamp": "2026-05-29T19:48:14Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 62, + "duration_seconds": 56, "details": [ { "name": "Test 1 - Check package-specific baseline markers", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026793#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347565#step:9:1" }, { "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026793#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347565#step:10:1" }, { "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026793#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347565#step:11:1" }, { "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026793#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347565#step:12:1" }, { "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", "duration_seconds": 7, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026793#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347565#step:13:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 62, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026793#step:14:1", + "duration_seconds": 56, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347565#step:14:1", "current_version": "1.1.1", "latest_version": "1.2.10", "next_installed_version": "1.2.10", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.291634+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.509425+00:00", "publish_state": "published" } } diff --git a/data/test-results/catj.json b/data/test-results/catj.json index f4f7e8396a..fe6ec11278 100644 --- a/data/test-results/catj.json +++ b/data/test-results/catj.json @@ -5,10 +5,10 @@ "version": "1.0.4" }, "run": { - "id": "25877387746", + "id": "26658696365", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083665", - "timestamp": "2026-05-14T18:18:15Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575406578", + "timestamp": "2026-05-29T19:48:25Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Binary", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083665#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575406578#step:7:1" }, { "name": "Test 2 - Run Help", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083665#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575406578#step:8:1" }, { "name": "Test 3 - Process JSON File", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083665#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575406578#step:9:1" }, { "name": "Test 4 - Check Nested JSON", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083665#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575406578#step:10:1" }, { "name": "Test 5 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083665#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575406578#step:11:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083665#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575406578#step:12:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.291835+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.509614+00:00", "publish_state": "published" } } diff --git a/data/test-results/cccl.json b/data/test-results/cccl.json index f23e1a0773..a6d59951f1 100644 --- a/data/test-results/cccl.json +++ b/data/test-results/cccl.json @@ -5,10 +5,10 @@ "version": "0.3.0" }, "run": { - "id": "25877371674", + "id": "26658681575", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031859", - "timestamp": "2026-05-14T18:18:00Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357983", + "timestamp": "2026-05-29T19:48:07Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 9, + "duration_seconds": 5, "details": [ { "name": "Test 1 - Check package-specific baseline markers", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031859#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357983#step:8:1" }, { "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031859#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357983#step:9:1" }, { "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031859#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357983#step:10:1" }, { "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031859#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357983#step:11:1" }, { "name": "Test 5 - Run scoped Arm preflight proof", "status": "passed", - "duration_seconds": 5, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031859#step:12:1" + "duration_seconds": 2, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357983#step:12:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 4, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031859#step:13:1", + "duration_seconds": 3, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357983#step:13:1", "current_version": "0.3.0", "latest_version": "3.3.3", "next_installed_version": "3.3.3", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.292052+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.509787+00:00", "publish_state": "published" } } diff --git a/data/test-results/celery.json b/data/test-results/celery.json index f43ce7ac8e..e627a72fc9 100644 --- a/data/test-results/celery.json +++ b/data/test-results/celery.json @@ -5,10 +5,10 @@ "version": "5.6.3" }, "run": { - "id": "25877406767", + "id": "26658714432", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155476", - "timestamp": "2026-05-14T18:18:42Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469251", + "timestamp": "2026-05-29T19:48:48Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Binary", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155476#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469251#step:7:1" }, { "name": "Test 2 - Run Help", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155476#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469251#step:8:1" }, { "name": "Test 3 - Create Simple Task", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155476#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469251#step:9:1" }, { "name": "Test 4 - Inspect Worker", "status": "passed", "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155476#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469251#step:10:1" }, { "name": "Test 5 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155476#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469251#step:11:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155476#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469251#step:12:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.292234+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.509971+00:00", "publish_state": "published" } } diff --git a/data/test-results/centos.json b/data/test-results/centos.json index 8c85512dd4..0448f10698 100644 --- a/data/test-results/centos.json +++ b/data/test-results/centos.json @@ -5,10 +5,10 @@ "version": "9" }, "run": { - "id": "25877359516", + "id": "26658670904", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991352", - "timestamp": "2026-05-14T18:17:47Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321851", + "timestamp": "2026-05-29T19:47:53Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 31, + "duration_seconds": 28, "details": [ { "name": "Test 1 - Check Image Availability", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991352#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321851#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991352#step:7:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321851#step:7:1" }, { "name": "Test 3 - Check Help Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991352#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321851#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991352#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321851#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 13, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991352#step:10:1" + "duration_seconds": 11, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321851#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 18, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991352#step:11:1", + "duration_seconds": 16, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321851#step:11:1", "current_version": "9", "latest_version": "10", "next_installed_version": "10", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.292441+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.510151+00:00", "publish_state": "published" } } diff --git a/data/test-results/ceph.json b/data/test-results/ceph.json index 687055a451..6db28bd786 100644 --- a/data/test-results/ceph.json +++ b/data/test-results/ceph.json @@ -5,10 +5,10 @@ "version": "19.2.3" }, "run": { - "id": "25877355625", + "id": "26658667828", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976615", - "timestamp": "2026-05-14T18:17:38Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308816", + "timestamp": "2026-05-29T19:47:49Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -25,38 +25,38 @@ { "name": "Test 1 - Check ceph client binary exists", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976615#step:6:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308816#step:6:1" }, { "name": "Test 2 - Check cephadm binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976615#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308816#step:7:1" }, { "name": "Test 3 - Check Ceph version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976615#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308816#step:8:1" }, { "name": "Test 4 - Check rados binary (RADOS object store)", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976615#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308816#step:9:1" }, { "name": "Test 5 - Check rbd binary (RADOS Block Device)", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976615#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308816#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976615#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308816#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.292636+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.510349+00:00", "publish_state": "published" } } diff --git a/data/test-results/cert-manager.json b/data/test-results/cert-manager.json index d7a2730018..61f6652b97 100644 --- a/data/test-results/cert-manager.json +++ b/data/test-results/cert-manager.json @@ -5,10 +5,10 @@ "version": "2.1.0" }, "run": { - "id": "25877367704", + "id": "26658677990", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027152", - "timestamp": "2026-05-14T18:17:56Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347667", + "timestamp": "2026-05-29T19:48:04Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Binary", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027152#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347667#step:7:1" }, { "name": "Test 2 - Run Help", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027152#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347667#step:8:1" }, { "name": "Test 3 - Check Client Version", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027152#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347667#step:9:1" }, { "name": "Test 4 - Check Completion", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027152#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347667#step:10:1" }, { "name": "Test 5 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027152#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347667#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027152#step:12:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347667#step:12:1", "current_version": "2.1.0", "latest_version": "2.1.1", "next_installed_version": "2.1.1", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.292867+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.510521+00:00", "publish_state": "published" } } diff --git a/data/test-results/cf-cli.json b/data/test-results/cf-cli.json index f5e5c432fb..7a8c643926 100644 --- a/data/test-results/cf-cli.json +++ b/data/test-results/cf-cli.json @@ -5,10 +5,10 @@ "version": "8.10.0" }, "run": { - "id": "25877375677", + "id": "26658685142", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044636", - "timestamp": "2026-05-14T18:18:04Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370615", + "timestamp": "2026-05-29T19:48:11Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 0, + "duration_seconds": 1, "details": [ { "name": "Test 1 - Check cf binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044636#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370615#step:6:1" }, { "name": "Test 2 - Check cf-cli version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044636#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370615#step:7:1" }, { "name": "Test 3 - Check cf-cli help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044636#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370615#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044636#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370615#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044636#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370615#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044636#step:11:1", + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370615#step:11:1", "current_version": "8.10.0", "latest_version": "8.11.0", "next_installed_version": "8.11.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.293053+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.510692+00:00", "publish_state": "published" } } diff --git a/data/test-results/cgal.json b/data/test-results/cgal.json index 8449d2eb9b..ce61752039 100644 --- a/data/test-results/cgal.json +++ b/data/test-results/cgal.json @@ -5,10 +5,10 @@ "version": "5.6" }, "run": { - "id": "25877387746", + "id": "26658696365", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048085214", - "timestamp": "2026-05-14T18:18:15Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407673", + "timestamp": "2026-05-29T19:48:24Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check libcgal-dev handles", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048085214#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407673#step:6:1" }, { "name": "Test 2 - Check version header existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048085214#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407673#step:7:1" }, { "name": "Test 3 - Check basic header existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048085214#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407673#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048085214#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407673#step:9:1" }, { "name": "Test 5 - Basic Library Validation", "status": "passed", "duration_seconds": 7, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048085214#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407673#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048085214#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407673#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.293277+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.511494+00:00", "publish_state": "published" } } diff --git a/data/test-results/chaos-mesh.json b/data/test-results/chaos-mesh.json index 3c8dd200f2..9a2e066b76 100644 --- a/data/test-results/chaos-mesh.json +++ b/data/test-results/chaos-mesh.json @@ -5,10 +5,10 @@ "version": "2.7.1" }, "run": { - "id": "25877419588", + "id": "26658724696", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192665", - "timestamp": "2026-05-14T18:18:58Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504104", + "timestamp": "2026-05-29T19:49:02Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check binary", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192665#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504104#step:8:1" }, { "name": "Test 2 - Run help", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192665#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504104#step:9:1" }, { "name": "Test 3 - Check completion generation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192665#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504104#step:10:1" }, { "name": "Test 4 - Check debug subcommand availability", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192665#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504104#step:11:1" }, { "name": "Test 5 - Architecture verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192665#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504104#step:12:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 4, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192665#step:13:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504104#step:13:1", "current_version": "2.7.1", "latest_version": "2.7.2", "next_installed_version": "2.7.2", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.293488+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.511683+00:00", "publish_state": "published" } } diff --git a/data/test-results/chaossearch.json b/data/test-results/chaossearch.json index 1358461efa..dbf1f01228 100644 --- a/data/test-results/chaossearch.json +++ b/data/test-results/chaossearch.json @@ -5,10 +5,10 @@ "version": "1.0.20" }, "run": { - "id": "25877379982", + "id": "26658688675", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057425", - "timestamp": "2026-05-14T18:18:05Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380806", + "timestamp": "2026-05-29T19:48:15Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 1, + "duration_seconds": 0, "details": [ { "name": "Test 1 - Check chaossearch binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057425#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380806#step:6:1" }, { "name": "Test 2 - Validate with Terraform init", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057425#step:7:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380806#step:7:1" }, { "name": "Test 3 - Check provider binary info", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057425#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380806#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057425#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380806#step:9:1" }, { "name": "Test 5 - Provider startup message", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057425#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380806#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057425#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380806#step:11:1", "current_version": "1.0.20", "latest_version": "1.0.21", "next_installed_version": "1.0.21", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.293702+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.511859+00:00", "publish_state": "published" } } diff --git a/data/test-results/checkov.json b/data/test-results/checkov.json index 06d191ba3b..ffbc99e339 100644 --- a/data/test-results/checkov.json +++ b/data/test-results/checkov.json @@ -2,13 +2,13 @@ "schema_version": "2.0", "package": { "name": "Checkov", - "version": "3.2.529" + "version": "3.2.530" }, "run": { - "id": "25877392111", + "id": "26658699892", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096520", - "timestamp": "2026-05-14T18:18:23Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421020", + "timestamp": "2026-05-29T19:48:30Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 21, + "duration_seconds": 10, "details": [ { "name": "Test 1 - Check Binary", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096520#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421020#step:7:1" }, { "name": "Test 2 - Run Help", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096520#step:8:1" + "duration_seconds": 2, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421020#step:8:1" }, { "name": "Test 3 - Scan Terraform File", "status": "passed", - "duration_seconds": 16, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096520#step:9:1" + "duration_seconds": 5, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421020#step:9:1" }, { "name": "Test 4 - List Checks", "status": "passed", - "duration_seconds": 4, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096520#step:10:1" + "duration_seconds": 3, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421020#step:10:1" }, { "name": "Test 5 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096520#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421020#step:11:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096520#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421020#step:12:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.293937+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.512027+00:00", "publish_state": "published" } } diff --git a/data/test-results/chef-infra.json b/data/test-results/chef-infra.json index 9e74fe0778..3eb609226b 100644 --- a/data/test-results/chef-infra.json +++ b/data/test-results/chef-infra.json @@ -5,10 +5,10 @@ "version": "18.8.54" }, "run": { - "id": "25877427741", + "id": "26658731236", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217841", - "timestamp": "2026-05-14T18:19:05Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575528463", + "timestamp": "2026-05-29T19:49:11Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 11, + "duration_seconds": 9, "details": [ { "name": "Test 1 - Check Binary", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217841#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575528463#step:7:1" }, { "name": "Test 2 - Run Help", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217841#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575528463#step:8:1" }, { "name": "Test 3 - Check Ohai", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217841#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575528463#step:9:1" }, { "name": "Test 4 - Local Mode Run", "status": "passed", - "duration_seconds": 10, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217841#step:10:1" + "duration_seconds": 8, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575528463#step:10:1" }, { "name": "Test 5 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217841#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575528463#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 6, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217841#step:12:1", + "duration_seconds": 7, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575528463#step:12:1", "current_version": "18.8.54", "latest_version": "18.10.17", "next_installed_version": "18.10.17", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.294129+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.512193+00:00", "publish_state": "published" } } diff --git a/data/test-results/chiaki-ng.json b/data/test-results/chiaki-ng.json index 2845cfa5aa..867657159b 100644 --- a/data/test-results/chiaki-ng.json +++ b/data/test-results/chiaki-ng.json @@ -5,10 +5,10 @@ "version": "1.9.3" }, "run": { - "id": "25877371674", + "id": "26658681575", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031974", - "timestamp": "2026-05-14T18:17:59Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358028", + "timestamp": "2026-05-29T19:48:08Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 8, + "duration_seconds": 14, "details": [ { "name": "Test 1 - Check package-specific baseline markers", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031974#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358028#step:8:1" }, { "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031974#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358028#step:9:1" }, { "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031974#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358028#step:10:1" }, { "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031974#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358028#step:11:1" }, { "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "duration_seconds": 3, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031974#step:12:1" + "duration_seconds": 6, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358028#step:12:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 5, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031974#step:13:1", + "duration_seconds": 9, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358028#step:13:1", "current_version": "1.9.3", "latest_version": "1.10.0", "next_installed_version": "1.10.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.294334+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.512399+00:00", "publish_state": "published" } } diff --git a/data/test-results/chisel-operator.json b/data/test-results/chisel-operator.json index c192ce3d62..193009ce2f 100644 --- a/data/test-results/chisel-operator.json +++ b/data/test-results/chisel-operator.json @@ -5,10 +5,10 @@ "version": "0.5.0" }, "run": { - "id": "25877367704", + "id": "26658677990", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027186", - "timestamp": "2026-05-14T18:17:56Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347684", + "timestamp": "2026-05-29T19:48:02Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 333, + "duration_seconds": 336, "details": [ { "name": "Test 1 - Check Binary", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027186#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347684#step:8:1" }, { "name": "Test 2 - Run Help/Version", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027186#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347684#step:9:1" }, { "name": "Test 3 - Check Dockerfile", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027186#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347684#step:10:1" }, { "name": "Test 4 - Check Manifests", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027186#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347684#step:11:1" }, { "name": "Test 5 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027186#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347684#step:12:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 333, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027186#step:13:1", + "duration_seconds": 336, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347684#step:13:1", "current_version": "0.5.0", "latest_version": "0.5.1", "next_installed_version": "0.5.1", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.294535+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.512575+00:00", "publish_state": "published" } } diff --git a/data/test-results/chroma.json b/data/test-results/chroma.json index f3737dee7c..5ba3839601 100644 --- a/data/test-results/chroma.json +++ b/data/test-results/chroma.json @@ -5,10 +5,10 @@ "version": "1.5.9" }, "run": { - "id": "25877379982", + "id": "26658688675", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056487", - "timestamp": "2026-05-14T18:18:06Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575379781", + "timestamp": "2026-05-29T19:48:15Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check package metadata", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056487#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575379781#step:6:1" }, { "name": "Test 2 - Check version metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056487#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575379781#step:7:1" }, { "name": "Test 3 - Check module import", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056487#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575379781#step:8:1" }, { "name": "Test 4 - Verify architecture", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056487#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575379781#step:9:1" }, { "name": "Test 5 - Functional add and query", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056487#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575379781#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056487#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575379781#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.294733+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.512748+00:00", "publish_state": "published" } } diff --git a/data/test-results/chromium.json b/data/test-results/chromium.json index 67878019a5..d4e3001283 100644 --- a/data/test-results/chromium.json +++ b/data/test-results/chromium.json @@ -5,10 +5,10 @@ "version": "2:1snap1" }, "run": { - "id": "25877371674", + "id": "26658681575", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031675", - "timestamp": "2026-05-14T18:17:58Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358194", + "timestamp": "2026-05-29T19:48:08Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031675#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358194#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031675#step:7:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358194#step:7:1" }, { "name": "Test 3 - Check Headless Mode", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031675#step:8:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358194#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031675#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358194#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 3, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031675#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358194#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031675#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358194#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.294952+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.512924+00:00", "publish_state": "published" } } diff --git a/data/test-results/cilium.json b/data/test-results/cilium.json index 40e1b561c3..44481011c7 100644 --- a/data/test-results/cilium.json +++ b/data/test-results/cilium.json @@ -5,10 +5,10 @@ "version": "0.18.0" }, "run": { - "id": "25877415436", + "id": "26658721315", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180853", - "timestamp": "2026-05-14T18:18:51Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491632", + "timestamp": "2026-05-29T19:48:57Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 3, + "duration_seconds": 2, "details": [ { "name": "Test 1 - Check Binary", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180853#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491632#step:7:1" }, { "name": "Test 2 - Run Help", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180853#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491632#step:8:1" }, { "name": "Test 3 - Check Client Version", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180853#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491632#step:9:1" }, { "name": "Test 4 - Check Completion", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180853#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491632#step:10:1" }, { "name": "Test 5 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180853#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491632#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 3, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180853#step:12:1", + "duration_seconds": 2, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491632#step:12:1", "current_version": "0.18.0", "latest_version": "0.18.1", "next_installed_version": "0.18.1", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.295151+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.515234+00:00", "publish_state": "published" } } diff --git a/data/test-results/cinder.json b/data/test-results/cinder.json index e84fb3d613..8442976adf 100644 --- a/data/test-results/cinder.json +++ b/data/test-results/cinder.json @@ -5,10 +5,10 @@ "version": "24.2.0" }, "run": { - "id": "25877371674", + "id": "26658681575", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031017", - "timestamp": "2026-05-14T18:18:00Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357335", + "timestamp": "2026-05-29T19:48:07Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 3, + "duration_seconds": 2, "details": [ { "name": "Test 1 - Check Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031017#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357335#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031017#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357335#step:7:1" }, { "name": "Test 3 - Check Help Output", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031017#step:8:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357335#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031017#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357335#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031017#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357335#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031017#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357335#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.295366+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.515531+00:00", "publish_state": "published" } } diff --git a/data/test-results/circleci_cli.json b/data/test-results/circleci_cli.json index 37550c84b0..bb99e47e4a 100644 --- a/data/test-results/circleci_cli.json +++ b/data/test-results/circleci_cli.json @@ -5,10 +5,10 @@ "version": "0.1.31425" }, "run": { - "id": "25877363365", + "id": "26658674448", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001041", - "timestamp": "2026-05-14T18:17:48Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333759", + "timestamp": "2026-05-29T19:47:55Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 1, + "duration_seconds": 0, "details": [ { "name": "Test 1 - Check circleci_cli binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001041#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333759#step:6:1" }, { "name": "Test 2 - Check circleci_cli version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001041#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333759#step:7:1" }, { "name": "Test 3 - Check circleci_cli help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001041#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333759#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001041#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333759#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001041#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333759#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001041#step:11:1", + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333759#step:11:1", "current_version": "0.1.31425", "latest_version": "0.1.31543", "next_installed_version": "0.1.31543", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.295564+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.515788+00:00", "publish_state": "published" } } diff --git a/data/test-results/cjson.json b/data/test-results/cjson.json index 4d80b0f32c..94ec49a337 100644 --- a/data/test-results/cjson.json +++ b/data/test-results/cjson.json @@ -5,10 +5,10 @@ "version": "1.7.18" }, "run": { - "id": "25877415436", + "id": "26658721315", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180600", - "timestamp": "2026-05-14T18:18:50Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491575", + "timestamp": "2026-05-29T19:48:56Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Header File", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180600#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491575#step:7:1" }, { "name": "Test 2 - Check version metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180600#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491575#step:8:1" }, { "name": "Test 3 - Check pkg-config flags", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180600#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491575#step:9:1" }, { "name": "Test 4 - Verify architecture", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180600#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491575#step:10:1" }, { "name": "Test 5 - Compile and run test program", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180600#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491575#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 5, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180600#step:12:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491575#step:12:1", "current_version": "1.7.18", "latest_version": "1.7.19", "next_installed_version": "1.7.19", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.295756+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.515979+00:00", "publish_state": "published" } } diff --git a/data/test-results/clang.json b/data/test-results/clang.json index a3418a5596..634d83c64b 100644 --- a/data/test-results/clang.json +++ b/data/test-results/clang.json @@ -5,10 +5,10 @@ "version": "18.1.3" }, "run": { - "id": "25877419588", + "id": "26658724696", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192281", - "timestamp": "2026-05-14T18:18:58Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503984", + "timestamp": "2026-05-29T19:49:02Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Binary", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192281#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503984#step:6:1" }, { "name": "Test 2 - Check version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192281#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503984#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192281#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503984#step:8:1" }, { "name": "Test 4 - Verify architecture", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192281#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503984#step:9:1" }, { "name": "Test 5 - Compile and run C and C++ programs", "status": "passed", "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192281#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503984#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192281#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503984#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.296062+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.516265+00:00", "publish_state": "published" } } diff --git a/data/test-results/clara-viz.json b/data/test-results/clara-viz.json index 64afec0e7b..17353516dc 100644 --- a/data/test-results/clara-viz.json +++ b/data/test-results/clara-viz.json @@ -5,10 +5,10 @@ "version": "0.3.0" }, "run": { - "id": "25877371674", + "id": "26658681575", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031626", - "timestamp": "2026-05-14T18:17:59Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358107", + "timestamp": "2026-05-29T19:48:07Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 25, + "duration_seconds": 26, "details": [ { "name": "Test 1 - Check package-specific baseline markers", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031626#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358107#step:8:1" }, { "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031626#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358107#step:9:1" }, { "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031626#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358107#step:10:1" }, { "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031626#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358107#step:11:1" }, { "name": "Test 5 - Run scoped Arm preflight proof", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031626#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358107#step:12:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 25, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031626#step:13:1", + "duration_seconds": 26, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358107#step:13:1", "current_version": "0.3.0", "latest_version": "0.4.2", "next_installed_version": "0.4.2", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.296306+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.516464+00:00", "publish_state": "published" } } diff --git a/data/test-results/clearml-open-source.json b/data/test-results/clearml-open-source.json index 605bbc8bf9..0a0850f8f6 100644 --- a/data/test-results/clearml-open-source.json +++ b/data/test-results/clearml-open-source.json @@ -5,10 +5,10 @@ "version": "2.1.7" }, "run": { - "id": "25877392111", + "id": "26658699892", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096590", - "timestamp": "2026-05-14T18:18:23Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420661", + "timestamp": "2026-05-29T19:48:30Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 1, + "duration_seconds": 2, "details": [ { "name": "Test 1 - Check ClearML Import", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096590#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420661#step:6:1" }, { "name": "Test 2 - Check pip package info", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096590#step:7:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420661#step:7:1" }, { "name": "Test 3 - Check clearml-task binary (optional)", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096590#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420661#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096590#step:9:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420661#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096590#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420661#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096590#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420661#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.296519+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.516654+00:00", "publish_state": "published" } } diff --git a/data/test-results/clickhouse.json b/data/test-results/clickhouse.json index 97b5f950ff..9a40ea05d0 100644 --- a/data/test-results/clickhouse.json +++ b/data/test-results/clickhouse.json @@ -5,10 +5,10 @@ "version": "25.1.7.20" }, "run": { - "id": "25877359516", + "id": "26658670904", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991371", - "timestamp": "2026-05-14T18:17:43Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321885", + "timestamp": "2026-05-29T19:47:53Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check binary", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991371#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321885#step:7:1" }, { "name": "Test 2 - Run help", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991371#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321885#step:8:1" }, { "name": "Test 3 - Run local query", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991371#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321885#step:9:1" }, { "name": "Test 4 - Simple calculation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991371#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321885#step:10:1" }, { "name": "Test 5 - Architecture verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991371#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321885#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 4, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991371#step:12:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321885#step:12:1", "current_version": "25.1.7.20", "latest_version": "25.1.8.25", "next_installed_version": "25.1.8.25", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.296709+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.517528+00:00", "publish_state": "published" } } diff --git a/data/test-results/cloud-custodian.json b/data/test-results/cloud-custodian.json index 0b8f8c031a..0e9cd155f8 100644 --- a/data/test-results/cloud-custodian.json +++ b/data/test-results/cloud-custodian.json @@ -2,13 +2,13 @@ "schema_version": "2.0", "package": { "name": "Cloud Custodian", - "version": "0.9.50" + "version": "0.9.51" }, "run": { - "id": "25877363365", + "id": "26658674448", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001093", - "timestamp": "2026-05-14T18:17:47Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334735", + "timestamp": "2026-05-29T19:47:57Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Binary", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001093#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334735#step:7:1" }, { "name": "Test 2 - Run Help", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001093#step:8:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334735#step:8:1" }, { "name": "Test 3 - Check Schema", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001093#step:9:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334735#step:9:1" }, { "name": "Test 4 - Validate Policy", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001093#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334735#step:10:1" }, { "name": "Test 5 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001093#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334735#step:11:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001093#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334735#step:12:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.296947+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.517733+00:00", "publish_state": "published" } } diff --git a/data/test-results/cloud-hypervisor.json b/data/test-results/cloud-hypervisor.json index f540dd2664..86b64e114a 100644 --- a/data/test-results/cloud-hypervisor.json +++ b/data/test-results/cloud-hypervisor.json @@ -5,10 +5,10 @@ "version": "47.0.0" }, "run": { - "id": "25877359516", + "id": "26658670904", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991013", - "timestamp": "2026-05-14T18:17:43Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321677", + "timestamp": "2026-05-29T19:47:52Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 0, + "duration_seconds": 1, "details": [ { "name": "Test 1 - Check Binary", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991013#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321677#step:7:1" }, { "name": "Test 2 - Run Help", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991013#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321677#step:8:1" }, { "name": "Test 3 - Run Version Probe", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991013#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321677#step:9:1" }, { "name": "Test 4 - Check Seccomp Option", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991013#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321677#step:10:1" }, { "name": "Test 5 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991013#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321677#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991013#step:12:1", + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321677#step:12:1", "current_version": "47.0.0", "latest_version": "48.0", "next_installed_version": "48.0.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.297143+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.517909+00:00", "publish_state": "published" } } diff --git a/data/test-results/cloud-native-stack.json b/data/test-results/cloud-native-stack.json index b702cd9fed..ed20adea23 100644 --- a/data/test-results/cloud-native-stack.json +++ b/data/test-results/cloud-native-stack.json @@ -5,10 +5,10 @@ "version": "8.0" }, "run": { - "id": "25877375677", + "id": "26658685142", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045190", - "timestamp": "2026-05-14T18:18:03Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370484", + "timestamp": "2026-05-29T19:48:11Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check package-specific baseline markers", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045190#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370484#step:8:1" }, { "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045190#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370484#step:9:1" }, { "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045190#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370484#step:10:1" }, { "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045190#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370484#step:11:1" }, { "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045190#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370484#step:12:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045190#step:13:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370484#step:13:1", "current_version": "8.0", "latest_version": "25.12.0", "next_installed_version": "25.12.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.297341+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.518087+00:00", "publish_state": "published" } } diff --git a/data/test-results/cloudevents-go.json b/data/test-results/cloudevents-go.json index 04f899d55b..d7114d1aa2 100644 --- a/data/test-results/cloudevents-go.json +++ b/data/test-results/cloudevents-go.json @@ -5,10 +5,10 @@ "version": "v2.16.2" }, "run": { - "id": "25877399008", + "id": "26658707245", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126195", - "timestamp": "2026-05-14T18:18:31Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445316", + "timestamp": "2026-05-29T19:48:38Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check module dependency", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126195#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445316#step:7:1" }, { "name": "Test 2 - Check installed version", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126195#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445316#step:8:1" }, { "name": "Test 3 - Render package docs", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126195#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445316#step:9:1" }, { "name": "Test 4 - Verify architecture", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126195#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445316#step:10:1" }, { "name": "Test 5 - Create, validate, build, and run an event", "status": "passed", "duration_seconds": 9, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126195#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445316#step:11:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126195#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445316#step:12:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.297526+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.518297+00:00", "publish_state": "published" } } diff --git a/data/test-results/cloudevents-java.json b/data/test-results/cloudevents-java.json index 612f69874f..f84c10dab9 100644 --- a/data/test-results/cloudevents-java.json +++ b/data/test-results/cloudevents-java.json @@ -5,10 +5,10 @@ "version": "2.5.0" }, "run": { - "id": "25877383844", + "id": "26658692522", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071824", - "timestamp": "2026-05-14T18:18:13Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394697", + "timestamp": "2026-05-29T19:48:21Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 25, + "duration_seconds": 23, "details": [ { "name": "Test 1 - Check Maven and Java binaries", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071824#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394697#step:8:1" }, { "name": "Test 2 - Check dependency version in pom", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071824#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394697#step:9:1" }, { "name": "Test 3 - Check dependency tree", "status": "passed", - "duration_seconds": 19, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071824#step:10:1" + "duration_seconds": 18, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394697#step:10:1" }, { "name": "Test 4 - Verify architecture", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071824#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394697#step:11:1" }, { "name": "Test 5 - Build and run CloudEvent example", "status": "passed", - "duration_seconds": 6, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071824#step:12:1" + "duration_seconds": 5, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394697#step:12:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071824#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394697#step:13:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.297732+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.518483+00:00", "publish_state": "published" } } diff --git a/data/test-results/cloudevents-python.json b/data/test-results/cloudevents-python.json index 68b9fe19c5..62d9d10e54 100644 --- a/data/test-results/cloudevents-python.json +++ b/data/test-results/cloudevents-python.json @@ -2,13 +2,13 @@ "schema_version": "2.0", "package": { "name": "Cloudevents-Python", - "version": "2.0.0" + "version": "2.1.0" }, "run": { - "id": "25877363365", + "id": "26658674448", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000061", - "timestamp": "2026-05-14T18:17:47Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333838", + "timestamp": "2026-05-29T19:47:55Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 1, + "duration_seconds": 0, "details": [ { "name": "Test 1 - Import Check", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000061#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333838#step:7:1" }, { "name": "Test 2 - Build CloudEvent object", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000061#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333838#step:8:1" }, { "name": "Test 3 - Binary HTTP serialization", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000061#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333838#step:9:1" }, { "name": "Test 4 - Structured HTTP serialization", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000061#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333838#step:10:1" }, { "name": "Test 5 - Create, serialize, and deserialize an event", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000061#step:11:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333838#step:11:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000061#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333838#step:12:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.297972+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.518655+00:00", "publish_state": "published" } } diff --git a/data/test-results/cloudflare.json b/data/test-results/cloudflare.json index 72cdaf38b3..a09c184915 100644 --- a/data/test-results/cloudflare.json +++ b/data/test-results/cloudflare.json @@ -5,10 +5,10 @@ "version": "2025.2.0" }, "run": { - "id": "25877392111", + "id": "26658699892", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096450", - "timestamp": "2026-05-14T18:18:23Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421019", + "timestamp": "2026-05-29T19:48:30Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 0, + "duration_seconds": 1, "details": [ { "name": "Test 1 - Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096450#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421019#step:6:1" }, { "name": "Test 2 - Version Check", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096450#step:7:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421019#step:7:1" }, { "name": "Test 3 - Help Output Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096450#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421019#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096450#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421019#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096450#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421019#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096450#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421019#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.298171+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.518823+00:00", "publish_state": "published" } } diff --git a/data/test-results/cloudypad.json b/data/test-results/cloudypad.json index b76128d9cc..1dda68f5c1 100644 --- a/data/test-results/cloudypad.json +++ b/data/test-results/cloudypad.json @@ -5,10 +5,10 @@ "version": "0.9.0" }, "run": { - "id": "25877375677", + "id": "26658685142", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044678", - "timestamp": "2026-05-14T18:18:02Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370605", + "timestamp": "2026-05-29T19:48:11Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 57, + "duration_seconds": 54, "details": [ { "name": "Test 1 - Check package-specific baseline markers", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044678#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370605#step:8:1" }, { "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044678#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370605#step:9:1" }, { "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044678#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370605#step:10:1" }, { "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044678#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370605#step:11:1" }, { "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "duration_seconds": 81, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044678#step:12:1" + "duration_seconds": 85, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370605#step:12:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 57, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044678#step:13:1", + "duration_seconds": 54, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370605#step:13:1", "current_version": "0.9.0", "latest_version": "0.45.2", "next_installed_version": "0.45.2", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.298353+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.518990+00:00", "publish_state": "published" } } diff --git a/data/test-results/cmake.json b/data/test-results/cmake.json index 0cab813470..140cbc90de 100644 --- a/data/test-results/cmake.json +++ b/data/test-results/cmake.json @@ -5,10 +5,10 @@ "version": "3.31.6" }, "run": { - "id": "25877411197", + "id": "26658717942", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175182", - "timestamp": "2026-05-14T18:18:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479417", + "timestamp": "2026-05-29T19:48:51Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 3, + "duration_seconds": 9, "details": [ { "name": "Test 1 - Check binary", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175182#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479417#step:6:1" }, { "name": "Test 2 - Check version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175182#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479417#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175182#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479417#step:8:1" }, { "name": "Test 4 - Verify architecture", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175182#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479417#step:9:1" }, { "name": "Test 5 - Configure, build, and run a project", "status": "passed", - "duration_seconds": 3, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175182#step:10:1" + "duration_seconds": 9, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479417#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175182#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479417#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.298574+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.519164+00:00", "publish_state": "published" } } diff --git a/data/test-results/cni.json b/data/test-results/cni.json index 247ac92679..8d9c954d22 100644 --- a/data/test-results/cni.json +++ b/data/test-results/cni.json @@ -5,10 +5,10 @@ "version": "v1.6.2" }, "run": { - "id": "25877375677", + "id": "26658685142", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043655", - "timestamp": "2026-05-14T18:18:05Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369846", + "timestamp": "2026-05-29T19:48:12Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 4, + "duration_seconds": 3, "details": [ { "name": "Test 1 - Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043655#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369846#step:7:1" }, { "name": "Test 2 - Version Check", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043655#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369846#step:8:1" }, { "name": "Test 3 - Help Or Configuration Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043655#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369846#step:9:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043655#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369846#step:10:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043655#step:11:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369846#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 3, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043655#step:12:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369846#step:12:1", "current_version": "plugins v1.6.2 + cnitool v1.2.3", "latest_version": "plugins v1.7.1 + cnitool v1.3.0", "next_installed_version": "plugins v1.7.1 + cnitool v1.3.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.298784+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.519348+00:00", "publish_state": "published" } } diff --git a/data/test-results/cobbler.json b/data/test-results/cobbler.json index 052ef988c6..8c6b8ca131 100644 --- a/data/test-results/cobbler.json +++ b/data/test-results/cobbler.json @@ -5,10 +5,10 @@ "version": "3.3.6" }, "run": { - "id": "25877363365", + "id": "26658674448", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000990", - "timestamp": "2026-05-14T18:17:47Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334624", + "timestamp": "2026-05-29T19:47:57Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Binary", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000990#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334624#step:7:1" }, { "name": "Test 2 - Check package version metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000990#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334624#step:8:1" }, { "name": "Test 3 - Check Configuration (Dry Run)", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000990#step:9:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334624#step:9:1" }, { "name": "Test 4 - Check Signature Help (Optional)", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000990#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334624#step:10:1" }, { "name": "Test 5 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000990#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334624#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 9, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000990#step:12:1", + "duration_seconds": 10, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334624#step:12:1", "current_version": "3.3.6", "latest_version": "3.3.7", "next_installed_version": "3.3.7", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.298990+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.519516+00:00", "publish_state": "published" } } diff --git a/data/test-results/cockroachdb.json b/data/test-results/cockroachdb.json index 7c6e264ca4..66aae0a0e1 100644 --- a/data/test-results/cockroachdb.json +++ b/data/test-results/cockroachdb.json @@ -5,10 +5,10 @@ "version": "v25.1.1" }, "run": { - "id": "25877419588", + "id": "26658724696", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192441", - "timestamp": "2026-05-14T18:18:58Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503344", + "timestamp": "2026-05-29T19:49:02Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 5, + "duration_seconds": 10, "details": [ { "name": "Test 1 - Check Binary", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192441#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503344#step:7:1" }, { "name": "Test 2 - Run Help", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192441#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503344#step:8:1" }, { "name": "Test 3 - Start Single Node", "status": "passed", - "duration_seconds": 7, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192441#step:9:1" + "duration_seconds": 8, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503344#step:9:1" }, { "name": "Test 4 - Run SQL Query", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192441#step:10:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503344#step:10:1" }, { "name": "Test 5 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192441#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503344#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 3, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192441#step:12:1", + "duration_seconds": 7, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503344#step:12:1", "current_version": "v25.1.1", "latest_version": "v25.1.2", "next_installed_version": "v25.1.2", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.299170+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.519686+00:00", "publish_state": "published" } } diff --git a/data/test-results/cocotb.json b/data/test-results/cocotb.json index 615c54c5cb..12f9e4eef9 100644 --- a/data/test-results/cocotb.json +++ b/data/test-results/cocotb.json @@ -5,10 +5,10 @@ "version": "1.2.0" }, "run": { - "id": "25877375677", + "id": "26658685142", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044759", - "timestamp": "2026-05-14T18:18:03Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370567", + "timestamp": "2026-05-29T19:48:12Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Package installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044759#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370567#step:7:1" }, { "name": "Test 2 - Version metadata matches baseline", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044759#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370567#step:8:1" }, { "name": "Test 3 - Installed files metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044759#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370567#step:9:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044759#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370567#step:10:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044759#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370567#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 7, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044759#step:12:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370567#step:12:1", "current_version": "1.2.0", "latest_version": "1.3.0", "next_installed_version": "1.3.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.299383+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.521291+00:00", "publish_state": "published" } } diff --git a/data/test-results/conda.json b/data/test-results/conda.json index 7e68ef1906..bbeea4eb35 100644 --- a/data/test-results/conda.json +++ b/data/test-results/conda.json @@ -5,10 +5,10 @@ "version": "25.3.0" }, "run": { - "id": "25877399008", + "id": "26658707245", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125878", - "timestamp": "2026-05-14T18:18:31Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445537", + "timestamp": "2026-05-29T19:48:39Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 16, + "duration_seconds": 18, "details": [ { "name": "Test 1 - Check Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125878#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445537#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125878#step:7:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445537#step:7:1" }, { "name": "Test 3 - Check Help Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125878#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445537#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125878#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445537#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 16, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125878#step:10:1" + "duration_seconds": 17, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445537#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125878#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445537#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.299575+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.521492+00:00", "publish_state": "published" } } diff --git a/data/test-results/containerd.json b/data/test-results/containerd.json index 55462fdac1..4c93bfa202 100644 --- a/data/test-results/containerd.json +++ b/data/test-results/containerd.json @@ -5,10 +5,10 @@ "version": "1.7.25" }, "run": { - "id": "25877395502", + "id": "26658703674", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109986", - "timestamp": "2026-05-14T18:18:27Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433192", + "timestamp": "2026-05-29T19:48:33Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109986#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433192#step:6:1" }, { "name": "Test 2 - Version Check", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109986#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433192#step:7:1" }, { "name": "Test 3 - Help Or Configuration Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109986#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433192#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109986#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433192#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109986#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433192#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109986#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433192#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.299780+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.521674+00:00", "publish_state": "published" } } diff --git a/data/test-results/contour.json b/data/test-results/contour.json index 7611d25076..2e3161cdf8 100644 --- a/data/test-results/contour.json +++ b/data/test-results/contour.json @@ -2,13 +2,13 @@ "schema_version": "2.0", "package": { "name": "Contour", - "version": "1.33.4" + "version": "1.33.5" }, "run": { - "id": "25877367704", + "id": "26658677990", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026914", - "timestamp": "2026-05-14T18:17:56Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347156", + "timestamp": "2026-05-29T19:48:03Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Binary", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026914#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347156#step:7:1" }, { "name": "Test 2 - Run Help", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026914#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347156#step:8:1" }, { "name": "Test 3 - Check Envoy Config Generation (Dry Run)", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026914#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347156#step:9:1" }, { "name": "Test 4 - Check Version Detail", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026914#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347156#step:10:1" }, { "name": "Test 5 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026914#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347156#step:11:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026914#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347156#step:12:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.300004+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.521847+00:00", "publish_state": "published" } } diff --git a/data/test-results/coredns.json b/data/test-results/coredns.json index c90788e883..251992dab9 100644 --- a/data/test-results/coredns.json +++ b/data/test-results/coredns.json @@ -5,10 +5,10 @@ "version": "1.12.1" }, "run": { - "id": "25877403044", + "id": "26658710721", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048139873", - "timestamp": "2026-05-14T18:18:38Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456273", + "timestamp": "2026-05-29T19:48:43Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048139873#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456273#step:6:1" }, { "name": "Test 2 - Version Check", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048139873#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456273#step:7:1" }, { "name": "Test 3 - Help Or Configuration Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048139873#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456273#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048139873#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456273#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048139873#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456273#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048139873#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456273#step:11:1", "current_version": "1.12.1", "latest_version": "1.12.2", "next_installed_version": "1.12.2", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.300202+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.522019+00:00", "publish_state": "published" } } diff --git a/data/test-results/corosync.json b/data/test-results/corosync.json index b3bc8df748..f2d580aabf 100644 --- a/data/test-results/corosync.json +++ b/data/test-results/corosync.json @@ -5,10 +5,10 @@ "version": "3.1.7" }, "run": { - "id": "25877403044", + "id": "26658710721", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140548", - "timestamp": "2026-05-14T18:18:38Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456198", + "timestamp": "2026-05-29T19:48:45Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -25,38 +25,38 @@ { "name": "Test 1 - Check corosync binary exists and architecture", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140548#step:6:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456198#step:6:1" }, { "name": "Test 2 - Check corosync-cfgtool", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140548#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456198#step:7:1" }, { "name": "Test 3 - Run corosync-keygen", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140548#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456198#step:8:1" }, { "name": "Test 4 - Check Config Validity (Dry Run)", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140548#step:9:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456198#step:9:1" }, { "name": "Test 5 - Check Keygen Binary", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140548#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456198#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140548#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456198#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.300423+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.522193+00:00", "publish_state": "published" } } diff --git a/data/test-results/cortex.json b/data/test-results/cortex.json index 14e03611bd..9627ce131a 100644 --- a/data/test-results/cortex.json +++ b/data/test-results/cortex.json @@ -5,10 +5,10 @@ "version": "1.19.0" }, "run": { - "id": "25877406767", + "id": "26658714432", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155599", - "timestamp": "2026-05-14T18:18:45Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469342", + "timestamp": "2026-05-29T19:48:48Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 45, + "duration_seconds": 46, "details": [ { "name": "Test 1 - Check Binary", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155599#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469342#step:7:1" }, { "name": "Test 2 - Run Help", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155599#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469342#step:8:1" }, { "name": "Test 3 - Check Config Validation (Dry Run)", "status": "passed", "duration_seconds": 45, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155599#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469342#step:9:1" }, { "name": "Test 4 - Check Completion Generation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155599#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469342#step:10:1" }, { "name": "Test 5 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155599#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469342#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155599#step:12:1", + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469342#step:12:1", "current_version": "1.19.0", "latest_version": "1.19.1", "next_installed_version": "1.19.1", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.300628+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.522407+00:00", "publish_state": "published" } } diff --git a/data/test-results/couchbase.json b/data/test-results/couchbase.json index 750b369f96..a362c16efa 100644 --- a/data/test-results/couchbase.json +++ b/data/test-results/couchbase.json @@ -5,10 +5,10 @@ "version": "8.0.0-3777" }, "run": { - "id": "25877419588", + "id": "26658724696", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192386", - "timestamp": "2026-05-14T18:18:58Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504211", + "timestamp": "2026-05-29T19:49:02Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 21, + "duration_seconds": 22, "details": [ { "name": "Test 1 - Check Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192386#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504211#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192386#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504211#step:7:1" }, { "name": "Test 3 - Check Help Output", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192386#step:8:1" + "duration_seconds": 2, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504211#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192386#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504211#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 20, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192386#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504211#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192386#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504211#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.300954+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.522669+00:00", "publish_state": "published" } } diff --git a/data/test-results/couchdb.json b/data/test-results/couchdb.json index 7d594e7988..8b78dfe7d4 100644 --- a/data/test-results/couchdb.json +++ b/data/test-results/couchdb.json @@ -5,10 +5,10 @@ "version": "3.3.3" }, "run": { - "id": "25877355625", + "id": "26658667828", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976458", - "timestamp": "2026-05-14T18:17:37Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309022", + "timestamp": "2026-05-29T19:47:49Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 10, + "duration_seconds": 8, "details": [ { "name": "Test 1 - Check container running", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976458#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309022#step:6:1" }, { "name": "Test 2 - Check Root Endpoint", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976458#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309022#step:7:1" }, { "name": "Test 3 - Create Database", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976458#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309022#step:8:1" }, { "name": "Test 4 - Create Document", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976458#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309022#step:9:1" }, { "name": "Test 5 - Read Document", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976458#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309022#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 10, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976458#step:11:1", + "duration_seconds": 9, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309022#step:11:1", "current_version": "3.3.3", "latest_version": "3.4.1", "next_installed_version": "3.4.1", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.301176+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.522847+00:00", "publish_state": "published" } } diff --git a/data/test-results/cri-o.json b/data/test-results/cri-o.json index 35ec09eb41..dc11064178 100644 --- a/data/test-results/cri-o.json +++ b/data/test-results/cri-o.json @@ -5,10 +5,10 @@ "version": "1.30.10" }, "run": { - "id": "25877403044", + "id": "26658710721", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140762", - "timestamp": "2026-05-14T18:18:37Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455570", + "timestamp": "2026-05-29T19:48:43Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Binary", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140762#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455570#step:7:1" }, { "name": "Test 2 - Run Help", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140762#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455570#step:8:1" }, { "name": "Test 3 - Check Config Dump", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140762#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455570#step:9:1" }, { "name": "Test 4 - Check Installed Package Metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140762#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455570#step:10:1" }, { "name": "Test 5 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140762#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455570#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140762#step:12:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455570#step:12:1", "current_version": "1.30.10", "latest_version": "1.31.5", "next_installed_version": "1.31.5", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.301398+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.523952+00:00", "publish_state": "published" } } diff --git a/data/test-results/crossplane.json b/data/test-results/crossplane.json index 6568dcee90..dcd889f887 100644 --- a/data/test-results/crossplane.json +++ b/data/test-results/crossplane.json @@ -5,10 +5,10 @@ "version": "2.1.4" }, "run": { - "id": "25877399008", + "id": "26658707245", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125118", - "timestamp": "2026-05-14T18:18:31Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445834", + "timestamp": "2026-05-29T19:48:39Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Binary", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125118#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445834#step:7:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125118#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445834#step:8:1" }, { "name": "Test 3 - Check Help Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125118#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445834#step:9:1" }, { "name": "Test 4 - Check Core Start Help", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125118#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445834#step:10:1" }, { "name": "Test 5 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125118#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445834#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125118#step:12:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445834#step:12:1", "current_version": "2.1.4", "latest_version": "2.2.0", "next_installed_version": "2.2.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.301604+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.524157+00:00", "publish_state": "published" } } diff --git a/data/test-results/cubefs.json b/data/test-results/cubefs.json index 1da80ee2ad..c84f90443e 100644 --- a/data/test-results/cubefs.json +++ b/data/test-results/cubefs.json @@ -5,10 +5,10 @@ "version": "v3.4.0" }, "run": { - "id": "25877399008", + "id": "26658707245", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126158", - "timestamp": "2026-05-14T18:18:31Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445460", + "timestamp": "2026-05-29T19:48:38Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 6, + "duration_seconds": 5, "details": [ { "name": "Test 1 - Check repository exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126158#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445460#step:6:1" }, { "name": "Test 2 - Check for Makefile", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126158#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445460#step:7:1" }, { "name": "Test 3 - Check for Go.mod", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126158#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445460#step:8:1" }, { "name": "Test 4 - Architecture verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126158#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445460#step:9:1" }, { "name": "Test 5 - Functional validation", "status": "passed", - "duration_seconds": 3, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126158#step:10:1" + "duration_seconds": 2, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445460#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 3, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126158#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445460#step:11:1", "current_version": "v3.4.0", "latest_version": "v3.5.0", "next_installed_version": "v3.5.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.301801+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.524378+00:00", "publish_state": "published" } } diff --git a/data/test-results/cucim.json b/data/test-results/cucim.json index 84f55bba75..68578535d0 100644 --- a/data/test-results/cucim.json +++ b/data/test-results/cucim.json @@ -5,10 +5,10 @@ "version": "23.12.00" }, "run": { - "id": "25877379982", + "id": "26658688675", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057331", - "timestamp": "2026-05-14T18:18:07Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380777", + "timestamp": "2026-05-29T19:48:14Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check package-specific baseline markers", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057331#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380777#step:8:1" }, { "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057331#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380777#step:9:1" }, { "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057331#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380777#step:10:1" }, { "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057331#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380777#step:11:1" }, { "name": "Test 5 - Run scoped Arm preflight proof", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057331#step:12:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380777#step:12:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 3, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057331#step:13:1", + "duration_seconds": 2, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380777#step:13:1", "current_version": "23.12.00", "latest_version": "26.04.00", "next_installed_version": "26.04.00", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.302006+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.524566+00:00", "publish_state": "published" } } diff --git a/data/test-results/cuda-gdb.json b/data/test-results/cuda-gdb.json index 334fae5477..9196c7612d 100644 --- a/data/test-results/cuda-gdb.json +++ b/data/test-results/cuda-gdb.json @@ -5,10 +5,10 @@ "version": "11.4" }, "run": { - "id": "25877379982", + "id": "26658688675", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057470", - "timestamp": "2026-05-14T18:18:06Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380783", + "timestamp": "2026-05-29T19:48:15Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 15, + "duration_seconds": 14, "details": [ { "name": "Test 1 - Check package-specific baseline markers", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057470#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380783#step:8:1" }, { "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057470#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380783#step:9:1" }, { "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057470#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380783#step:10:1" }, { "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057470#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380783#step:11:1" }, { "name": "Test 5 - Run scoped Arm preflight proof", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057470#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380783#step:12:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 15, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057470#step:13:1", + "duration_seconds": 14, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380783#step:13:1", "current_version": "11.4", "latest_version": "2018-05-23", "next_installed_version": "2018-05-23", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.302204+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.524743+00:00", "publish_state": "published" } } diff --git a/data/test-results/cuda-python.json b/data/test-results/cuda-python.json index c6710160d1..3588730fe7 100644 --- a/data/test-results/cuda-python.json +++ b/data/test-results/cuda-python.json @@ -5,10 +5,10 @@ "version": "11.5.0" }, "run": { - "id": "25877383844", + "id": "26658692522", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071829", - "timestamp": "2026-05-14T18:18:12Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394538", + "timestamp": "2026-05-29T19:48:19Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,46 +20,46 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 2, + "duration_seconds": 1, "details": [ { "name": "Test 1 - Check package-specific baseline markers", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071829#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394538#step:8:1" }, { "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071829#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394538#step:9:1" }, { "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071829#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394538#step:10:1" }, { "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071829#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394538#step:11:1" }, { "name": "Test 5 - Run scoped Arm preflight proof", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071829#step:12:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394538#step:12:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071829#step:13:1", + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394538#step:13:1", "current_version": "11.5.0", - "latest_version": "13.2.0", - "next_installed_version": "13.2.0", + "latest_version": "13.3.0", + "next_installed_version": "13.3.0", "decision": "limited_cpu_smoke_validated", "regression_result": "Arm preflight proof passed on Arm64", "comparison": "Test 6 limited_cpu_smoke_validated: reran the same bounded scoped Arm source/compile/import/help/manifest preflight against the next stable candidate. This is CPU-side preflight evidence only; no GPU/CUDA driver/runtime, accelerator execution, Kubernetes cluster, or full product runtime is claimed." @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.302403+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.524927+00:00", "publish_state": "published" } } diff --git a/data/test-results/cuda-q.json b/data/test-results/cuda-q.json index 0296cd9a9e..5574552094 100644 --- a/data/test-results/cuda-q.json +++ b/data/test-results/cuda-q.json @@ -5,10 +5,10 @@ "version": "0.4.1" }, "run": { - "id": "25877387746", + "id": "26658696365", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084475", - "timestamp": "2026-05-14T18:18:15Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408100", + "timestamp": "2026-05-29T19:48:24Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 27, + "duration_seconds": 28, "details": [ { "name": "Test 1 - Check package-specific baseline markers", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084475#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408100#step:9:1" }, { "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084475#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408100#step:10:1" }, { "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084475#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408100#step:11:1" }, { "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084475#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408100#step:12:1" }, { "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "duration_seconds": 13, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084475#step:13:1" + "duration_seconds": 12, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408100#step:13:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 14, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084475#step:14:1", + "duration_seconds": 16, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408100#step:14:1", "current_version": "0.4.1", "latest_version": "0.8.0", "next_installed_version": "0.8.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.302603+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.525100+00:00", "publish_state": "published" } } diff --git a/data/test-results/cuda-qx.json b/data/test-results/cuda-qx.json index 464fa81dbc..8b6d3a7128 100644 --- a/data/test-results/cuda-qx.json +++ b/data/test-results/cuda-qx.json @@ -5,10 +5,10 @@ "version": "0.2.0" }, "run": { - "id": "25877387746", + "id": "26658696365", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084921", - "timestamp": "2026-05-14T18:18:16Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408069", + "timestamp": "2026-05-29T19:48:28Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 7, + "duration_seconds": 8, "details": [ { "name": "Test 1 - Baseline package evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084921#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408069#step:7:1" }, { "name": "Test 2 - Baseline version and release alignment", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084921#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408069#step:8:1" }, { "name": "Test 3 - Package-specific source or docs evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084921#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408069#step:9:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084921#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408069#step:10:1" }, { "name": "Test 5 - Bounded package-specific smoke", "status": "passed", "duration_seconds": 4, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084921#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408069#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 4, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084921#step:12:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408069#step:12:1", "current_version": "0.2.0", "latest_version": "0.6.0", "next_installed_version": "0.6.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.302817+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.525296+00:00", "publish_state": "published" } } diff --git a/data/test-results/cudf.json b/data/test-results/cudf.json index 816f14794f..8c047e65a9 100644 --- a/data/test-results/cudf.json +++ b/data/test-results/cudf.json @@ -5,10 +5,10 @@ "version": "0.16.0" }, "run": { - "id": "25877387746", + "id": "26658696365", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084771", - "timestamp": "2026-05-14T18:18:16Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408120", + "timestamp": "2026-05-29T19:48:23Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 5, + "duration_seconds": 4, "details": [ { "name": "Test 1 - Baseline package evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084771#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408120#step:7:1" }, { "name": "Test 2 - Baseline version and release alignment", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084771#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408120#step:8:1" }, { "name": "Test 3 - Package-specific source or docs evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084771#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408120#step:9:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084771#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408120#step:10:1" }, { "name": "Test 5 - Run scoped Arm preflight proof", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084771#step:11:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408120#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 4, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084771#step:12:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408120#step:12:1", "current_version": "0.16.0", "latest_version": "26.04.00", "next_installed_version": "26.04.00", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.303028+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.525479+00:00", "publish_state": "published" } } diff --git a/data/test-results/cudnn-fe.json b/data/test-results/cudnn-fe.json index 80ad52070e..744e9da058 100644 --- a/data/test-results/cudnn-fe.json +++ b/data/test-results/cudnn-fe.json @@ -5,10 +5,10 @@ "version": "1.13.0" }, "run": { - "id": "25877387746", + "id": "26658696365", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084667", - "timestamp": "2026-05-14T18:18:16Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408079", + "timestamp": "2026-05-29T19:48:24Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,40 +26,40 @@ "name": "Test 1 - Baseline package evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084667#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408079#step:7:1" }, { "name": "Test 2 - Baseline version and release alignment", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084667#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408079#step:8:1" }, { "name": "Test 3 - Package-specific source or docs evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084667#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408079#step:9:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084667#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408079#step:10:1" }, { "name": "Test 5 - Bounded package-specific smoke", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084667#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408079#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084667#step:12:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408079#step:12:1", "current_version": "1.13.0", - "latest_version": "1.23.0", - "next_installed_version": "1.23.0", + "latest_version": "1.24.0", + "next_installed_version": "1.24.0", "decision": "limited_cpu_smoke_validated", "regression_result": "Arm preflight proof passed on Arm64", "comparison": "Test 6 limited_cpu_smoke_validated: reran the cuDNN Frontend bounded Arm preflight against the next stable source candidate, compiling the package version header and python/cudnn sources while verifying the aggregate header's cuDNN runtime boundary. This is CPU-side package preflight evidence only; no cuDNN library load or GPU execution is claimed." @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.303259+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.525663+00:00", "publish_state": "published" } } diff --git a/data/test-results/cugraph.json b/data/test-results/cugraph.json index 8e2fd85ff2..5b5b0225a2 100644 --- a/data/test-results/cugraph.json +++ b/data/test-results/cugraph.json @@ -5,10 +5,10 @@ "version": "0.16.0" }, "run": { - "id": "25877387746", + "id": "26658696365", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084558", - "timestamp": "2026-05-14T18:18:16Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408089", + "timestamp": "2026-05-29T19:48:23Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 3, + "duration_seconds": 2, "details": [ { "name": "Test 1 - Baseline package evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084558#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408089#step:7:1" }, { "name": "Test 2 - Baseline version and release alignment", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084558#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408089#step:8:1" }, { "name": "Test 3 - Package-specific source or docs evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084558#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408089#step:9:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084558#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408089#step:10:1" }, { "name": "Test 5 - Run scoped Arm preflight proof", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084558#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408089#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 3, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084558#step:12:1", + "duration_seconds": 2, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408089#step:12:1", "current_version": "0.16.0", "latest_version": "26.04.00", "next_installed_version": "26.04.00", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.303453+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.525838+00:00", "publish_state": "published" } } diff --git a/data/test-results/cuml.json b/data/test-results/cuml.json index 9e9d00319b..7e15dd9f3a 100644 --- a/data/test-results/cuml.json +++ b/data/test-results/cuml.json @@ -5,10 +5,10 @@ "version": "21.10.0" }, "run": { - "id": "25877387746", + "id": "26658696365", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084588", - "timestamp": "2026-05-14T18:18:16Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408140", + "timestamp": "2026-05-29T19:48:23Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 6, + "duration_seconds": 3, "details": [ { "name": "Test 1 - Baseline package evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084588#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408140#step:7:1" }, { "name": "Test 2 - Baseline version and release alignment", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084588#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408140#step:8:1" }, { "name": "Test 3 - Package-specific source or docs evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084588#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408140#step:9:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084588#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408140#step:10:1" }, { "name": "Test 5 - Run scoped Arm preflight proof", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084588#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408140#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 5, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084588#step:12:1", + "duration_seconds": 2, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408140#step:12:1", "current_version": "21.10.0", "latest_version": "26.04.00", "next_installed_version": "26.04.00", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.303654+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.526023+00:00", "publish_state": "published" } } diff --git a/data/test-results/cuopt.json b/data/test-results/cuopt.json index b056505693..74812057a0 100644 --- a/data/test-results/cuopt.json +++ b/data/test-results/cuopt.json @@ -5,10 +5,10 @@ "version": "25.08.00" }, "run": { - "id": "25877387746", + "id": "26658696365", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084718", - "timestamp": "2026-05-14T18:18:16Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407948", + "timestamp": "2026-05-29T19:48:25Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -25,38 +25,38 @@ { "name": "Test 1 - Baseline package evidence", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084718#step:7:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407948#step:7:1" }, { "name": "Test 2 - Baseline version and release alignment", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084718#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407948#step:8:1" }, { "name": "Test 3 - Package-specific source or docs evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084718#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407948#step:9:1" }, { "name": "Test 4 - Arm64 support gate", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084718#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407948#step:10:1" }, { "name": "Test 5 - Run scoped Arm preflight proof", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084718#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407948#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084718#step:12:1", + "duration_seconds": 3, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407948#step:12:1", "current_version": "25.08.00", "latest_version": "26.04.00", "next_installed_version": "26.04.00", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.303871+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.526196+00:00", "publish_state": "published" } } diff --git a/data/test-results/cupy.json b/data/test-results/cupy.json index 9a33511281..d651385197 100644 --- a/data/test-results/cupy.json +++ b/data/test-results/cupy.json @@ -5,10 +5,10 @@ "version": "9.6.0" }, "run": { - "id": "25877387746", + "id": "26658696365", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048085257", - "timestamp": "2026-05-14T18:18:16Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408113", + "timestamp": "2026-05-29T19:48:24Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,40 +26,40 @@ "name": "Test 1 - Baseline package evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048085257#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408113#step:7:1" }, { "name": "Test 2 - Baseline version and release alignment", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048085257#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408113#step:8:1" }, { "name": "Test 3 - Package-specific source or docs evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048085257#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408113#step:9:1" }, { "name": "Test 4 - Arm64 support gate", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048085257#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408113#step:10:1" }, { "name": "Test 5 - Bounded package-specific smoke", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048085257#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408113#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048085257#step:12:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408113#step:12:1", "current_version": "9.6.0", - "latest_version": "14.0.1", - "next_installed_version": "14.0.1", + "latest_version": "14.1.0", + "next_installed_version": "14.1.0", "decision": "limited_cpu_smoke_validated", "regression_result": "Arm preflight proof passed on Arm64", "comparison": "Test 6 limited_cpu_smoke_validated: reran the CuPy bounded Arm source preflight against the next stable candidate, compiling cupy/cupy_backends/cupyx sources, loading source version and CUDA environment config, and checking the guarded import boundary. This is CPU-side package preflight evidence only; no CUDA driver, CUDA runtime, or GPU array execution is claimed." @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.304062+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.526411+00:00", "publish_state": "published" } } diff --git a/data/test-results/curl.json b/data/test-results/curl.json index efbcce5921..b56db48183 100644 --- a/data/test-results/curl.json +++ b/data/test-results/curl.json @@ -5,10 +5,10 @@ "version": "8.17.0" }, "run": { - "id": "25877403044", + "id": "26658710721", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140545", - "timestamp": "2026-05-14T18:18:37Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456194", + "timestamp": "2026-05-29T19:48:44Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 50, + "duration_seconds": 49, "details": [ { "name": "Test 1 - Check Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140545#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456194#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140545#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456194#step:7:1" }, { "name": "Test 3 - Check Help Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140545#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456194#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140545#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456194#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140545#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456194#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 50, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140545#step:11:1", + "duration_seconds": 49, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456194#step:11:1", "current_version": "8.17.0", "latest_version": "8.18.0", "next_installed_version": "8.18.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.304238+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.526588+00:00", "publish_state": "published" } } diff --git a/data/test-results/cutile-python.json b/data/test-results/cutile-python.json index db68e552e3..53d4fd7158 100644 --- a/data/test-results/cutile-python.json +++ b/data/test-results/cutile-python.json @@ -5,10 +5,10 @@ "version": "1.0.0" }, "run": { - "id": "25877387746", + "id": "26658696365", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084619", - "timestamp": "2026-05-14T18:18:15Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408125", + "timestamp": "2026-05-29T19:48:23Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,43 +26,43 @@ "name": "Test 1 - Baseline package evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084619#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408125#step:7:1" }, { "name": "Test 2 - Baseline version and release alignment", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084619#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408125#step:8:1" }, { "name": "Test 3 - Package-specific source or docs evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084619#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408125#step:9:1" }, { "name": "Test 4 - Arm64 support gate", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084619#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408125#step:10:1" }, { "name": "Test 5 - Run scoped Arm preflight proof", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084619#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408125#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084619#step:12:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408125#step:12:1", "current_version": "1.0.0", - "latest_version": "1.3.0", - "next_installed_version": "1.3.0", + "latest_version": "1.4.0", + "next_installed_version": "1.4.0", "decision": "limited_cpu_smoke_validated", "regression_result": "Arm preflight proof passed on Arm64", - "comparison": "Test 6 limited_cpu_smoke_validated: reran the bounded scoped Arm PyPI wheel/manifest proof for cuda-tile 1.3.0 on the Arm64 runner. This validates published Arm64 package payload evidence only; no CUDA Tile kernel execution, CUDA driver, GPU runtime, or full accelerator environment is claimed." + "comparison": "Test 6 limited_cpu_smoke_validated: reran the bounded scoped Arm PyPI wheel/manifest proof for cuda-tile 1.4.0 on the Arm64 runner. This validates published Arm64 package payload evidence only; no CUDA Tile kernel execution, CUDA driver, GPU runtime, or full accelerator environment is claimed." } ] }, @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.304437+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.526758+00:00", "publish_state": "published" } } diff --git a/data/test-results/cutlass.json b/data/test-results/cutlass.json index ae533bbd42..56e76d42b7 100644 --- a/data/test-results/cutlass.json +++ b/data/test-results/cutlass.json @@ -5,10 +5,10 @@ "version": "4.1.0" }, "run": { - "id": "25877392111", + "id": "26658699892", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096758", - "timestamp": "2026-05-14T18:18:24Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420974", + "timestamp": "2026-05-29T19:48:30Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,46 +20,46 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 8, + "duration_seconds": 5, "details": [ { "name": "Test 1 - Baseline package evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096758#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420974#step:7:1" }, { "name": "Test 2 - Baseline version and release alignment", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096758#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420974#step:8:1" }, { "name": "Test 3 - Package-specific source or docs evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096758#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420974#step:9:1" }, { "name": "Test 4 - Arm64 support gate", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096758#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420974#step:10:1" }, { "name": "Test 5 - Run scoped Arm preflight proof", "status": "passed", - "duration_seconds": 5, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096758#step:11:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420974#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 3, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096758#step:12:1", + "duration_seconds": 4, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420974#step:12:1", "current_version": "4.1.0", - "latest_version": "4.5.0", - "next_installed_version": "4.5.0", + "latest_version": "4.5.1", + "next_installed_version": "4.5.1", "decision": "limited_cpu_smoke_validated", "regression_result": "Arm preflight proof passed on Arm64", "comparison": "Test 6 limited_cpu_smoke_validated: reran the same bounded scoped Arm source/compile/import/help/manifest preflight against the next stable candidate. This is CPU-side preflight evidence only; no GPU/CUDA driver/runtime, accelerator execution, Kubernetes cluster, or full product runtime is claimed." @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.304655+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.526924+00:00", "publish_state": "published" } } diff --git a/data/test-results/cuttlefish.json b/data/test-results/cuttlefish.json index d6d57f2e7b..59003275ef 100644 --- a/data/test-results/cuttlefish.json +++ b/data/test-results/cuttlefish.json @@ -5,10 +5,10 @@ "version": "1.26.0" }, "run": { - "id": "25877355625", + "id": "26658667828", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976739", - "timestamp": "2026-05-14T18:17:37Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308783", + "timestamp": "2026-05-29T19:47:49Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check cvd binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976739#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308783#step:7:1" }, { "name": "Test 2 - Check Installed Package Version", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976739#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308783#step:8:1" }, { "name": "Test 3 - Check cvd help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976739#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308783#step:9:1" }, { "name": "Test 4 - Check Host Resource Files", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976739#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308783#step:10:1" }, { "name": "Test 5 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976739#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308783#step:11:1" }, { "name": "Test 6 - Regression applicability", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976739#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308783#step:12:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.304859+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.527101+00:00", "publish_state": "published" } } diff --git a/data/test-results/cuvs.json b/data/test-results/cuvs.json index a2123e1fff..a348cea536 100644 --- a/data/test-results/cuvs.json +++ b/data/test-results/cuvs.json @@ -5,10 +5,10 @@ "version": "24.04.00" }, "run": { - "id": "25877392111", + "id": "26658699892", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096627", - "timestamp": "2026-05-14T18:18:22Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420878", + "timestamp": "2026-05-29T19:48:31Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 1, + "duration_seconds": 2, "details": [ { "name": "Test 1 - Baseline package evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096627#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420878#step:7:1" }, { "name": "Test 2 - Baseline version and release alignment", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096627#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420878#step:8:1" }, { "name": "Test 3 - Package-specific source or docs evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096627#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420878#step:9:1" }, { "name": "Test 4 - Arm64 support gate", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096627#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420878#step:10:1" }, { "name": "Test 5 - Run scoped Arm preflight proof", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096627#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420878#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096627#step:12:1", + "duration_seconds": 2, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420878#step:12:1", "current_version": "24.04.00", "latest_version": "26.04.00", "next_installed_version": "26.04.00", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.305055+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.527327+00:00", "publish_state": "published" } } diff --git a/data/test-results/cv-cuda.json b/data/test-results/cv-cuda.json index 5a3c1948e6..3b37ca28e5 100644 --- a/data/test-results/cv-cuda.json +++ b/data/test-results/cv-cuda.json @@ -5,10 +5,10 @@ "version": "0.4.0" }, "run": { - "id": "25877392111", + "id": "26658699892", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096360", - "timestamp": "2026-05-14T18:18:23Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420764", + "timestamp": "2026-05-29T19:48:31Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 4, + "duration_seconds": 2, "details": [ { "name": "Test 1 - Baseline package evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096360#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420764#step:7:1" }, { "name": "Test 2 - Baseline version and release alignment", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096360#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420764#step:8:1" }, { "name": "Test 3 - Package-specific source or docs evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096360#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420764#step:9:1" }, { "name": "Test 4 - Arm64 support gate", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096360#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420764#step:10:1" }, { "name": "Test 5 - Run scoped Arm preflight proof", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096360#step:11:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420764#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 4, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096360#step:12:1", + "duration_seconds": 3, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420764#step:12:1", "current_version": "0.4.0", "latest_version": "0.16.0", "next_installed_version": "0.16.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.305268+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.527519+00:00", "publish_state": "published" } } diff --git a/data/test-results/dali.json b/data/test-results/dali.json index 6da678079a..5e36579746 100644 --- a/data/test-results/dali.json +++ b/data/test-results/dali.json @@ -5,10 +5,10 @@ "version": "0.11.0" }, "run": { - "id": "25877392111", + "id": "26658699892", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096314", - "timestamp": "2026-05-14T18:18:26Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420526", + "timestamp": "2026-05-29T19:48:30Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 17, + "duration_seconds": 18, "details": [ { "name": "Test 1 - Baseline package evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096314#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420526#step:7:1" }, { "name": "Test 2 - Baseline version and release alignment", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096314#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420526#step:8:1" }, { "name": "Test 3 - Package-specific source or docs evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096314#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420526#step:9:1" }, { "name": "Test 4 - Arm64 support gate", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096314#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420526#step:10:1" }, { "name": "Test 5 - Run scoped Arm preflight proof", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096314#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420526#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 17, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096314#step:12:1", + "duration_seconds": 18, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420526#step:12:1", "current_version": "0.11.0", "latest_version": "2.1.0", "next_installed_version": "2.1.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.305486+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.527695+00:00", "publish_state": "published" } } diff --git a/data/test-results/dapr.json b/data/test-results/dapr.json index 497b17b0f3..413c4111ce 100644 --- a/data/test-results/dapr.json +++ b/data/test-results/dapr.json @@ -5,10 +5,10 @@ "version": "1.16.2" }, "run": { - "id": "25877415436", + "id": "26658721315", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180907", - "timestamp": "2026-05-14T18:18:54Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491935", + "timestamp": "2026-05-29T19:48:57Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 1, + "duration_seconds": 2, "details": [ { "name": "Test 1 - Check dapr binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180907#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491935#step:6:1" }, { "name": "Test 2 - Check dapr version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180907#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491935#step:7:1" }, { "name": "Test 3 - Check dapr help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180907#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491935#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180907#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491935#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180907#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491935#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180907#step:11:1", + "duration_seconds": 2, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491935#step:11:1", "current_version": "1.16.2", "latest_version": "1.16.3", "next_installed_version": "1.16.3", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.305785+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.527958+00:00", "publish_state": "published" } } diff --git a/data/test-results/dapr_serverless.json b/data/test-results/dapr_serverless.json index 3debce27dc..9b82708f29 100644 --- a/data/test-results/dapr_serverless.json +++ b/data/test-results/dapr_serverless.json @@ -5,10 +5,10 @@ "version": "1.16.0" }, "run": { - "id": "25877427741", + "id": "26658731236", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218484", - "timestamp": "2026-05-14T18:19:11Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529587", + "timestamp": "2026-05-29T19:49:11Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 1, + "duration_seconds": 3, "details": [ { "name": "Test 1 - Check Node sample image availability", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218484#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529587#step:7:1" }, { "name": "Test 2 - Check Python sample image availability", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218484#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529587#step:8:1" }, { "name": "Test 3 - Check pulled image architecture", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218484#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529587#step:9:1" }, { "name": "Test 4 - Check Node sample runtime", "status": "passed", "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218484#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529587#step:10:1" }, { "name": "Test 5 - Check Python sample execution", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218484#step:11:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529587#step:11:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218484#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529587#step:12:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.306005+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.528138+00:00", "publish_state": "published" } } diff --git a/data/test-results/dask-cuda.json b/data/test-results/dask-cuda.json index 32d05d374b..8f0de8c63b 100644 --- a/data/test-results/dask-cuda.json +++ b/data/test-results/dask-cuda.json @@ -5,10 +5,10 @@ "version": "23.12.00" }, "run": { - "id": "25877395502", + "id": "26658703674", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110022", - "timestamp": "2026-05-14T18:18:26Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433041", + "timestamp": "2026-05-29T19:48:34Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 1, + "duration_seconds": 2, "details": [ { "name": "Test 1 - Baseline package evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110022#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433041#step:7:1" }, { "name": "Test 2 - Baseline version and release alignment", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110022#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433041#step:8:1" }, { "name": "Test 3 - Package-specific source or docs evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110022#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433041#step:9:1" }, { "name": "Test 4 - Arm64 support gate", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110022#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433041#step:10:1" }, { "name": "Test 5 - Run scoped Arm preflight proof", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110022#step:11:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433041#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110022#step:12:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433041#step:12:1", "current_version": "23.12.00", "latest_version": "26.04.00", "next_installed_version": "26.04.00", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.306216+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.528341+00:00", "publish_state": "published" } } diff --git a/data/test-results/databend.json b/data/test-results/databend.json index b87c61ff00..9b898c931f 100644 --- a/data/test-results/databend.json +++ b/data/test-results/databend.json @@ -5,10 +5,10 @@ "version": "1.2.861-nightly" }, "run": { - "id": "25877379982", + "id": "26658688675", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057302", - "timestamp": "2026-05-14T18:18:05Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380570", + "timestamp": "2026-05-29T19:48:14Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 19, + "duration_seconds": 20, "details": [ { "name": "Test 1 - Check databend-query binary", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057302#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380570#step:7:1" }, { "name": "Test 2 - Check version command", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057302#step:8:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380570#step:8:1" }, { "name": "Test 3 - Check help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057302#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380570#step:9:1" }, { "name": "Test 4 - Check version metadata output", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057302#step:10:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380570#step:10:1" }, { "name": "Test 5 - Architecture verification", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057302#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380570#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 17, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057302#step:12:1", + "duration_seconds": 18, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380570#step:12:1", "current_version": "1.2.861-nightly", "latest_version": "1.2.862-nightly", "next_installed_version": "1.2.862-nightly", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.306408+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.528529+00:00", "publish_state": "published" } } diff --git a/data/test-results/dav1d.json b/data/test-results/dav1d.json index f4503c2ac9..bf592af2ee 100644 --- a/data/test-results/dav1d.json +++ b/data/test-results/dav1d.json @@ -5,10 +5,10 @@ "version": "1.5.1" }, "run": { - "id": "25877399008", + "id": "26658707245", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048124706", - "timestamp": "2026-05-14T18:18:32Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575444535", + "timestamp": "2026-05-29T19:48:39Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check dav1d binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048124706#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575444535#step:7:1" }, { "name": "Test 2 - Check dav1d version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048124706#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575444535#step:8:1" }, { "name": "Test 3 - Check dav1d help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048124706#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575444535#step:9:1" }, { "name": "Test 4 - Check help exposes decoder options", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048124706#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575444535#step:10:1" }, { "name": "Test 5 - Architecture verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048124706#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575444535#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 8, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048124706#step:12:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575444535#step:12:1", "current_version": "1.5.1", "latest_version": "1.5.3", "next_installed_version": "1.5.3", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.306636+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.528704+00:00", "publish_state": "published" } } diff --git a/data/test-results/daytona.json b/data/test-results/daytona.json index 2d79dd842c..ccaa400463 100644 --- a/data/test-results/daytona.json +++ b/data/test-results/daytona.json @@ -5,10 +5,10 @@ "version": "0.151.0" }, "run": { - "id": "25877359516", + "id": "26658670904", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991476", - "timestamp": "2026-05-14T18:17:45Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321569", + "timestamp": "2026-05-29T19:47:53Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check daytona binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991476#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321569#step:7:1" }, { "name": "Test 2 - Check daytona version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991476#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321569#step:8:1" }, { "name": "Test 3 - Check daytona help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991476#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321569#step:9:1" }, { "name": "Test 4 - Architecture verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991476#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321569#step:10:1" }, { "name": "Test 5 - Functional validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991476#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321569#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991476#step:12:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321569#step:12:1", "current_version": "0.151.0", "latest_version": "0.152.0", "next_installed_version": "0.152.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.306859+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.528871+00:00", "publish_state": "published" } } diff --git a/data/test-results/dcgm-exporter.json b/data/test-results/dcgm-exporter.json index 6d28b342b9..5e0600fb60 100644 --- a/data/test-results/dcgm-exporter.json +++ b/data/test-results/dcgm-exporter.json @@ -5,10 +5,10 @@ "version": "2.3.2-2.6.3" }, "run": { - "id": "25877395502", + "id": "26658703674", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109975", - "timestamp": "2026-05-14T18:18:26Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433037", + "timestamp": "2026-05-29T19:48:34Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 19, + "duration_seconds": 21, "details": [ { "name": "Test 1 - Baseline package evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109975#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433037#step:7:1" }, { "name": "Test 2 - Baseline version and release alignment", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109975#step:8:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433037#step:8:1" }, { "name": "Test 3 - Package-specific source or docs evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109975#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433037#step:9:1" }, { "name": "Test 4 - Arm64 support gate", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109975#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433037#step:10:1" }, { "name": "Test 5 - Run scoped Arm preflight proof", "status": "passed", - "duration_seconds": 8, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109975#step:11:1" + "duration_seconds": 9, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433037#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 11, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109975#step:12:1", + "duration_seconds": 12, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433037#step:12:1", "current_version": "2.3.2-2.6.3", "latest_version": "4.5.2-4.8.1", "next_installed_version": "4.5.2-4.8.1", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.307046+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.529038+00:00", "publish_state": "published" } } diff --git a/data/test-results/dcgm.json b/data/test-results/dcgm.json index 5097ca7c74..58177da203 100644 --- a/data/test-results/dcgm.json +++ b/data/test-results/dcgm.json @@ -5,10 +5,10 @@ "version": "2.0.13" }, "run": { - "id": "25877395502", + "id": "26658703674", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109982", - "timestamp": "2026-05-14T18:18:26Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433132", + "timestamp": "2026-05-29T19:48:34Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 68, + "duration_seconds": 66, "details": [ { "name": "Test 1 - Baseline package evidence", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109982#step:7:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433132#step:7:1" }, { "name": "Test 2 - Baseline version and release alignment", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109982#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433132#step:8:1" }, { "name": "Test 3 - Package-specific source or docs evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109982#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433132#step:9:1" }, { "name": "Test 4 - Arm64 support gate", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109982#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433132#step:10:1" }, { "name": "Test 5 - Run scoped Arm preflight proof", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109982#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433132#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 68, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109982#step:12:1", + "duration_seconds": 66, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433132#step:12:1", "current_version": "2.0.13", "latest_version": "4.4.2", "next_installed_version": "4.4.2", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.307249+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.529201+00:00", "publish_state": "published" } } diff --git a/data/test-results/debian.json b/data/test-results/debian.json index 17a66e1360..aef84fcd86 100644 --- a/data/test-results/debian.json +++ b/data/test-results/debian.json @@ -5,10 +5,10 @@ "version": "trixie/sid" }, "run": { - "id": "25877379982", + "id": "26658688675", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057361", - "timestamp": "2026-05-14T18:18:06Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380564", + "timestamp": "2026-05-29T19:48:15Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 53, + "duration_seconds": 18, "details": [ { "name": "Test 1 - Check /etc/debian_version", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057361#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380564#step:6:1" }, { "name": "Test 2 - Check apt-get exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057361#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380564#step:7:1" }, { "name": "Test 3 - Check dpkg exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057361#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380564#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057361#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380564#step:9:1" }, { "name": "Test 5 - Functional Validation (apt install)", "status": "passed", - "duration_seconds": 53, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057361#step:10:1" + "duration_seconds": 18, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380564#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057361#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380564#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.307455+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.529411+00:00", "publish_state": "published" } } diff --git a/data/test-results/debian_elts.json b/data/test-results/debian_elts.json index de29ee22fd..349d0e6de4 100644 --- a/data/test-results/debian_elts.json +++ b/data/test-results/debian_elts.json @@ -5,10 +5,10 @@ "version": "11" }, "run": { - "id": "25877371674", + "id": "26658681575", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031792", - "timestamp": "2026-05-14T18:17:58Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357976", + "timestamp": "2026-05-29T19:48:07Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 14, + "duration_seconds": 16, "details": [ { "name": "Test 1 - Check image architecture", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031792#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357976#step:6:1" }, { "name": "Test 2 - Check OS release file", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031792#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357976#step:7:1" }, { "name": "Test 3 - Install package with apt", "status": "passed", "duration_seconds": 4, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031792#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357976#step:8:1" }, { "name": "Test 4 - Check architecture inside container", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031792#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357976#step:9:1" }, { "name": "Test 5 - Simple command execution", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031792#step:10:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357976#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 9, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031792#step:11:1", + "duration_seconds": 10, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357976#step:11:1", "current_version": "11", "latest_version": "12.13", "next_installed_version": "12", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.307670+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.529589+00:00", "publish_state": "published" } } diff --git a/data/test-results/deepspeed.json b/data/test-results/deepspeed.json index c8604f74d5..f79d2f3aa6 100644 --- a/data/test-results/deepspeed.json +++ b/data/test-results/deepspeed.json @@ -5,10 +5,10 @@ "version": "0.4.1" }, "run": { - "id": "25877395502", + "id": "26658703674", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110001", - "timestamp": "2026-05-14T18:18:25Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433239", + "timestamp": "2026-05-29T19:48:34Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,40 +26,40 @@ "name": "Test 1 - Baseline package evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110001#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433239#step:7:1" }, { "name": "Test 2 - Baseline version and release alignment", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110001#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433239#step:8:1" }, { "name": "Test 3 - Package-specific source or docs evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110001#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433239#step:9:1" }, { "name": "Test 4 - Arm64 support gate", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110001#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433239#step:10:1" }, { "name": "Test 5 - Bounded package-specific smoke", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110001#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433239#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 6, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110001#step:12:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433239#step:12:1", "current_version": "0.4.1", - "latest_version": "0.19.0", - "next_installed_version": "0.19.0", + "latest_version": "0.19.1", + "next_installed_version": "0.19.1", "decision": "limited_cpu_smoke_validated", "regression_result": "Arm preflight proof passed on Arm64", "comparison": "Test 6 limited_cpu_smoke_validated: cloned the next DeepSpeed source candidate on Arm64 and compiled/inspected its runtime config plus op-builder Python surfaces. This is CPU-side preflight evidence only; no GPU training or accelerator kernel execution is claimed." @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.307890+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.529761+00:00", "publish_state": "published" } } diff --git a/data/test-results/deepstreamHub.json b/data/test-results/deepstreamHub.json index 8119d8a7b7..2c351e8135 100644 --- a/data/test-results/deepstreamHub.json +++ b/data/test-results/deepstreamHub.json @@ -5,10 +5,10 @@ "version": "8.0.0" }, "run": { - "id": "25877423406", + "id": "26658727918", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209942", - "timestamp": "2026-05-14T18:19:01Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515958", + "timestamp": "2026-05-29T19:49:09Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check deepstream binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209942#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515958#step:6:1" }, { "name": "Test 2 - Check version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209942#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515958#step:7:1" }, { "name": "Test 3 - Check CLI output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209942#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515958#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209942#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515958#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209942#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515958#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209942#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515958#step:11:1", "current_version": "8.0.0", "latest_version": "9.0.0", "next_installed_version": "9.0.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.308077+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.529933+00:00", "publish_state": "published" } } diff --git a/data/test-results/deeptools.json b/data/test-results/deeptools.json index e8fe4c4268..e44913015d 100644 --- a/data/test-results/deeptools.json +++ b/data/test-results/deeptools.json @@ -5,10 +5,10 @@ "version": "3.5.6" }, "run": { - "id": "25877423406", + "id": "26658727918", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210275", - "timestamp": "2026-05-14T18:19:02Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516232", + "timestamp": "2026-05-29T19:49:08Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check deeptools binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210275#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516232#step:6:1" }, { "name": "Test 2 - Check version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210275#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516232#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210275#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516232#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210275#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516232#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210275#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516232#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210275#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516232#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.308289+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.530100+00:00", "publish_state": "published" } } diff --git a/data/test-results/dentos.json b/data/test-results/dentos.json index 0b65f7650b..6b0de5b775 100644 --- a/data/test-results/dentos.json +++ b/data/test-results/dentos.json @@ -5,10 +5,10 @@ "version": "v3.1" }, "run": { - "id": "25877383844", + "id": "26658692522", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071776", - "timestamp": "2026-05-14T18:18:11Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394859", + "timestamp": "2026-05-29T19:48:20Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 2, + "duration_seconds": 3, "details": [ { "name": "Test 1 - Check build scripts", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071776#step:6:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394859#step:6:1" }, { "name": "Test 2 - Check documentation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071776#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394859#step:7:1" }, { "name": "Test 3 - Check build environment setup", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071776#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394859#step:8:1" }, { "name": "Test 4 - Architecture verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071776#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394859#step:9:1" }, { "name": "Test 5 - Validate Arm64 Image Tooling", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071776#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394859#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071776#step:11:1", + "duration_seconds": 3, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394859#step:11:1", "current_version": "v3.1", "latest_version": "v3.2", "next_installed_version": "v3.2", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.308492+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.530286+00:00", "publish_state": "published" } } diff --git a/data/test-results/devtron.json b/data/test-results/devtron.json index faf9a0a6b3..aa86a2c0d7 100644 --- a/data/test-results/devtron.json +++ b/data/test-results/devtron.json @@ -5,10 +5,10 @@ "version": "1.1.0" }, "run": { - "id": "25877399008", + "id": "26658707245", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126017", - "timestamp": "2026-05-14T18:18:32Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445416", + "timestamp": "2026-05-29T19:48:39Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 32, + "duration_seconds": 26, "details": [ { "name": "Test 1 - Check Devtron chart exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126017#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445416#step:6:1" }, { "name": "Test 2 - Check chart metadata", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126017#step:7:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445416#step:7:1" }, { "name": "Test 3 - Resolve Helm dependencies", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126017#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445416#step:8:1" }, { "name": "Test 4 - Verify Arm64 image manifests", "status": "passed", - "duration_seconds": 19, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126017#step:9:1" + "duration_seconds": 11, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445416#step:9:1" }, { "name": "Test 5 - Render Devtron chart", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126017#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445416#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 13, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126017#step:11:1", + "duration_seconds": 15, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445416#step:11:1", "current_version": "1.1.0", "latest_version": "1.2.0", "next_installed_version": "1.2.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.308693+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.530468+00:00", "publish_state": "published" } } diff --git a/data/test-results/dhcp.json b/data/test-results/dhcp.json index 2752202140..2d1b1ff7a2 100644 --- a/data/test-results/dhcp.json +++ b/data/test-results/dhcp.json @@ -5,10 +5,10 @@ "version": "4.4.3-P1" }, "run": { - "id": "25877359516", + "id": "26658670904", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991602", - "timestamp": "2026-05-14T18:17:45Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321539", + "timestamp": "2026-05-29T19:47:53Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -25,38 +25,38 @@ { "name": "Test 1 - Check dhcpd binary exists", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991602#step:7:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321539#step:7:1" }, { "name": "Test 2 - Check version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991602#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321539#step:8:1" }, { "name": "Test 3 - Check config syntax check", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991602#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321539#step:9:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991602#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321539#step:10:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991602#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321539#step:11:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991602#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321539#step:12:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.308926+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.530636+00:00", "publish_state": "published" } } diff --git a/data/test-results/dify.json b/data/test-results/dify.json index 8e073f8048..3087c3ff8c 100644 --- a/data/test-results/dify.json +++ b/data/test-results/dify.json @@ -5,10 +5,10 @@ "version": "0.3.13" }, "run": { - "id": "25877395502", + "id": "26658703674", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110089", - "timestamp": "2026-05-14T18:18:25Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432889", + "timestamp": "2026-05-29T19:48:33Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,40 +26,40 @@ "name": "Test 1 - Baseline package evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110089#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432889#step:7:1" }, { "name": "Test 2 - Baseline version and release alignment", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110089#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432889#step:8:1" }, { "name": "Test 3 - Package-specific source or docs evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110089#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432889#step:9:1" }, { "name": "Test 4 - Arm64 support gate", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110089#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432889#step:10:1" }, { "name": "Test 5 - Bounded package-specific smoke", "status": "passed", "duration_seconds": 3, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110089#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432889#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 9, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110089#step:12:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432889#step:12:1", "current_version": "0.3.13", - "latest_version": "1.14.1", - "next_installed_version": "1.14.1", + "latest_version": "1.14.2", + "next_installed_version": "1.14.2", "decision": "limited_cpu_smoke_validated", "regression_result": "Arm preflight proof passed on Arm64", "comparison": "Compiled the next Dify backend Python source candidate on the Arm64 runner and validated its Docker Compose configuration. Full multi-service runtime remains scoped because external services and LLM configuration are required." @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.309109+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.530803+00:00", "publish_state": "published" } } diff --git a/data/test-results/disconf.json b/data/test-results/disconf.json index 327556a4d7..bb3f73dc6d 100644 --- a/data/test-results/disconf.json +++ b/data/test-results/disconf.json @@ -5,10 +5,10 @@ "version": "2.6.27" }, "run": { - "id": "25877387746", + "id": "26658696365", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083851", - "timestamp": "2026-05-14T18:18:17Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407600", + "timestamp": "2026-05-29T19:48:23Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 36, + "duration_seconds": 33, "details": [ { "name": "Test 1 - Check source tree exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083851#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407600#step:7:1" }, { "name": "Test 2 - Check Maven modules exist", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083851#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407600#step:8:1" }, { "name": "Test 3 - Check SQL assets exist", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083851#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407600#step:9:1" }, { "name": "Test 4 - Architecture verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083851#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407600#step:10:1" }, { "name": "Test 5 - Build baseline disconf-core in Temurin 8 container", "status": "passed", - "duration_seconds": 23, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083851#step:11:1" + "duration_seconds": 22, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407600#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 13, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083851#step:12:1", + "duration_seconds": 11, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407600#step:12:1", "current_version": "2.6.27", "latest_version": "2.6.28", "next_installed_version": "2.6.28", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.309315+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.530971+00:00", "publish_state": "published" } } diff --git a/data/test-results/distribution-registry.json b/data/test-results/distribution-registry.json index 8ca706e1ae..5756414c81 100644 --- a/data/test-results/distribution-registry.json +++ b/data/test-results/distribution-registry.json @@ -5,10 +5,10 @@ "version": "2.8.3" }, "run": { - "id": "25877406767", + "id": "26658714432", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155559", - "timestamp": "2026-05-14T18:18:44Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469234", + "timestamp": "2026-05-29T19:48:49Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 21, + "duration_seconds": 20, "details": [ { "name": "Test 1 - Check registry binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155559#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469234#step:7:1" }, { "name": "Test 2 - Check version banner", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155559#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469234#step:8:1" }, { "name": "Test 3 - Check help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155559#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469234#step:9:1" }, { "name": "Test 4 - Architecture verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155559#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469234#step:10:1" }, { "name": "Test 5 - Start baseline registry", "status": "passed", "duration_seconds": 10, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155559#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469234#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 11, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155559#step:12:1", + "duration_seconds": 10, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469234#step:12:1", "current_version": "2.8.3", "latest_version": "3.0.0", "next_installed_version": "3.0.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.309530+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.531138+00:00", "publish_state": "published" } } diff --git a/data/test-results/django.json b/data/test-results/django.json index 739c5922e6..bf6fbb42d5 100644 --- a/data/test-results/django.json +++ b/data/test-results/django.json @@ -5,10 +5,10 @@ "version": "6.0.5" }, "run": { - "id": "25877392111", + "id": "26658699892", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096420", - "timestamp": "2026-05-14T18:18:23Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420635", + "timestamp": "2026-05-29T19:48:29Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check django-admin binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096420#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420635#step:6:1" }, { "name": "Test 2 - Check version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096420#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420635#step:7:1" }, { "name": "Test 3 - Create Project", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096420#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420635#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096420#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420635#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096420#step:10:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420635#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096420#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420635#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.309726+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.531323+00:00", "publish_state": "published" } } diff --git a/data/test-results/dm.json b/data/test-results/dm.json index a350d2bfb0..4d0f29be17 100644 --- a/data/test-results/dm.json +++ b/data/test-results/dm.json @@ -5,10 +5,10 @@ "version": "1.0.11" }, "run": { - "id": "25877379982", + "id": "26658688675", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057134", - "timestamp": "2026-05-14T18:18:05Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380586", + "timestamp": "2026-05-29T19:48:16Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 1, + "duration_seconds": 0, "details": [ { "name": "Test 1 - Package existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057134#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380586#step:6:1" }, { "name": "Test 2 - Exact version check", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057134#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380586#step:7:1" }, { "name": "Test 3 - Help output", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057134#step:8:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380586#step:8:1" }, { "name": "Test 4 - Architecture verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057134#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380586#step:9:1" }, { "name": "Test 5 - Functional validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057134#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380586#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057134#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380586#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.309931+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.531497+00:00", "publish_state": "published" } } diff --git a/data/test-results/dnsmasq.json b/data/test-results/dnsmasq.json index e0e42f451b..88a1990a78 100644 --- a/data/test-results/dnsmasq.json +++ b/data/test-results/dnsmasq.json @@ -5,10 +5,10 @@ "version": "2.90" }, "run": { - "id": "25877383844", + "id": "26658692522", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071187", - "timestamp": "2026-05-14T18:18:12Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394841", + "timestamp": "2026-05-29T19:48:19Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check dnsmasq binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071187#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394841#step:6:1" }, { "name": "Test 2 - Check version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071187#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394841#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071187#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394841#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071187#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394841#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071187#step:10:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394841#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071187#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394841#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.310131+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.531665+00:00", "publish_state": "published" } } diff --git a/data/test-results/docker-ce.json b/data/test-results/docker-ce.json index ceda752882..8b33fdc74d 100644 --- a/data/test-results/docker-ce.json +++ b/data/test-results/docker-ce.json @@ -5,10 +5,10 @@ "version": "24.0.3" }, "run": { - "id": "25877403044", + "id": "26658710721", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140556", - "timestamp": "2026-05-14T18:18:37Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456224", + "timestamp": "2026-05-29T19:48:44Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,43 +26,43 @@ "name": "Test 1 - Check docker and dockerd binaries exist", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140556#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456224#step:6:1" }, { "name": "Test 2 - Check docker client version output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140556#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456224#step:7:1" }, { "name": "Test 3 - Check dockerd version output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140556#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456224#step:8:1" }, { "name": "Test 4 - Check docker help output", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140556#step:9:1" + "duration_seconds": 3, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456224#step:9:1" }, { "name": "Test 5 - Verify Arm64 binaries", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140556#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456224#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140556#step:11:1", + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456224#step:11:1", "current_version": "24.0.3", - "latest_version": "29.4.3", - "next_installed_version": "29.4.3", + "latest_version": "29.5.2", + "next_installed_version": "29.5.2", "decision": "next_install_validated", "regression_result": "Next version installed successfully on Arm64", - "comparison": "Current pinned Docker CE version 24.0.3 passed smoke tests in this run. Regression validation downloaded the next official Arm64 static release 29.4.3, and both the docker client and dockerd binaries reported version 29.4.3 on Arm64." + "comparison": "Current pinned Docker CE version 24.0.3 passed smoke tests in this run. Regression validation downloaded the next official Arm64 static release 29.5.2, and both the docker client and dockerd binaries reported version 29.5.2 on Arm64." } ] }, @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.310318+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.531827+00:00", "publish_state": "published" } } diff --git a/data/test-results/docker.json b/data/test-results/docker.json index eee23664b6..3be23c5f79 100644 --- a/data/test-results/docker.json +++ b/data/test-results/docker.json @@ -5,10 +5,10 @@ "version": "28.0.4" }, "run": { - "id": "25877415436", + "id": "26658721315", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180791", - "timestamp": "2026-05-14T18:18:50Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491602", + "timestamp": "2026-05-29T19:48:58Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 4, + "duration_seconds": 6, "details": [ { "name": "Test 1 - Check docker binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180791#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491602#step:6:1" }, { "name": "Test 2 - Check version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180791#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491602#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", "duration_seconds": 3, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180791#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491602#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180791#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491602#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180791#step:10:1" + "duration_seconds": 4, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491602#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180791#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491602#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.310594+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.532080+00:00", "publish_state": "published" } } diff --git a/data/test-results/docker_compose.json b/data/test-results/docker_compose.json index 5db5784f19..1c565df152 100644 --- a/data/test-results/docker_compose.json +++ b/data/test-results/docker_compose.json @@ -5,10 +5,10 @@ "version": "2.35.1" }, "run": { - "id": "25877427741", + "id": "26658731236", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218449", - "timestamp": "2026-05-14T18:19:09Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529661", + "timestamp": "2026-05-29T19:49:11Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 0, + "duration_seconds": 1, "details": [ { "name": "Test 1 - Check docker-compose binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218449#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529661#step:6:1" }, { "name": "Test 2 - Check docker-compose version output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218449#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529661#step:7:1" }, { "name": "Test 3 - Check docker-compose help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218449#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529661#step:8:1" }, { "name": "Test 4 - Functional Validation (config help)", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218449#step:9:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529661#step:9:1" }, { "name": "Test 5 - Verify Arm64 binary", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218449#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529661#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218449#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529661#step:11:1", "current_version": "2.35.1", "latest_version": "2.36.0", "next_installed_version": "2.36.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.310807+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.532266+00:00", "publish_state": "published" } } diff --git a/data/test-results/dolphinscheduler.json b/data/test-results/dolphinscheduler.json index 00cfa2b13c..762e387689 100644 --- a/data/test-results/dolphinscheduler.json +++ b/data/test-results/dolphinscheduler.json @@ -5,10 +5,10 @@ "version": "3.2.1" }, "run": { - "id": "25877399008", + "id": "26658707245", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125960", - "timestamp": "2026-05-14T18:18:43Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445238", + "timestamp": "2026-05-29T19:48:46Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 15, + "duration_seconds": 16, "details": [ { "name": "Test 1 - Check distribution scripts exist", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125960#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445238#step:10:1" }, { "name": "Test 2 - Check alert-server directory exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125960#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445238#step:11:1" }, { "name": "Test 3 - Check alert-server config exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125960#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445238#step:12:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125960#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445238#step:13:1" }, { "name": "Test 5 - Functional validation (distribution layout)", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125960#step:14:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445238#step:14:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 15, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125960#step:15:1", + "duration_seconds": 16, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445238#step:15:1", "current_version": "3.2.1", "latest_version": "3.4.1", "next_installed_version": "3.4.1", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.310994+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.532455+00:00", "publish_state": "published" } } diff --git a/data/test-results/domo-java-sdk.json b/data/test-results/domo-java-sdk.json index a46938ecbc..c60303683d 100644 --- a/data/test-results/domo-java-sdk.json +++ b/data/test-results/domo-java-sdk.json @@ -5,10 +5,10 @@ "version": "v0.2.0" }, "run": { - "id": "25877367704", + "id": "26658677990", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027094", - "timestamp": "2026-05-14T18:17:55Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347159", + "timestamp": "2026-05-29T19:48:03Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 33, + "duration_seconds": 40, "details": [ { "name": "Test 1 - Check smoke project files", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027094#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347159#step:6:1" }, { "name": "Test 2 - Check dependency resolution", "status": "passed", - "duration_seconds": 20, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027094#step:7:1" + "duration_seconds": 25, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347159#step:7:1" }, { "name": "Test 3 - Check Maven project configuration", "status": "passed", - "duration_seconds": 5, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027094#step:8:1" + "duration_seconds": 6, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347159#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027094#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347159#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 8, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027094#step:10:1" + "duration_seconds": 9, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347159#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027094#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347159#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.311205+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.532638+00:00", "publish_state": "published" } } diff --git a/data/test-results/domo-node-sdk.json b/data/test-results/domo-node-sdk.json index 215072d1ac..20d8989199 100644 --- a/data/test-results/domo-node-sdk.json +++ b/data/test-results/domo-node-sdk.json @@ -5,10 +5,10 @@ "version": "2.0.1" }, "run": { - "id": "25877415436", + "id": "26658721315", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180677", - "timestamp": "2026-05-14T18:18:53Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491796", + "timestamp": "2026-05-29T19:48:57Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 2, + "duration_seconds": 1, "details": [ { "name": "Test 1 - Check npm package exists", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180677#step:6:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491796#step:6:1" }, { "name": "Test 2 - Verify Node.js import", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180677#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491796#step:7:1" }, { "name": "Test 3 - Check for npm", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180677#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491796#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180677#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491796#step:9:1" }, { "name": "Test 5 - Basic Functional Check", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180677#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491796#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180677#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491796#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.311383+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.532809+00:00", "publish_state": "published" } } diff --git a/data/test-results/domo-python-sdk.json b/data/test-results/domo-python-sdk.json index d3294bf800..fdb3a7f8f4 100644 --- a/data/test-results/domo-python-sdk.json +++ b/data/test-results/domo-python-sdk.json @@ -5,10 +5,10 @@ "version": "0.3.0.16" }, "run": { - "id": "25877387746", + "id": "26658696365", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048085240", - "timestamp": "2026-05-14T18:18:15Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407618", + "timestamp": "2026-05-29T19:48:25Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 1, + "duration_seconds": 2, "details": [ { "name": "Test 1 - Check package installed", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048085240#step:6:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407618#step:6:1" }, { "name": "Test 2 - Check import", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048085240#step:7:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407618#step:7:1" }, { "name": "Test 3 - Check Domo class", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048085240#step:8:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407618#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048085240#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407618#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048085240#step:10:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407618#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048085240#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407618#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.311574+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.532977+00:00", "publish_state": "published" } } diff --git a/data/test-results/dot-net.json b/data/test-results/dot-net.json index 7b36bd71c0..c08b8ef9b1 100644 --- a/data/test-results/dot-net.json +++ b/data/test-results/dot-net.json @@ -2,13 +2,13 @@ "schema_version": "2.0", "package": { "name": ".NET", - "version": "8.0.126" + "version": "8.0.127" }, "run": { - "id": "25877423406", + "id": "26658727918", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209429", - "timestamp": "2026-05-14T18:19:10Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516246", + "timestamp": "2026-05-29T19:49:08Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 1, + "duration_seconds": 0, "details": [ { "name": "Test 1 - Check dotnet binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209429#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516246#step:6:1" }, { "name": "Test 2 - Check dotnet version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209429#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516246#step:7:1" }, { "name": "Test 3 - Check dotnet help output", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209429#step:8:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516246#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209429#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516246#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209429#step:10:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516246#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209429#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516246#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.311787+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.533141+00:00", "publish_state": "published" } } diff --git a/data/test-results/double-conversion.json b/data/test-results/double-conversion.json index 917ab65777..c50a4ed703 100644 --- a/data/test-results/double-conversion.json +++ b/data/test-results/double-conversion.json @@ -5,10 +5,10 @@ "version": "3.3.1" }, "run": { - "id": "25877403044", + "id": "26658710721", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140918", - "timestamp": "2026-05-14T18:18:37Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456126", + "timestamp": "2026-05-29T19:48:43Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check CMakeLists.txt exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140918#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456126#step:6:1" }, { "name": "Test 2 - Check built library", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140918#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456126#step:7:1" }, { "name": "Test 3 - Check header files", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140918#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456126#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140918#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456126#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140918#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456126#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 4, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140918#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456126#step:11:1", "current_version": "3.3.1", "latest_version": "3.4.0", "next_installed_version": "3.4.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.311994+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.533329+00:00", "publish_state": "published" } } diff --git a/data/test-results/dqlite.json b/data/test-results/dqlite.json index 6f6f7663d7..d8ad762523 100644 --- a/data/test-results/dqlite.json +++ b/data/test-results/dqlite.json @@ -5,10 +5,10 @@ "version": "source-build" }, "run": { - "id": "25877403044", + "id": "26658710721", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048139929", - "timestamp": "2026-05-14T18:18:39Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455506", + "timestamp": "2026-05-29T19:48:43Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 43, + "duration_seconds": 14, "details": [ { "name": "Test 1 - Check Binary", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048139929#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455506#step:7:1" }, { "name": "Test 2 - Run Help", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048139929#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455506#step:8:1" }, { "name": "Test 3 - Check Library File", "status": "passed", - "duration_seconds": 43, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048139929#step:9:1" + "duration_seconds": 14, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455506#step:9:1" }, { "name": "Test 4 - Check Pkg-Config", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048139929#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455506#step:10:1" }, { "name": "Test 5 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048139929#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455506#step:11:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048139929#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455506#step:12:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.312176+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.533504+00:00", "publish_state": "published" } } diff --git a/data/test-results/dragonfly.json b/data/test-results/dragonfly.json index 7eb2817951..c8c0c102ca 100644 --- a/data/test-results/dragonfly.json +++ b/data/test-results/dragonfly.json @@ -5,10 +5,10 @@ "version": "v2.2.1" }, "run": { - "id": "25877363365", + "id": "26658674448", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001014", - "timestamp": "2026-05-14T18:17:48Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334527", + "timestamp": "2026-05-29T19:47:59Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 3, + "duration_seconds": 6, "details": [ { "name": "Test 1 - Check Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001014#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334527#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001014#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334527#step:7:1" }, { "name": "Test 3 - Check Help Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001014#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334527#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001014#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334527#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001014#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334527#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 3, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001014#step:11:1", + "duration_seconds": 6, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334527#step:11:1", "current_version": "v2.2.1", "latest_version": "v2.2.2", "next_installed_version": "v2.2.2", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.312378+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.533672+00:00", "publish_state": "published" } } diff --git a/data/test-results/dragonflydb.json b/data/test-results/dragonflydb.json index dbaa5aafd1..87d8f1916c 100644 --- a/data/test-results/dragonflydb.json +++ b/data/test-results/dragonflydb.json @@ -5,10 +5,10 @@ "version": "v1.27.3" }, "run": { - "id": "25877392111", + "id": "26658699892", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095789", - "timestamp": "2026-05-14T18:18:23Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420693", + "timestamp": "2026-05-29T19:48:30Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check dragonfly binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095789#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420693#step:6:1" }, { "name": "Test 2 - Check version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095789#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420693#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095789#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420693#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095789#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420693#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 5, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095789#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420693#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095789#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420693#step:11:1", "current_version": "v1.27.3", "latest_version": "v1.27.4", "next_installed_version": "v1.27.4", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.312606+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.533843+00:00", "publish_state": "published" } } diff --git a/data/test-results/drbd.json b/data/test-results/drbd.json index 61b42e96ee..a0c865cb29 100644 --- a/data/test-results/drbd.json +++ b/data/test-results/drbd.json @@ -5,10 +5,10 @@ "version": "9.22.0" }, "run": { - "id": "25877387746", + "id": "26658696365", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084712", - "timestamp": "2026-05-14T18:18:16Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408060", + "timestamp": "2026-05-29T19:48:25Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check drbdadm binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084712#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408060#step:6:1" }, { "name": "Test 2 - Check version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084712#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408060#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084712#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408060#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084712#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408060#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084712#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408060#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084712#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408060#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.312827+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.534007+00:00", "publish_state": "published" } } diff --git a/data/test-results/drone.json b/data/test-results/drone.json index c15bcc954e..4a9aecfb2b 100644 --- a/data/test-results/drone.json +++ b/data/test-results/drone.json @@ -5,10 +5,10 @@ "version": "1.8.0" }, "run": { - "id": "25877427741", + "id": "26658731236", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218809", - "timestamp": "2026-05-14T18:19:14Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529678", + "timestamp": "2026-05-29T19:49:11Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218809#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529678#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218809#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529678#step:7:1" }, { "name": "Test 3 - Check Help Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218809#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529678#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218809#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529678#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218809#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529678#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218809#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529678#step:11:1", "current_version": "1.8.0", "latest_version": "1.9.0", "next_installed_version": "1.9.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.313036+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.534184+00:00", "publish_state": "published" } } diff --git a/data/test-results/druid.json b/data/test-results/druid.json index 976c649622..b233e05c97 100644 --- a/data/test-results/druid.json +++ b/data/test-results/druid.json @@ -5,10 +5,10 @@ "version": "31.0.0" }, "run": { - "id": "25877419588", + "id": "26658724696", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192457", - "timestamp": "2026-05-14T18:19:04Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503946", + "timestamp": "2026-05-29T19:49:07Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 30, + "duration_seconds": 32, "details": [ { "name": "Test 1 - Check quickstart script exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192457#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503946#step:11:1" }, { "name": "Test 2 - Check configuration directory exists", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192457#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503946#step:12:1" }, { "name": "Test 3 - Check library directory contains jars", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192457#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503946#step:13:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192457#step:14:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503946#step:14:1" }, { "name": "Test 5 - Functional Validation (script syntax and runtime helpers)", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192457#step:15:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503946#step:15:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 30, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192457#step:16:1", + "duration_seconds": 32, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503946#step:16:1", "current_version": "31.0.0", "latest_version": "36.0.0", "next_installed_version": "36.0.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.313247+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.534399+00:00", "publish_state": "published" } } diff --git a/data/test-results/drupal.json b/data/test-results/drupal.json index 199474efe7..525df3cd81 100644 --- a/data/test-results/drupal.json +++ b/data/test-results/drupal.json @@ -5,10 +5,10 @@ "version": "10.2.4" }, "run": { - "id": "25877395502", + "id": "26658703674", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109967", - "timestamp": "2026-05-14T18:18:26Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433083", + "timestamp": "2026-05-29T19:48:34Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 2, + "duration_seconds": 1, "details": [ { "name": "Test 1 - Check drupal directory exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109967#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433083#step:6:1" }, { "name": "Test 2 - Check index.php", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109967#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433083#step:7:1" }, { "name": "Test 3 - Check core bootstrap file", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109967#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433083#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109967#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433083#step:9:1" }, { "name": "Test 5 - Functional Validation (source tree layout)", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109967#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433083#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109967#step:11:1", + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433083#step:11:1", "current_version": "10.2.4", "latest_version": "11.2.5", "next_installed_version": "11.2.5", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.313452+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.534576+00:00", "publish_state": "published" } } diff --git a/data/test-results/dubbo-go.json b/data/test-results/dubbo-go.json index 8fa705af93..e200709fe8 100644 --- a/data/test-results/dubbo-go.json +++ b/data/test-results/dubbo-go.json @@ -5,10 +5,10 @@ "version": "v3.1.1" }, "run": { - "id": "25877411197", + "id": "26658717942", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175468", - "timestamp": "2026-05-14T18:18:50Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479617", + "timestamp": "2026-05-29T19:48:52Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 31, + "duration_seconds": 34, "details": [ { "name": "Test 1 - Check go.mod exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175468#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479617#step:6:1" }, { "name": "Test 2 - Check repository layout", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175468#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479617#step:7:1" }, { "name": "Test 3 - Check module path", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175468#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479617#step:8:1" }, { "name": "Test 4 - Architecture verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175468#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479617#step:9:1" }, { "name": "Test 5 - Functional validation", "status": "passed", - "duration_seconds": 22, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175468#step:10:1" + "duration_seconds": 25, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479617#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 9, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175468#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479617#step:11:1", "current_version": "v3.1.1", "latest_version": "v3.3.0", "next_installed_version": "v3.3.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.313647+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.534755+00:00", "publish_state": "published" } } diff --git a/data/test-results/dubbo-java.json b/data/test-results/dubbo-java.json index eae342aba1..286b667c27 100644 --- a/data/test-results/dubbo-java.json +++ b/data/test-results/dubbo-java.json @@ -5,10 +5,10 @@ "version": "dubbo-3.2.17" }, "run": { - "id": "25877411197", + "id": "26658717942", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175196", - "timestamp": "2026-05-14T18:18:50Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480038", + "timestamp": "2026-05-29T19:48:53Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 22, + "duration_seconds": 20, "details": [ { "name": "Test 1 - Check pom.xml exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175196#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480038#step:6:1" }, { "name": "Test 2 - Check dubbo-common jar exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175196#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480038#step:7:1" }, { "name": "Test 3 - Check dubbo-common classes", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175196#step:8:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480038#step:8:1" }, { "name": "Test 4 - Architecture verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175196#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480038#step:9:1" }, { "name": "Test 5 - Functional validation", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175196#step:10:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480038#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 21, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175196#step:11:1", + "duration_seconds": 19, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480038#step:11:1", "current_version": "dubbo-3.2.17", "latest_version": "dubbo-3.2.18", "next_installed_version": "dubbo-3.2.18", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.313856+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.534946+00:00", "publish_state": "published" } } diff --git a/data/test-results/dvc.json b/data/test-results/dvc.json index eada4e56c9..2081b4fb9e 100644 --- a/data/test-results/dvc.json +++ b/data/test-results/dvc.json @@ -5,10 +5,10 @@ "version": "0.9.1" }, "run": { - "id": "25877395502", + "id": "26658703674", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110000", - "timestamp": "2026-05-14T18:18:27Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432884", + "timestamp": "2026-05-29T19:48:35Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 10, + "duration_seconds": 9, "details": [ { "name": "Test 1 - Package installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110000#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432884#step:7:1" }, { "name": "Test 2 - Version metadata matches baseline", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110000#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432884#step:8:1" }, { "name": "Test 3 - Installed files metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110000#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432884#step:9:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110000#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432884#step:10:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110000#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432884#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 10, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110000#step:12:1", + "duration_seconds": 9, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432884#step:12:1", "current_version": "0.9.1", "latest_version": "0.9.2", "next_installed_version": "0.9.2", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.314064+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.535122+00:00", "publish_state": "published" } } diff --git a/data/test-results/dynamorio.json b/data/test-results/dynamorio.json index dfe5ec39cf..3a29ea41a4 100644 --- a/data/test-results/dynamorio.json +++ b/data/test-results/dynamorio.json @@ -5,10 +5,10 @@ "version": "11.1.0" }, "run": { - "id": "25877411197", + "id": "26658717942", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175202", - "timestamp": "2026-05-14T18:18:50Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479449", + "timestamp": "2026-05-29T19:48:52Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 8, + "duration_seconds": 9, "details": [ { "name": "Test 1 - Check drrun binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175202#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479449#step:6:1" }, { "name": "Test 2 - Check packaged version metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175202#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479449#step:7:1" }, { "name": "Test 3 - Check samples directory", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175202#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479449#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175202#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479449#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175202#step:10:1" + "duration_seconds": 2, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479449#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 7, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175202#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479449#step:11:1", "current_version": "11.1.0", "latest_version": "11.2.0", "next_installed_version": "11.2.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.314264+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.535310+00:00", "publish_state": "published" } } diff --git a/data/test-results/dynatrace.json b/data/test-results/dynatrace.json index d2f367d9a6..e69e4ac97e 100644 --- a/data/test-results/dynatrace.json +++ b/data/test-results/dynatrace.json @@ -5,10 +5,10 @@ "version": "v1.5.0" }, "run": { - "id": "25877392111", + "id": "26658699892", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096529", - "timestamp": "2026-05-14T18:18:23Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420518", + "timestamp": "2026-05-29T19:48:31Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check repository exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096529#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420518#step:7:1" }, { "name": "Test 2 - Check core project files", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096529#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420518#step:8:1" }, { "name": "Test 3 - Check operator directories", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096529#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420518#step:9:1" }, { "name": "Test 4 - Architecture verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096529#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420518#step:10:1" }, { "name": "Test 5 - Functional validation", "status": "passed", - "duration_seconds": 14, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096529#step:11:1" + "duration_seconds": 13, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420518#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096529#step:12:1", + "duration_seconds": 2, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420518#step:12:1", "current_version": "v1.5.0", "latest_version": "v1.5.1", "next_installed_version": "v1.5.1", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.314456+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.536299+00:00", "publish_state": "published" } } diff --git a/data/test-results/ecctl.json b/data/test-results/ecctl.json index e6820a1835..b4e209a02c 100644 --- a/data/test-results/ecctl.json +++ b/data/test-results/ecctl.json @@ -5,10 +5,10 @@ "version": "1.14.0" }, "run": { - "id": "25877411197", + "id": "26658717942", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175256", - "timestamp": "2026-05-14T18:18:50Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479810", + "timestamp": "2026-05-29T19:48:52Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 1, + "duration_seconds": 0, "details": [ { "name": "Test 1 - Check ecctl binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175256#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479810#step:6:1" }, { "name": "Test 2 - Check ecctl version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175256#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479810#step:7:1" }, { "name": "Test 3 - Check ecctl help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175256#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479810#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175256#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479810#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175256#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479810#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175256#step:11:1", + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479810#step:11:1", "current_version": "1.14.0", "latest_version": "1.14.1", "next_installed_version": "1.14.1", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.314638+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.536503+00:00", "publish_state": "published" } } diff --git a/data/test-results/eclipse_temurin.json b/data/test-results/eclipse_temurin.json index f88938af1a..8fa7c722b6 100644 --- a/data/test-results/eclipse_temurin.json +++ b/data/test-results/eclipse_temurin.json @@ -5,10 +5,10 @@ "version": "21.0.7" }, "run": { - "id": "25877415436", + "id": "26658721315", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180900", - "timestamp": "2026-05-14T18:18:50Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491832", + "timestamp": "2026-05-29T19:48:56Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 4, + "duration_seconds": 7, "details": [ { "name": "Test 1 - Check Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180900#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491832#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180900#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491832#step:7:1" }, { "name": "Test 3 - Check Help Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180900#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491832#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180900#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491832#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180900#step:10:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491832#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 4, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180900#step:11:1", + "duration_seconds": 6, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491832#step:11:1", "current_version": "21.0.7+6", "latest_version": "21.0.8+9", "next_installed_version": "21.0.8", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.314873+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.536678+00:00", "publish_state": "published" } } diff --git a/data/test-results/edot-collector.json b/data/test-results/edot-collector.json index f38d29fe71..a4d0b64336 100644 --- a/data/test-results/edot-collector.json +++ b/data/test-results/edot-collector.json @@ -5,10 +5,10 @@ "version": "9.2.0" }, "run": { - "id": "25877383844", + "id": "26658692522", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071114", - "timestamp": "2026-05-14T18:18:12Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394350", + "timestamp": "2026-05-29T19:48:20Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 32, + "duration_seconds": 38, "details": [ { "name": "Test 1 - Check EDOT wrapper exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071114#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394350#step:6:1" }, { "name": "Test 2 - Check embedded package version", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071114#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394350#step:7:1" }, { "name": "Test 3 - Check collector help output", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071114#step:8:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394350#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071114#step:9:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394350#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071114#step:10:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394350#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 31, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071114#step:11:1", + "duration_seconds": 36, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394350#step:11:1", "current_version": "9.2.0", "latest_version": "9.2.1", "next_installed_version": "9.2.1", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.315051+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.536857+00:00", "publish_state": "published" } } diff --git a/data/test-results/edot-dotnet-sdk.json b/data/test-results/edot-dotnet-sdk.json index 3e36bdca4b..2ae644b461 100644 --- a/data/test-results/edot-dotnet-sdk.json +++ b/data/test-results/edot-dotnet-sdk.json @@ -5,10 +5,10 @@ "version": "Elastic.OpenTelemetry" }, "run": { - "id": "25877403044", + "id": "26658710721", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140570", - "timestamp": "2026-05-14T18:18:38Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456087", + "timestamp": "2026-05-29T19:48:45Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check dotnet binary", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140570#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456087#step:6:1" }, { "name": "Test 2 - Check package version metadata", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140570#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456087#step:7:1" }, { "name": "Test 3 - Check CLI info output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140570#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456087#step:8:1" }, { "name": "Test 4 - Verify architecture", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140570#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456087#step:9:1" }, { "name": "Test 5 - Functional build and run", "status": "passed", "duration_seconds": 5, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140570#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456087#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140570#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456087#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.315371+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.537119+00:00", "publish_state": "published" } } diff --git a/data/test-results/eigen.json b/data/test-results/eigen.json index f96ee78f89..f1dc821ba2 100644 --- a/data/test-results/eigen.json +++ b/data/test-results/eigen.json @@ -5,10 +5,10 @@ "version": "3.4.0" }, "run": { - "id": "25877367704", + "id": "26658677990", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026995", - "timestamp": "2026-05-14T18:17:54Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347012", + "timestamp": "2026-05-29T19:48:02Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check header directory", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026995#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347012#step:6:1" }, { "name": "Test 2 - Check version metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026995#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347012#step:7:1" }, { "name": "Test 3 - Check compiler flags output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026995#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347012#step:8:1" }, { "name": "Test 4 - Verify architecture", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026995#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347012#step:9:1" }, { "name": "Test 5 - Functional compile and run", "status": "passed", "duration_seconds": 3, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026995#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347012#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026995#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347012#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.315557+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.537319+00:00", "publish_state": "published" } } diff --git a/data/test-results/elastic-agent.json b/data/test-results/elastic-agent.json index ce9fca2acf..53d1bce8df 100644 --- a/data/test-results/elastic-agent.json +++ b/data/test-results/elastic-agent.json @@ -5,10 +5,10 @@ "version": "9.2.0" }, "run": { - "id": "25877387746", + "id": "26658696365", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084602", - "timestamp": "2026-05-14T18:18:16Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407617", + "timestamp": "2026-05-29T19:48:25Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084602#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407617#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084602#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407617#step:7:1" }, { "name": "Test 3 - Check Help Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084602#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407617#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084602#step:9:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407617#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084602#step:10:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407617#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 35, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084602#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407617#step:11:1", "current_version": "9.2.0", "latest_version": "9.2.1", "next_installed_version": "9.2.1", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.315738+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.537501+00:00", "publish_state": "published" } } diff --git a/data/test-results/elastic-connector.json b/data/test-results/elastic-connector.json index 56d12f1115..537e23d517 100644 --- a/data/test-results/elastic-connector.json +++ b/data/test-results/elastic-connector.json @@ -5,10 +5,10 @@ "version": "9.3.1" }, "run": { - "id": "25877427741", + "id": "26658731236", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218556", - "timestamp": "2026-05-14T18:19:17Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529755", + "timestamp": "2026-05-29T19:49:11Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Artifact Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218556#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529755#step:6:1" }, { "name": "Test 2 - Version Check", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218556#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529755#step:7:1" }, { "name": "Test 3 - Help Output Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218556#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529755#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218556#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529755#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218556#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529755#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218556#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529755#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.315973+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.537678+00:00", "publish_state": "published" } } diff --git a/data/test-results/elastic-crawler.json b/data/test-results/elastic-crawler.json index 07c9642f7a..3397cbd735 100644 --- a/data/test-results/elastic-crawler.json +++ b/data/test-results/elastic-crawler.json @@ -5,10 +5,10 @@ "version": "0.4.1" }, "run": { - "id": "25877415436", + "id": "26658721315", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179865", - "timestamp": "2026-05-14T18:18:50Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491726", + "timestamp": "2026-05-29T19:48:58Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 19, + "duration_seconds": 21, "details": [ { "name": "Test 1 - Artifact Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179865#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491726#step:6:1" }, { "name": "Test 2 - Version Check", "status": "passed", - "duration_seconds": 6, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179865#step:7:1" + "duration_seconds": 7, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491726#step:7:1" }, { "name": "Test 3 - Help Output Validation", "status": "passed", - "duration_seconds": 6, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179865#step:8:1" + "duration_seconds": 7, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491726#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179865#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491726#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 7, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179865#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491726#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179865#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491726#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.316186+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.537842+00:00", "publish_state": "published" } } diff --git a/data/test-results/elastic-defend.json b/data/test-results/elastic-defend.json index 56697f8881..afd8b41afa 100644 --- a/data/test-results/elastic-defend.json +++ b/data/test-results/elastic-defend.json @@ -5,10 +5,10 @@ "version": "9.1.0" }, "run": { - "id": "25877375677", + "id": "26658685142", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044476", - "timestamp": "2026-05-14T18:18:02Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370360", + "timestamp": "2026-05-29T19:48:10Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,49 +20,49 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 34, + "duration_seconds": 11, "details": [ { "name": "Test 1 - Check Carrier Binary and Component Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044476#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370360#step:6:1" }, { "name": "Test 2 - Check Carrier Version Output", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044476#step:7:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370360#step:7:1" }, { "name": "Test 3 - Check Carrier Help Output", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044476#step:8:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370360#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044476#step:9:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370360#step:9:1" }, { "name": "Test 5 - Embedded Component Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044476#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370360#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 32, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044476#step:11:1", + "duration_seconds": 10, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370360#step:11:1", "current_version": "9.1.0", - "latest_version": "9.4.1", - "next_installed_version": "9.4.1", + "latest_version": "9.4.2", + "next_installed_version": "9.4.2", "decision": "next_install_validated", "regression_result": "Next version installed successfully on Arm64", - "comparison": "Current pinned Elastic Defend carrier bundle version 9.1.0 passed smoke tests in this run. Regression validation downloaded Elastic Agent Arm64 bundle 9.4.1, and the candidate bundle reported version 9.4.1 while the embedded endpoint-security Arm64 component and resources validated successfully." + "comparison": "Current pinned Elastic Defend carrier bundle version 9.1.0 passed smoke tests in this run. Regression validation downloaded Elastic Agent Arm64 bundle 9.4.2, and the candidate bundle reported version 9.4.2 while the embedded endpoint-security Arm64 component and resources validated successfully." } ] }, @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.316374+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.538005+00:00", "publish_state": "published" } } diff --git a/data/test-results/elastic-ebpf.json b/data/test-results/elastic-ebpf.json index bb0dcd3fed..02fa5a0f71 100644 --- a/data/test-results/elastic-ebpf.json +++ b/data/test-results/elastic-ebpf.json @@ -5,10 +5,10 @@ "version": "8.5.0" }, "run": { - "id": "25877367704", + "id": "26658677990", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026902", - "timestamp": "2026-05-14T18:17:56Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347341", + "timestamp": "2026-05-29T19:48:02Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -25,38 +25,38 @@ { "name": "Test 1 - Check Source Tree and Version Metadata", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026902#step:6:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347341#step:6:1" }, { "name": "Test 2 - Build Elastic eBPF", "status": "passed", - "duration_seconds": 12, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026902#step:7:1" + "duration_seconds": 13, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347341#step:7:1" }, { "name": "Test 3 - Build Output Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026902#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347341#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026902#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347341#step:9:1" }, { "name": "Test 5 - Package Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026902#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347341#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "skipped", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026902#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347341#step:11:1", "current_version": "8.5.0", "latest_version": "8.5.0", "next_installed_version": "8.5.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "skipped", "regression_decision": "no_newer_stable_available", - "production_refreshed_at": "2026-05-14T19:37:17.316554+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.538172+00:00", "publish_state": "published" } } diff --git a/data/test-results/elastic-enterprise-search.json b/data/test-results/elastic-enterprise-search.json index 38b5482795..05727fea9b 100644 --- a/data/test-results/elastic-enterprise-search.json +++ b/data/test-results/elastic-enterprise-search.json @@ -5,10 +5,10 @@ "version": "8.19.12" }, "run": { - "id": "25877403044", + "id": "26658710721", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140999", - "timestamp": "2026-05-14T18:18:37Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456315", + "timestamp": "2026-05-29T19:48:44Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 47, + "duration_seconds": 46, "details": [ { "name": "Test 1 - Artifact Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140999#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456315#step:6:1" }, { "name": "Test 2 - Version Check", "status": "passed", "duration_seconds": 14, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140999#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456315#step:7:1" }, { "name": "Test 3 - Help Output Validation", "status": "passed", "duration_seconds": 14, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140999#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456315#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140999#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456315#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 19, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140999#step:10:1" + "duration_seconds": 18, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456315#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140999#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456315#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.316777+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.538381+00:00", "publish_state": "published" } } diff --git a/data/test-results/elastic-fleet-server.json b/data/test-results/elastic-fleet-server.json index e9f46cc322..841b51deae 100644 --- a/data/test-results/elastic-fleet-server.json +++ b/data/test-results/elastic-fleet-server.json @@ -5,10 +5,10 @@ "version": "9.2.0" }, "run": { - "id": "25877375677", + "id": "26658685142", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044674", - "timestamp": "2026-05-14T18:18:02Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370301", + "timestamp": "2026-05-29T19:48:11Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 39, + "duration_seconds": 13, "details": [ { "name": "Test 1 - Check Carrier Binary and Fleet Server Component Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044674#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370301#step:6:1" }, { "name": "Test 2 - Check Carrier Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044674#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370301#step:7:1" }, { "name": "Test 3 - Check Fleet Server Help Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044674#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370301#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044674#step:9:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370301#step:9:1" }, { "name": "Test 5 - Embedded Fleet Server Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044674#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370301#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 37, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044674#step:11:1", + "duration_seconds": 12, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370301#step:11:1", "current_version": "9.2.0", "latest_version": "9.2.1", "next_installed_version": "9.2.1", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.316992+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.538560+00:00", "publish_state": "published" } } diff --git a/data/test-results/elastic-mockopampserver.json b/data/test-results/elastic-mockopampserver.json index b6f4877ac2..777c520779 100644 --- a/data/test-results/elastic-mockopampserver.json +++ b/data/test-results/elastic-mockopampserver.json @@ -5,10 +5,10 @@ "version": "0.4.1" }, "run": { - "id": "25877363365", + "id": "26658674448", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001152", - "timestamp": "2026-05-14T18:17:52Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334759", + "timestamp": "2026-05-29T19:48:01Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001152#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334759#step:7:1" }, { "name": "Test 2 - Check Version Metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001152#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334759#step:8:1" }, { "name": "Test 3 - Check Help Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001152#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334759#step:9:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001152#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334759#step:10:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001152#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334759#step:11:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001152#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334759#step:12:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.317200+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.538733+00:00", "publish_state": "published" } } diff --git a/data/test-results/elastic-mockotlpserver.json b/data/test-results/elastic-mockotlpserver.json index 7d092b1cdb..982768919f 100644 --- a/data/test-results/elastic-mockotlpserver.json +++ b/data/test-results/elastic-mockotlpserver.json @@ -5,10 +5,10 @@ "version": "50" }, "run": { - "id": "25877427741", + "id": "26658731236", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217685", - "timestamp": "2026-05-14T18:19:06Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529715", + "timestamp": "2026-05-29T19:49:14Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check mockotlpserver binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217685#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529715#step:6:1" }, { "name": "Test 2 - Check mockotlpserver help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217685#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529715#step:7:1" }, { "name": "Test 3 - Start server and check port", "status": "passed", "duration_seconds": 5, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217685#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529715#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217685#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529715#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217685#step:10:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529715#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217685#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529715#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.317402+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.538902+00:00", "publish_state": "published" } } diff --git a/data/test-results/elastic-package.json b/data/test-results/elastic-package.json index 7e18221b01..55c57d1447 100644 --- a/data/test-results/elastic-package.json +++ b/data/test-results/elastic-package.json @@ -5,10 +5,10 @@ "version": "0.111.0" }, "run": { - "id": "25877411197", + "id": "26658717942", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175518", - "timestamp": "2026-05-14T18:18:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479847", + "timestamp": "2026-05-29T19:48:53Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 1, + "duration_seconds": 2, "details": [ { "name": "Test 1 - Check Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175518#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479847#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175518#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479847#step:7:1" }, { "name": "Test 3 - Check Help Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175518#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479847#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175518#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479847#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175518#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479847#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175518#step:11:1", + "duration_seconds": 2, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479847#step:11:1", "current_version": "0.111.0", "latest_version": "0.112.0", "next_installed_version": "0.112.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.317601+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.539070+00:00", "publish_state": "published" } } diff --git a/data/test-results/elastic-quark.json b/data/test-results/elastic-quark.json index bca9aa6450..c6fa7ada3b 100644 --- a/data/test-results/elastic-quark.json +++ b/data/test-results/elastic-quark.json @@ -5,10 +5,10 @@ "version": "v0.3" }, "run": { - "id": "25877395502", + "id": "26658703674", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110003", - "timestamp": "2026-05-14T18:18:26Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433227", + "timestamp": "2026-05-29T19:48:33Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 22, + "duration_seconds": 20, "details": [ { "name": "Test 1 - Check repository exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110003#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433227#step:6:1" }, { "name": "Test 2 - Check for Makefile", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110003#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433227#step:7:1" }, { "name": "Test 3 - Check for C source files", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110003#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433227#step:8:1" }, { "name": "Test 4 - Architecture verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110003#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433227#step:9:1" }, { "name": "Test 5 - Functional validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110003#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433227#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 22, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110003#step:11:1", + "duration_seconds": 20, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433227#step:11:1", "current_version": "v0.3", "latest_version": "v0.4", "next_installed_version": "v0.4", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.317792+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.539273+00:00", "publish_state": "published" } } diff --git a/data/test-results/elasticapmagent.json b/data/test-results/elasticapmagent.json index 6da3c20f5b..b5bd91c739 100644 --- a/data/test-results/elasticapmagent.json +++ b/data/test-results/elasticapmagent.json @@ -5,10 +5,10 @@ "version": "6.23.0" }, "run": { - "id": "25877411197", + "id": "26658717942", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175302", - "timestamp": "2026-05-14T18:18:58Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480008", + "timestamp": "2026-05-29T19:49:03Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 0, + "duration_seconds": 1, "details": [ { "name": "Test 1 - Package Availability", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175302#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480008#step:7:1" }, { "name": "Test 2 - Version Check", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175302#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480008#step:8:1" }, { "name": "Test 3 - Help Output or Configuration", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175302#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480008#step:9:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175302#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480008#step:10:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175302#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480008#step:11:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175302#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480008#step:12:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.317992+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.539468+00:00", "publish_state": "published" } } diff --git a/data/test-results/elasticapmserver.json b/data/test-results/elasticapmserver.json index edf3e3889b..e764b6f82a 100644 --- a/data/test-results/elasticapmserver.json +++ b/data/test-results/elasticapmserver.json @@ -5,10 +5,10 @@ "version": "9.2.0" }, "run": { - "id": "25877415436", + "id": "26658721315", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181106", - "timestamp": "2026-05-14T18:18:54Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491847", + "timestamp": "2026-05-29T19:48:57Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 0, + "duration_seconds": 2, "details": [ { "name": "Test 1 - Check Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181106#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491847#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181106#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491847#step:7:1" }, { "name": "Test 3 - Check Help Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181106#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491847#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181106#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491847#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181106#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491847#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181106#step:11:1", + "duration_seconds": 2, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491847#step:11:1", "current_version": "9.2.0", "latest_version": "9.2.1", "next_installed_version": "9.2.1", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.318184+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.539639+00:00", "publish_state": "published" } } diff --git a/data/test-results/electron.json b/data/test-results/electron.json index 22b22bc5e3..693ae282da 100644 --- a/data/test-results/electron.json +++ b/data/test-results/electron.json @@ -2,13 +2,13 @@ "schema_version": "2.0", "package": { "name": "Electron", - "version": "v41.6.0" + "version": "v41.7.1" }, "run": { - "id": "25877379982", + "id": "26658688675", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057276", - "timestamp": "2026-05-14T18:18:11Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380632", + "timestamp": "2026-05-29T19:48:19Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 21, + "duration_seconds": 22, "details": [ { "name": "Test 1 - Check Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057276#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380632#step:7:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057276#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380632#step:8:1" }, { "name": "Test 3 - Check Help Output", "status": "passed", - "duration_seconds": 20, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057276#step:9:1" + "duration_seconds": 21, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380632#step:9:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057276#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380632#step:10:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057276#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380632#step:11:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057276#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380632#step:12:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.318392+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.539811+00:00", "publish_state": "published" } } diff --git a/data/test-results/elemental-operator.json b/data/test-results/elemental-operator.json index 0e1ba4ef20..73e2ba5c89 100644 --- a/data/test-results/elemental-operator.json +++ b/data/test-results/elemental-operator.json @@ -5,10 +5,10 @@ "version": "1.6.8" }, "run": { - "id": "25877399008", + "id": "26658707245", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126238", - "timestamp": "2026-05-14T18:18:31Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445759", + "timestamp": "2026-05-29T19:48:40Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 38, + "duration_seconds": 39, "details": [ { "name": "Test 1 - Artifact Existence", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126238#step:6:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445759#step:6:1" }, { "name": "Test 2 - Version Check", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126238#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445759#step:7:1" }, { "name": "Test 3 - Help Output Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126238#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445759#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126238#step:9:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445759#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126238#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445759#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 38, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126238#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445759#step:11:1", "current_version": "1.6.8", "latest_version": "1.6.9", "next_installed_version": "1.6.9", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.318574+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.539977+00:00", "publish_state": "published" } } diff --git a/data/test-results/elemental-toolkit.json b/data/test-results/elemental-toolkit.json index e2aabef106..2f7f60b141 100644 --- a/data/test-results/elemental-toolkit.json +++ b/data/test-results/elemental-toolkit.json @@ -5,10 +5,10 @@ "version": "2.2.0" }, "run": { - "id": "25877383844", + "id": "26658692522", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048070575", - "timestamp": "2026-05-14T18:18:13Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575393072", + "timestamp": "2026-05-29T19:48:21Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Artifact Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048070575#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575393072#step:9:1" }, { "name": "Test 2 - Version Check", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048070575#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575393072#step:10:1" }, { "name": "Test 3 - Help Output Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048070575#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575393072#step:11:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048070575#step:12:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575393072#step:12:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048070575#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575393072#step:13:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 11, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048070575#step:14:1", + "duration_seconds": 10, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575393072#step:14:1", "current_version": "2.2.0", "latest_version": "2.2.2", "next_installed_version": "2.2.2", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.318765+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.540147+00:00", "publish_state": "published" } } diff --git a/data/test-results/emqtt.json b/data/test-results/emqtt.json index 43df0d4aa8..a1bbcb5e60 100644 --- a/data/test-results/emqtt.json +++ b/data/test-results/emqtt.json @@ -5,10 +5,10 @@ "version": "1.4.4" }, "run": { - "id": "25877395502", + "id": "26658703674", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110031", - "timestamp": "2026-05-14T18:18:27Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432892", + "timestamp": "2026-05-29T19:48:34Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 51, + "duration_seconds": 49, "details": [ { "name": "Test 1 - Check emqtt_cli binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110031#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432892#step:7:1" }, { "name": "Test 2 - Check EMQTT root help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110031#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432892#step:8:1" }, { "name": "Test 3 - Check EMQTT publish help", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110031#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432892#step:9:1" }, { "name": "Test 4 - Check EMQTT subscribe help", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110031#step:10:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432892#step:10:1" }, { "name": "Test 5 - Publish command handles missing broker", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110031#step:11:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432892#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 50, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110031#step:12:1", + "duration_seconds": 48, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432892#step:12:1", "current_version": "1.4.4", "latest_version": "1.4.5", "next_installed_version": "1.4.5", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.318980+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.540344+00:00", "publish_state": "published" } } diff --git a/data/test-results/emqx.json b/data/test-results/emqx.json index 86ba17f9bb..a42d970620 100644 --- a/data/test-results/emqx.json +++ b/data/test-results/emqx.json @@ -5,10 +5,10 @@ "version": "5.8.3" }, "run": { - "id": "25877379982", + "id": "26658688675", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057194", - "timestamp": "2026-05-14T18:18:05Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380589", + "timestamp": "2026-05-29T19:48:15Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 15, + "duration_seconds": 16, "details": [ { "name": "Test 1 - Check Broker Binaries", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057194#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380589#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057194#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380589#step:7:1" }, { "name": "Test 3 - Check Configuration Layout", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057194#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380589#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057194#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380589#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 7, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057194#step:10:1" + "duration_seconds": 6, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380589#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 8, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057194#step:11:1", + "duration_seconds": 10, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380589#step:11:1", "current_version": "5.8.3", "latest_version": "5.8.4", "next_installed_version": "5.8.4", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.319210+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.540534+00:00", "publish_state": "published" } } diff --git a/data/test-results/enca.json b/data/test-results/enca.json index 7e9049d406..ccbe4ee736 100644 --- a/data/test-results/enca.json +++ b/data/test-results/enca.json @@ -5,10 +5,10 @@ "version": "1.20" }, "run": { - "id": "25877399008", + "id": "26658707245", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125644", - "timestamp": "2026-05-14T18:18:32Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445436", + "timestamp": "2026-05-29T19:48:39Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Configure baseline source tree", "status": "passed", "duration_seconds": 11, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125644#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445436#step:7:1" }, { "name": "Test 2 - Compile baseline source", "status": "passed", - "duration_seconds": 3, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125644#step:8:1" + "duration_seconds": 2, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445436#step:8:1" }, { "name": "Test 3 - Install baseline binary and verify version", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125644#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445436#step:9:1" }, { "name": "Test 4 - Architecture verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125644#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445436#step:10:1" }, { "name": "Test 5 - Functional validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125644#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445436#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 8, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125644#step:12:1", + "duration_seconds": 9, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445436#step:12:1", "current_version": "1.20", "latest_version": "1.21", "next_installed_version": "1.21", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.319424+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.540710+00:00", "publish_state": "published" } } diff --git a/data/test-results/enigmaJS.json b/data/test-results/enigmaJS.json index 4d29a9ff2b..a209b4e117 100644 --- a/data/test-results/enigmaJS.json +++ b/data/test-results/enigmaJS.json @@ -5,10 +5,10 @@ "version": "1.0.0" }, "run": { - "id": "25877383844", + "id": "26658692522", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071614", - "timestamp": "2026-05-14T18:18:20Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394423", + "timestamp": "2026-05-29T19:48:23Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check node_modules existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071614#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394423#step:7:1" }, { "name": "Test 2 - Check package.json dependency", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071614#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394423#step:8:1" }, { "name": "Test 3 - Check ws dependency", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071614#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394423#step:9:1" }, { "name": "Test 4 - Require enigma.js in Node script", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071614#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394423#step:10:1" }, { "name": "Test 5 - Check Schema instantiation (basic usage)", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071614#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394423#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071614#step:12:1", + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394423#step:12:1", "current_version": "1.0.0", "latest_version": "1.0.1", "next_installed_version": "1.0.1", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.319620+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.540889+00:00", "publish_state": "published" } } diff --git a/data/test-results/enroot.json b/data/test-results/enroot.json index 0e1ee8fef5..d7f87522d6 100644 --- a/data/test-results/enroot.json +++ b/data/test-results/enroot.json @@ -5,10 +5,10 @@ "version": "2.1.0" }, "run": { - "id": "25877395502", + "id": "26658703674", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109978", - "timestamp": "2026-05-14T18:18:27Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432956", + "timestamp": "2026-05-29T19:48:34Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 167, + "duration_seconds": 92, "details": [ { "name": "Test 1 - Baseline package evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109978#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432956#step:7:1" }, { "name": "Test 2 - Baseline version and release alignment", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109978#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432956#step:8:1" }, { "name": "Test 3 - Package-specific source or docs evidence", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109978#step:9:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432956#step:9:1" }, { "name": "Test 4 - Arm64 support gate", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109978#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432956#step:10:1" }, { "name": "Test 5 - Bounded package-specific smoke", "status": "passed", - "duration_seconds": 795, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109978#step:11:1" + "duration_seconds": 34, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432956#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 168, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109978#step:12:1", + "duration_seconds": 58, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432956#step:12:1", "current_version": "2.1.0", "latest_version": "4.2.0", "next_installed_version": "4.2.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.319859+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.541065+00:00", "publish_state": "published" } } diff --git a/data/test-results/envoy.json b/data/test-results/envoy.json index 972afd1026..89ef478fe0 100644 --- a/data/test-results/envoy.json +++ b/data/test-results/envoy.json @@ -5,10 +5,10 @@ "version": "1.31.1" }, "run": { - "id": "25877355625", + "id": "26658667828", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047975672", - "timestamp": "2026-05-14T18:17:39Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308014", + "timestamp": "2026-05-29T19:47:49Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 2, + "duration_seconds": 1, "details": [ { "name": "Test 1 - Check Envoy binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047975672#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308014#step:6:1" }, { "name": "Test 2 - Check Envoy version output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047975672#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308014#step:7:1" }, { "name": "Test 3 - Validate Envoy help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047975672#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308014#step:8:1" }, { "name": "Test 4 - Validate a minimal configuration", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047975672#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308014#step:9:1" }, { "name": "Test 5 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047975672#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308014#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047975672#step:11:1", + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308014#step:11:1", "current_version": "1.31.1", "latest_version": "1.31.2", "next_installed_version": "1.31.2", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.320164+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.541352+00:00", "publish_state": "published" } } diff --git a/data/test-results/epdb.json b/data/test-results/epdb.json index 17e694ec90..c42893b2c9 100644 --- a/data/test-results/epdb.json +++ b/data/test-results/epdb.json @@ -5,10 +5,10 @@ "version": "0.15.1" }, "run": { - "id": "25877395502", + "id": "26658703674", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109562", - "timestamp": "2026-05-14T18:18:26Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432255", + "timestamp": "2026-05-29T19:48:34Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 0, + "duration_seconds": 1, "details": [ { "name": "Test 1 - Import EPDB debugger", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109562#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432255#step:6:1" }, { "name": "Test 2 - Instantiate debugger", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109562#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432255#step:7:1" }, { "name": "Test 3 - Format exception trace", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109562#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432255#step:8:1" }, { "name": "Test 4 - Configure trace conditions", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109562#step:9:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432255#step:9:1" }, { "name": "Test 5 - Functional import", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109562#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432255#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109562#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432255#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.320392+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.541540+00:00", "publish_state": "published" } } diff --git a/data/test-results/epinio.json b/data/test-results/epinio.json index 9e4288980e..ffe8d3509a 100644 --- a/data/test-results/epinio.json +++ b/data/test-results/epinio.json @@ -5,10 +5,10 @@ "version": "1.11.0" }, "run": { - "id": "25877392111", + "id": "26658699892", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096317", - "timestamp": "2026-05-14T18:18:23Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420809", + "timestamp": "2026-05-29T19:48:30Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 4, + "duration_seconds": 2, "details": [ { "name": "Test 1 - Check Epinio binary exists", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096317#step:6:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420809#step:6:1" }, { "name": "Test 2 - Check Epinio version output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096317#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420809#step:7:1" }, { "name": "Test 3 - Check Epinio help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096317#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420809#step:8:1" }, { "name": "Test 4 - Check Epinio settings command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096317#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420809#step:9:1" }, { "name": "Test 5 - Completion and architecture verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096317#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420809#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 4, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096317#step:11:1", + "duration_seconds": 2, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420809#step:11:1", "current_version": "1.11.0", "latest_version": "1.12.0", "next_installed_version": "1.12.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.320599+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.541726+00:00", "publish_state": "published" } } diff --git a/data/test-results/erlang.json b/data/test-results/erlang.json index 1bf102a1ba..60f845b606 100644 --- a/data/test-results/erlang.json +++ b/data/test-results/erlang.json @@ -5,10 +5,10 @@ "version": "13.2.2.5" }, "run": { - "id": "25877427741", + "id": "26658731236", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218770", - "timestamp": "2026-05-14T18:19:04Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529578", + "timestamp": "2026-05-29T19:49:11Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check erl binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218770#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529578#step:6:1" }, { "name": "Test 2 - Check erl version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218770#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529578#step:7:1" }, { "name": "Test 3 - Run simple Erlang expression", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218770#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529578#step:8:1" }, { "name": "Test 4 - Check erlc compiler existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218770#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529578#step:9:1" }, { "name": "Test 5 - Compile and run Hello World", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218770#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529578#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218770#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529578#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.320836+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.541909+00:00", "publish_state": "published" } } diff --git a/data/test-results/etcd.json b/data/test-results/etcd.json index 4412ff241b..f7df9244a8 100644 --- a/data/test-results/etcd.json +++ b/data/test-results/etcd.json @@ -5,10 +5,10 @@ "version": "3.5.22" }, "run": { - "id": "25877423406", + "id": "26658727918", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209405", - "timestamp": "2026-05-14T18:19:09Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515908", + "timestamp": "2026-05-29T19:49:05Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 2, + "duration_seconds": 3, "details": [ { "name": "Test 1 - Check Etcd binaries exist", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209405#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515908#step:6:1" }, { "name": "Test 2 - Check Etcd version output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209405#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515908#step:7:1" }, { "name": "Test 3 - Check Etcdctl and Etcdutl version output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209405#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515908#step:8:1" }, { "name": "Test 4 - Architecture verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209405#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515908#step:9:1" }, { "name": "Test 5 - Functional validation", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209405#step:10:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515908#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209405#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515908#step:11:1", "current_version": "3.5.22", "latest_version": "3.5.23", "next_installed_version": "3.5.23", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.321064+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.542081+00:00", "publish_state": "published" } } diff --git a/data/test-results/evalml.json b/data/test-results/evalml.json index f98e927223..e96ad4f8e9 100644 --- a/data/test-results/evalml.json +++ b/data/test-results/evalml.json @@ -5,10 +5,10 @@ "version": "0.84.0" }, "run": { - "id": "25877371674", + "id": "26658681575", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031632", - "timestamp": "2026-05-14T18:18:06Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358590", + "timestamp": "2026-05-29T19:48:15Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Package Installation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031632#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358590#step:7:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031632#step:8:1" + "duration_seconds": 3, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358590#step:8:1" }, { "name": "Test 3 - Check Package Metadata", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031632#step:9:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358590#step:9:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031632#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358590#step:10:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 3, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031632#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358590#step:11:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031632#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358590#step:12:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.321281+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.542280+00:00", "publish_state": "published" } } diff --git a/data/test-results/exechealthz.json b/data/test-results/exechealthz.json index bd081839a0..d65d501d24 100644 --- a/data/test-results/exechealthz.json +++ b/data/test-results/exechealthz.json @@ -5,10 +5,10 @@ "version": "0.6.3" }, "run": { - "id": "25877375677", + "id": "26658685142", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044886", - "timestamp": "2026-05-14T18:18:02Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370506", + "timestamp": "2026-05-29T19:48:11Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 6, + "duration_seconds": 5, "details": [ { "name": "Test 1 - Check Exechealthz binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044886#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370506#step:7:1" }, { "name": "Test 2 - Check Exechealthz help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044886#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370506#step:8:1" }, { "name": "Test 3 - Architecture verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044886#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370506#step:9:1" }, { "name": "Test 4 - Functional healthy probe", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044886#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370506#step:10:1" }, { "name": "Test 5 - Functional unhealthy probe", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044886#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370506#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 5, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044886#step:12:1", + "duration_seconds": 4, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370506#step:12:1", "current_version": "0.6.3", "latest_version": "0.7.0", "next_installed_version": "0.7.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.321475+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.542476+00:00", "publish_state": "published" } } diff --git a/data/test-results/expat.json b/data/test-results/expat.json index 4eefb9c4f9..c08e243257 100644 --- a/data/test-results/expat.json +++ b/data/test-results/expat.json @@ -5,10 +5,10 @@ "version": "2.6.1" }, "run": { - "id": "25877375677", + "id": "26658685142", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045193", - "timestamp": "2026-05-14T18:18:03Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370887", + "timestamp": "2026-05-29T19:48:10Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check xmlwf binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045193#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370887#step:6:1" }, { "name": "Test 2 - Check xmlwf version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045193#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370887#step:7:1" }, { "name": "Test 3 - Check xmlwf help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045193#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370887#step:8:1" }, { "name": "Test 4 - Parse valid XML file", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045193#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370887#step:9:1" }, { "name": "Test 5 - Parse invalid XML file", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045193#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370887#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045193#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370887#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.321690+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.542656+00:00", "publish_state": "published" } } diff --git a/data/test-results/falco.json b/data/test-results/falco.json index 41715a96cd..3076bf0aba 100644 --- a/data/test-results/falco.json +++ b/data/test-results/falco.json @@ -2,13 +2,13 @@ "schema_version": "2.0", "package": { "name": "Falco", - "version": "0.43.1" + "version": "0.44.0" }, "run": { - "id": "25877415436", + "id": "26658721315", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180757", - "timestamp": "2026-05-14T18:18:54Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491867", + "timestamp": "2026-05-29T19:48:56Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 1, + "duration_seconds": 0, "details": [ { "name": "Test 1 - Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180757#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491867#step:6:1" }, { "name": "Test 2 - Version Check", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180757#step:7:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491867#step:7:1" }, { "name": "Test 3 - Help Output Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180757#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491867#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180757#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491867#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180757#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491867#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180757#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491867#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.321912+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.542833+00:00", "publish_state": "published" } } diff --git a/data/test-results/fastai.json b/data/test-results/fastai.json index c87796dd55..4e5dd49e8a 100644 --- a/data/test-results/fastai.json +++ b/data/test-results/fastai.json @@ -5,10 +5,10 @@ "version": "2.8.7" }, "run": { - "id": "25877435852", + "id": "26658737633", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251836", - "timestamp": "2026-05-14T18:19:18Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550031", + "timestamp": "2026-05-29T19:49:21Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 5, "failed": 0, "skipped": 1, - "duration_seconds": 123, + "duration_seconds": 140, "details": [ { "name": "Test 1 - Install FastAI Python package", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251836#step:5:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550031#step:5:1" }, { "name": "Test 2 - Verify FastAI package metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251836#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550031#step:6:1" }, { "name": "Test 3 - Import FastAI and Torch modules", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251836#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550031#step:7:1" }, { "name": "Test 4 - Verify Arm64 Python runtime", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251836#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550031#step:8:1" }, { "name": "Test 5 - Run bounded FastAI tensor smoke", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251836#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550031#step:9:1" }, { "name": "Test 6 - Regression Validation", "status": "skipped", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251836#step:10:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550031#step:10:1", "current_version": "2.8.7", "latest_version": "2.8.7", "next_installed_version": "not_installed", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "skipped", "regression_decision": "current_is_latest_stable", - "production_refreshed_at": "2026-05-14T19:37:17.322097+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.543011+00:00", "publish_state": "published" } } diff --git a/data/test-results/fastdfs.json b/data/test-results/fastdfs.json index 6ce3bac668..ceff8d9187 100644 --- a/data/test-results/fastdfs.json +++ b/data/test-results/fastdfs.json @@ -5,10 +5,10 @@ "version": "V6.12.4" }, "run": { - "id": "25877427741", + "id": "26658731236", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218621", - "timestamp": "2026-05-14T18:19:12Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529422", + "timestamp": "2026-05-29T19:49:10Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 43, + "duration_seconds": 44, "details": [ { "name": "Test 1 - Check fdfs_trackerd binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218621#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529422#step:6:1" }, { "name": "Test 2 - Check fdfs_storaged binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218621#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529422#step:7:1" }, { "name": "Test 3 - Check version output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218621#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529422#step:8:1" }, { "name": "Test 4 - Architecture verification", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218621#step:9:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529422#step:9:1" }, { "name": "Test 5 - Functional validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218621#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529422#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 42, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218621#step:11:1", + "duration_seconds": 44, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529422#step:11:1", "current_version": "V6.12.4", "latest_version": "V6.13.0", "next_installed_version": "V6.13.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.322304+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.543190+00:00", "publish_state": "published" } } diff --git a/data/test-results/feast.json b/data/test-results/feast.json index 22606cd4f7..083e7bfbba 100644 --- a/data/test-results/feast.json +++ b/data/test-results/feast.json @@ -5,10 +5,10 @@ "version": "0.1.0" }, "run": { - "id": "25877395502", + "id": "26658703674", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110037", - "timestamp": "2026-05-14T18:18:33Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432903", + "timestamp": "2026-05-29T19:48:41Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 37, + "duration_seconds": 34, "details": [ { "name": "Test 1 - Baseline package evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110037#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432903#step:8:1" }, { "name": "Test 2 - Baseline version and release alignment", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110037#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432903#step:9:1" }, { "name": "Test 3 - Package-specific source or docs evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110037#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432903#step:10:1" }, { "name": "Test 4 - Arm64 support gate", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110037#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432903#step:11:1" }, { "name": "Test 5 - Bounded package-specific smoke", "status": "passed", - "duration_seconds": 21, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110037#step:12:1" + "duration_seconds": 23, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432903#step:12:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 37, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110037#step:13:1", + "duration_seconds": 34, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432903#step:13:1", "current_version": "0.1.0", "latest_version": "0.63.0", "next_installed_version": "0.63.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.322515+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.543416+00:00", "publish_state": "published" } } diff --git a/data/test-results/featuretools.json b/data/test-results/featuretools.json index e2e5ca3e39..080d10a858 100644 --- a/data/test-results/featuretools.json +++ b/data/test-results/featuretools.json @@ -5,10 +5,10 @@ "version": "1.31.0" }, "run": { - "id": "25877395502", + "id": "26658703674", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110006", - "timestamp": "2026-05-14T18:18:25Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432852", + "timestamp": "2026-05-29T19:48:33Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 6, + "duration_seconds": 4, "details": [ { "name": "Test 1 - Check module import", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110006#step:6:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432852#step:6:1" }, { "name": "Test 2 - Check version output", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110006#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432852#step:7:1" }, { "name": "Test 3 - Check API surface", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110006#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432852#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110006#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432852#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110006#step:10:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432852#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110006#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432852#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.322716+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.543605+00:00", "publish_state": "published" } } diff --git a/data/test-results/fedora.json b/data/test-results/fedora.json index d7cd765587..bfc16daad0 100644 --- a/data/test-results/fedora.json +++ b/data/test-results/fedora.json @@ -5,10 +5,10 @@ "version": "42" }, "run": { - "id": "25877375677", + "id": "26658685142", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045078", - "timestamp": "2026-05-14T18:18:03Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370839", + "timestamp": "2026-05-29T19:48:11Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 27, + "duration_seconds": 24, "details": [ { "name": "Test 1 - Check image architecture", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045078#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370839#step:6:1" }, { "name": "Test 2 - Check OS release file", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045078#step:7:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370839#step:7:1" }, { "name": "Test 3 - Install package with dnf", "status": "passed", "duration_seconds": 10, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045078#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370839#step:8:1" }, { "name": "Test 4 - Check architecture inside container", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045078#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370839#step:9:1" }, { "name": "Test 5 - Simple command execution", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045078#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370839#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 16, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045078#step:11:1", + "duration_seconds": 14, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370839#step:11:1", "current_version": "42", "latest_version": "43", "next_installed_version": "43", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.322934+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.543779+00:00", "publish_state": "published" } } diff --git a/data/test-results/ffmpeg.json b/data/test-results/ffmpeg.json index c0e75a4f98..25c7818f86 100644 --- a/data/test-results/ffmpeg.json +++ b/data/test-results/ffmpeg.json @@ -5,10 +5,10 @@ "version": "6.1.1-3ubuntu5" }, "run": { - "id": "25877379982", + "id": "26658688675", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056474", - "timestamp": "2026-05-14T18:18:05Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575379758", + "timestamp": "2026-05-29T19:48:16Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check ffmpeg binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056474#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575379758#step:6:1" }, { "name": "Test 2 - Check ffprobe binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056474#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575379758#step:7:1" }, { "name": "Test 3 - Check ffmpeg version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056474#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575379758#step:8:1" }, { "name": "Test 4 - Generate test video", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056474#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575379758#step:9:1" }, { "name": "Test 5 - Probe generated video", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056474#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575379758#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056474#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575379758#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.323118+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.543955+00:00", "publish_state": "published" } } diff --git a/data/test-results/fftw.json b/data/test-results/fftw.json index bd61a79114..23cff721da 100644 --- a/data/test-results/fftw.json +++ b/data/test-results/fftw.json @@ -5,10 +5,10 @@ "version": "3.3.10" }, "run": { - "id": "25877371674", + "id": "26658681575", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031599", - "timestamp": "2026-05-14T18:17:59Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358245", + "timestamp": "2026-05-29T19:48:09Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Artifact Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031599#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358245#step:6:1" }, { "name": "Test 2 - Version Check", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031599#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358245#step:7:1" }, { "name": "Test 3 - Help Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031599#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358245#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031599#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358245#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031599#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358245#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031599#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358245#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.323325+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.544123+00:00", "publish_state": "published" } } diff --git a/data/test-results/figlet.json b/data/test-results/figlet.json index 301bbc4d40..9767b7055e 100644 --- a/data/test-results/figlet.json +++ b/data/test-results/figlet.json @@ -5,10 +5,10 @@ "version": "2.2.5" }, "run": { - "id": "25877423406", + "id": "26658727918", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210169", - "timestamp": "2026-05-14T18:19:11Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515895", + "timestamp": "2026-05-29T19:49:04Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210169#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515895#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210169#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515895#step:7:1" }, { "name": "Test 3 - Check Help Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210169#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515895#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210169#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515895#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210169#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515895#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210169#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515895#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.323512+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.544309+00:00", "publish_state": "published" } } diff --git a/data/test-results/figtree.json b/data/test-results/figtree.json index 284dc67479..c231703f86 100644 --- a/data/test-results/figtree.json +++ b/data/test-results/figtree.json @@ -5,10 +5,10 @@ "version": "1.4.4-6" }, "run": { - "id": "25877375677", + "id": "26658685142", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044490", - "timestamp": "2026-05-14T18:18:03Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370353", + "timestamp": "2026-05-29T19:48:10Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 1, + "duration_seconds": 0, "details": [ { "name": "Test 1 - Check figtree binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044490#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370353#step:6:1" }, { "name": "Test 2 - Check figtree jar exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044490#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370353#step:7:1" }, { "name": "Test 3 - Check Java dependency", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044490#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370353#step:8:1" }, { "name": "Test 4 - Check help/usage (if available)", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044490#step:9:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370353#step:9:1" }, { "name": "Test 5 - Verify launch script content", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044490#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370353#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044490#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370353#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.323717+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.544491+00:00", "publish_state": "published" } } diff --git a/data/test-results/filebeat.json b/data/test-results/filebeat.json index cc37d0a09c..fdca894baa 100644 --- a/data/test-results/filebeat.json +++ b/data/test-results/filebeat.json @@ -5,10 +5,10 @@ "version": "9.2.0" }, "run": { - "id": "25877403044", + "id": "26658710721", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048141040", - "timestamp": "2026-05-14T18:18:37Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456440", + "timestamp": "2026-05-29T19:48:44Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 7, + "duration_seconds": 6, "details": [ { "name": "Test 1 - Check Filebeat binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048141040#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456440#step:6:1" }, { "name": "Test 2 - Check Filebeat version output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048141040#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456440#step:7:1" }, { "name": "Test 3 - Check Filebeat help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048141040#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456440#step:8:1" }, { "name": "Test 4 - Check Filebeat configuration", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048141040#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456440#step:9:1" }, { "name": "Test 5 - Export template and verify architecture", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048141040#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456440#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 7, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048141040#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456440#step:11:1", "current_version": "9.2.0", "latest_version": "9.2.1", "next_installed_version": "9.2.1", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.323956+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.544663+00:00", "publish_state": "published" } } diff --git a/data/test-results/fio.json b/data/test-results/fio.json index 5311a6e6d8..4b05cb79d7 100644 --- a/data/test-results/fio.json +++ b/data/test-results/fio.json @@ -5,10 +5,10 @@ "version": "3.36" }, "run": { - "id": "25877363365", + "id": "26658674448", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001035", - "timestamp": "2026-05-14T18:17:46Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334387", + "timestamp": "2026-05-29T19:47:57Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 3, + "duration_seconds": 2, "details": [ { "name": "Test 1 - Check fio binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001035#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334387#step:6:1" }, { "name": "Test 2 - Check fio version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001035#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334387#step:7:1" }, { "name": "Test 3 - Run simple read test", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001035#step:8:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334387#step:8:1" }, { "name": "Test 4 - Run simple write test", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001035#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334387#step:9:1" }, { "name": "Test 5 - Verify output log content", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001035#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334387#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001035#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334387#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.324188+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.544839+00:00", "publish_state": "published" } } diff --git a/data/test-results/firecraker.json b/data/test-results/firecraker.json index f03c5f4c92..f989c91423 100644 --- a/data/test-results/firecraker.json +++ b/data/test-results/firecraker.json @@ -5,10 +5,10 @@ "version": "v1.10.0" }, "run": { - "id": "25877392111", + "id": "26658699892", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095685", - "timestamp": "2026-05-14T18:18:22Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420587", + "timestamp": "2026-05-29T19:48:30Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Firecracker and jailer binaries exist", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095685#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420587#step:6:1" }, { "name": "Test 2 - Check Firecracker version output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095685#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420587#step:7:1" }, { "name": "Test 3 - Check jailer help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095685#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420587#step:8:1" }, { "name": "Test 4 - Architecture verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095685#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420587#step:9:1" }, { "name": "Test 5 - Release bundle validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095685#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420587#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095685#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420587#step:11:1", "current_version": "v1.10.0", "latest_version": "v1.10.1", "next_installed_version": "v1.10.1", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.324410+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.545009+00:00", "publish_state": "published" } } diff --git a/data/test-results/flannel.json b/data/test-results/flannel.json index e1fb63d4d5..94e443a790 100644 --- a/data/test-results/flannel.json +++ b/data/test-results/flannel.json @@ -5,10 +5,10 @@ "version": "v0.26.4" }, "run": { - "id": "25877415436", + "id": "26658721315", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180919", - "timestamp": "2026-05-14T18:18:54Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491573", + "timestamp": "2026-05-29T19:48:57Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 1, + "duration_seconds": 0, "details": [ { "name": "Test 1 - Check flanneld binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180919#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491573#step:6:1" }, { "name": "Test 2 - Check flanneld version output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180919#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491573#step:7:1" }, { "name": "Test 3 - Check flanneld help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180919#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491573#step:8:1" }, { "name": "Test 4 - Architecture verification", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180919#step:9:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491573#step:9:1" }, { "name": "Test 5 - Release bundle validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180919#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491573#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180919#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491573#step:11:1", "current_version": "v0.26.4", "latest_version": "v0.26.5", "next_installed_version": "v0.26.5", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.324618+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.545181+00:00", "publish_state": "published" } } diff --git a/data/test-results/flask.json b/data/test-results/flask.json index 0291a6ba53..9eaa259447 100644 --- a/data/test-results/flask.json +++ b/data/test-results/flask.json @@ -5,10 +5,10 @@ "version": "3.1.3" }, "run": { - "id": "25877387746", + "id": "26658696365", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084747", - "timestamp": "2026-05-14T18:18:15Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407268", + "timestamp": "2026-05-29T19:48:24Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check pip installation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084747#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407268#step:6:1" }, { "name": "Test 2 - Import Flask in Python", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084747#step:7:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407268#step:7:1" }, { "name": "Test 3 - Check Flask version and CLI output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084747#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407268#step:8:1" }, { "name": "Test 4 - Functional validation with test client", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084747#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407268#step:9:1" }, { "name": "Test 5 - Request context and architecture verification", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084747#step:10:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407268#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084747#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407268#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.324857+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.545406+00:00", "publish_state": "published" } } diff --git a/data/test-results/flatBuffers.json b/data/test-results/flatBuffers.json index c214be05bc..575e13e8d4 100644 --- a/data/test-results/flatBuffers.json +++ b/data/test-results/flatBuffers.json @@ -5,10 +5,10 @@ "version": "2.0.8" }, "run": { - "id": "25877392111", + "id": "26658699892", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096439", - "timestamp": "2026-05-14T18:18:22Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421162", + "timestamp": "2026-05-29T19:48:31Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check flatc binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096439#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421162#step:6:1" }, { "name": "Test 2 - Check flatc version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096439#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421162#step:7:1" }, { "name": "Test 3 - Check flatc help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096439#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421162#step:8:1" }, { "name": "Test 4 - Compile sample schema", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096439#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421162#step:9:1" }, { "name": "Test 5 - Compile schema to Python", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096439#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421162#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096439#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421162#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.325154+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.545692+00:00", "publish_state": "published" } } diff --git a/data/test-results/fleet.json b/data/test-results/fleet.json index a6c4454925..e00118a764 100644 --- a/data/test-results/fleet.json +++ b/data/test-results/fleet.json @@ -5,10 +5,10 @@ "version": "v0.13.8" }, "run": { - "id": "25877383844", + "id": "26658692522", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071714", - "timestamp": "2026-05-14T18:18:12Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394939", + "timestamp": "2026-05-29T19:48:20Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check fleet binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071714#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394939#step:6:1" }, { "name": "Test 2 - Check fleet version output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071714#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394939#step:7:1" }, { "name": "Test 3 - Check fleet help output", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071714#step:8:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394939#step:8:1" }, { "name": "Test 4 - Architecture verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071714#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394939#step:9:1" }, { "name": "Test 5 - Functional validation", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071714#step:10:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394939#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071714#step:11:1", + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394939#step:11:1", "current_version": "v0.13.8", "latest_version": "v0.13.9", "next_installed_version": "v0.13.9", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.325357+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.545875+00:00", "publish_state": "published" } } diff --git a/data/test-results/flex.json b/data/test-results/flex.json index 9273be8762..47c0fcef56 100644 --- a/data/test-results/flex.json +++ b/data/test-results/flex.json @@ -5,10 +5,10 @@ "version": "2.6.4" }, "run": { - "id": "25877399008", + "id": "26658707245", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126152", - "timestamp": "2026-05-14T18:18:32Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445469", + "timestamp": "2026-05-29T19:48:38Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check flex binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126152#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445469#step:6:1" }, { "name": "Test 2 - Check flex version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126152#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445469#step:7:1" }, { "name": "Test 3 - Check flex help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126152#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445469#step:8:1" }, { "name": "Test 4 - Generate scanner from lex file", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126152#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445469#step:9:1" }, { "name": "Test 5 - Compile generated scanner", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126152#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445469#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126152#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445469#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.325571+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.546058+00:00", "publish_state": "published" } } diff --git a/data/test-results/flink.json b/data/test-results/flink.json index 2e260d2865..3b9d72dac4 100644 --- a/data/test-results/flink.json +++ b/data/test-results/flink.json @@ -5,10 +5,10 @@ "version": "2.1.1" }, "run": { - "id": "25877371674", + "id": "26658681575", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031817", - "timestamp": "2026-05-14T18:17:59Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358415", + "timestamp": "2026-05-29T19:48:06Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 5, "failed": 0, "skipped": 1, - "duration_seconds": 28, + "duration_seconds": 29, "details": [ { "name": "Test 1 - Check flink binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031817#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358415#step:6:1" }, { "name": "Test 2 - Check flink version command", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031817#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358415#step:7:1" }, { "name": "Test 3 - Check start-cluster script", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031817#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358415#step:8:1" }, { "name": "Test 4 - Start local cluster", "status": "passed", "duration_seconds": 16, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031817#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358415#step:9:1" }, { "name": "Test 5 - Stop local cluster and verify architecture", "status": "passed", - "duration_seconds": 11, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031817#step:10:1" + "duration_seconds": 12, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358415#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "skipped", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031817#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358415#step:11:1", "current_version": "2.1.1", "latest_version": "2.1.1", "next_installed_version": "2.1.1", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "skipped", "regression_decision": "no_newer_stable_available", - "production_refreshed_at": "2026-05-14T19:37:17.325799+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.546230+00:00", "publish_state": "published" } } diff --git a/data/test-results/fltk.json b/data/test-results/fltk.json index 90cdd83f0d..c883cd0294 100644 --- a/data/test-results/fltk.json +++ b/data/test-results/fltk.json @@ -5,10 +5,10 @@ "version": "1.3.8" }, "run": { - "id": "25877371674", + "id": "26658681575", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031596", - "timestamp": "2026-05-14T18:17:59Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358563", + "timestamp": "2026-05-29T19:48:07Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check fltk-config exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031596#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358563#step:6:1" }, { "name": "Test 2 - Check fluid binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031596#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358563#step:7:1" }, { "name": "Test 3 - Check FLTK build flags", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031596#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358563#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031596#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358563#step:9:1" }, { "name": "Test 5 - Compile and run simple FLTK program", "status": "passed", "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031596#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358563#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031596#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358563#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.326009+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.546445+00:00", "publish_state": "published" } } diff --git a/data/test-results/fluentd.json b/data/test-results/fluentd.json index 29c9e31197..6a437d3f85 100644 --- a/data/test-results/fluentd.json +++ b/data/test-results/fluentd.json @@ -5,10 +5,10 @@ "version": "1.19.2" }, "run": { - "id": "25877383844", + "id": "26658692522", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071820", - "timestamp": "2026-05-14T18:18:11Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394689", + "timestamp": "2026-05-29T19:48:21Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check fluentd binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071820#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394689#step:6:1" }, { "name": "Test 2 - Check fluentd version command", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071820#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394689#step:7:1" }, { "name": "Test 3 - Check fluentd help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071820#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394689#step:8:1" }, { "name": "Test 4 - Dry-run configuration", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071820#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394689#step:9:1" }, { "name": "Test 5 - Ruby API and architecture validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071820#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394689#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071820#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394689#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.326196+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.546623+00:00", "publish_state": "published" } } diff --git a/data/test-results/flux.json b/data/test-results/flux.json index 7ce78fd823..638d433282 100644 --- a/data/test-results/flux.json +++ b/data/test-results/flux.json @@ -5,10 +5,10 @@ "version": "v2.5.0" }, "run": { - "id": "25877371674", + "id": "26658681575", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031833", - "timestamp": "2026-05-14T18:18:00Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358472", + "timestamp": "2026-05-29T19:48:07Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check flux binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031833#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358472#step:6:1" }, { "name": "Test 2 - Check flux version output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031833#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358472#step:7:1" }, { "name": "Test 3 - Check flux help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031833#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358472#step:8:1" }, { "name": "Test 4 - Architecture verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031833#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358472#step:9:1" }, { "name": "Test 5 - Functional validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031833#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358472#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031833#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358472#step:11:1", "current_version": "v2.5.0", "latest_version": "v2.5.1", "next_installed_version": "v2.5.1", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.326372+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.546796+00:00", "publish_state": "published" } } diff --git a/data/test-results/flyte.json b/data/test-results/flyte.json index 92a027bb76..68fdba8779 100644 --- a/data/test-results/flyte.json +++ b/data/test-results/flyte.json @@ -5,10 +5,10 @@ "version": "0.8.19" }, "run": { - "id": "25877395502", + "id": "26658703674", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110041", - "timestamp": "2026-05-14T18:18:26Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432908", + "timestamp": "2026-05-29T19:48:34Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,46 +20,46 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 94, + "duration_seconds": 165, "details": [ { "name": "Test 1 - Baseline package evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110041#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432908#step:7:1" }, { "name": "Test 2 - Baseline version and release alignment", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110041#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432908#step:8:1" }, { "name": "Test 3 - Package-specific source or docs evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110041#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432908#step:9:1" }, { "name": "Test 4 - Arm64 support gate", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110041#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432908#step:10:1" }, { "name": "Test 5 - Bounded package-specific smoke", "status": "passed", - "duration_seconds": 168, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110041#step:11:1" + "duration_seconds": 198, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432908#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 94, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110041#step:12:1", + "duration_seconds": 165, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432908#step:12:1", "current_version": "0.8.19", - "latest_version": "2.0.16", - "next_installed_version": "2.0.16", + "latest_version": "2.0.18", + "next_installed_version": "2.0.18", "decision": "limited_cpu_smoke_validated", "regression_result": "Arm preflight proof passed on Arm64", "comparison": "Test 6 reran the scoped Flyte Arm preflight against the next stable source tag: Go package discovery, linux/arm64 compile smoke, chart/manifest validation, and a tiny local Flytekit workflow. A live Flyte control plane and Kubernetes execution backend remain out of scope." @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.326582+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.546972+00:00", "publish_state": "published" } } diff --git a/data/test-results/fmt.json b/data/test-results/fmt.json index e12fd3cd6f..746f71ec17 100644 --- a/data/test-results/fmt.json +++ b/data/test-results/fmt.json @@ -5,10 +5,10 @@ "version": "9.1.0+ds1-2" }, "run": { - "id": "25877392111", + "id": "26658699892", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096583", - "timestamp": "2026-05-14T18:18:23Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420568", + "timestamp": "2026-05-29T19:48:30Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 1, + "duration_seconds": 3, "details": [ { "name": "Test 1 - Check header file exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096583#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420568#step:6:1" }, { "name": "Test 2 - Compile simple program", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096583#step:7:1" + "duration_seconds": 2, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420568#step:7:1" }, { "name": "Test 3 - Run compiled program", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096583#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420568#step:8:1" }, { "name": "Test 4 - Compile program with formatting", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096583#step:9:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420568#step:9:1" }, { "name": "Test 5 - Check pkg-config", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096583#step:10:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420568#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096583#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420568#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.326811+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.547148+00:00", "publish_state": "published" } } diff --git a/data/test-results/font-awesome.json b/data/test-results/font-awesome.json index 49a9dfe001..418a471c34 100644 --- a/data/test-results/font-awesome.json +++ b/data/test-results/font-awesome.json @@ -5,10 +5,10 @@ "version": "5.1.0" }, "run": { - "id": "25877375677", + "id": "26658685142", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044631", - "timestamp": "2026-05-14T18:18:07Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370542", + "timestamp": "2026-05-29T19:48:18Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Package installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044631#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370542#step:7:1" }, { "name": "Test 2 - Version is pinned", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044631#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370542#step:8:1" }, { "name": "Test 3 - CSS and webfont assets exist", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044631#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370542#step:9:1" }, { "name": "Test 4 - Architecture verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044631#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370542#step:10:1" }, { "name": "Test 5 - Parse webfont with font engine", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044631#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370542#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044631#step:12:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370542#step:12:1", "current_version": "5.1.0", "latest_version": "5.1.1", "next_installed_version": "5.1.1", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.327030+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.547348+00:00", "publish_state": "published" } } diff --git a/data/test-results/fping.json b/data/test-results/fping.json index 69e3322572..0961a2b5b6 100644 --- a/data/test-results/fping.json +++ b/data/test-results/fping.json @@ -5,10 +5,10 @@ "version": "5.1" }, "run": { - "id": "25877411197", + "id": "26658717942", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174564", - "timestamp": "2026-05-14T18:18:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478721", + "timestamp": "2026-05-29T19:48:54Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check fping binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174564#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478721#step:6:1" }, { "name": "Test 2 - Check fping version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174564#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478721#step:7:1" }, { "name": "Test 3 - Check fping help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174564#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478721#step:8:1" }, { "name": "Test 4 - Ping localhost", "status": "passed", "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174564#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478721#step:9:1" }, { "name": "Test 5 - Ping multiple hosts (dry run/local)", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174564#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478721#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174564#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478721#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.327251+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.547530+00:00", "publish_state": "published" } } diff --git a/data/test-results/freebsd.json b/data/test-results/freebsd.json index 1314847383..b461c7249f 100644 --- a/data/test-results/freebsd.json +++ b/data/test-results/freebsd.json @@ -5,10 +5,10 @@ "version": "15.0" }, "run": { - "id": "25877371674", + "id": "26658681575", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031659", - "timestamp": "2026-05-14T18:17:59Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358170", + "timestamp": "2026-05-29T19:48:07Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 5, "failed": 0, "skipped": 1, - "duration_seconds": 1, + "duration_seconds": 0, "details": [ { "name": "Test 1 - Check checksum file availability", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031659#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358170#step:6:1" }, { "name": "Test 2 - Check Arm64 image availability", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031659#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358170#step:7:1" }, { "name": "Test 3 - Check checksum entry for Arm64 image", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031659#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358170#step:8:1" }, { "name": "Test 4 - Architecture verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031659#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358170#step:9:1" }, { "name": "Test 5 - Check image metadata headers", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031659#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358170#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "skipped", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031659#step:11:1", + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358170#step:11:1", "current_version": "15.0", "latest_version": "15.0", "next_installed_version": "15.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "skipped", "regression_decision": "no_newer_stable_available", - "production_refreshed_at": "2026-05-14T19:37:17.327447+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.547701+00:00", "publish_state": "published" } } diff --git a/data/test-results/freecad.json b/data/test-results/freecad.json index 7ae0bcf109..e3a2bc7988 100644 --- a/data/test-results/freecad.json +++ b/data/test-results/freecad.json @@ -5,10 +5,10 @@ "version": "1.1.1" }, "run": { - "id": "25877403044", + "id": "26658710721", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048141069", - "timestamp": "2026-05-14T18:18:37Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456458", + "timestamp": "2026-05-29T19:48:43Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 5, "failed": 0, "skipped": 1, - "duration_seconds": 3, + "duration_seconds": 4, "details": [ { "name": "Test 1 - Baseline package evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048141069#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456458#step:8:1" }, { "name": "Test 2 - Installed runtime version", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048141069#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456458#step:9:1" }, { "name": "Test 3 - FreeCADCmd imports modeling modules", "status": "passed", "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048141069#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456458#step:10:1" }, { "name": "Test 4 - Arm64 support gate", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048141069#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456458#step:11:1" }, { "name": "Test 5 - Bounded package-specific smoke", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048141069#step:12:1" + "duration_seconds": 2, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456458#step:12:1" }, { "name": "Test 6 - Regression Validation", "status": "skipped", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048141069#step:13:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456458#step:13:1", "current_version": "1.1.1", "latest_version": "1.1.1", "next_installed_version": "not_installed", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "skipped", "regression_decision": "no_newer_stable_available", - "production_refreshed_at": "2026-05-14T19:37:17.327631+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.547873+00:00", "publish_state": "published" } } diff --git a/data/test-results/freedesktop-sdk.json b/data/test-results/freedesktop-sdk.json index c53db12fb6..7ef5878121 100644 --- a/data/test-results/freedesktop-sdk.json +++ b/data/test-results/freedesktop-sdk.json @@ -5,10 +5,10 @@ "version": "1.14.6" }, "run": { - "id": "25877399008", + "id": "26658707245", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125849", - "timestamp": "2026-05-14T18:18:36Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445921", + "timestamp": "2026-05-29T19:48:39Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check flatpak binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125849#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445921#step:6:1" }, { "name": "Test 2 - Add Flathub remote", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125849#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445921#step:7:1" }, { "name": "Test 3 - Check for Freedesktop SDK availability", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125849#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445921#step:8:1" }, { "name": "Test 4 - Check flatpak help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125849#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445921#step:9:1" }, { "name": "Test 5 - List installed runtimes (should be empty initially)", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125849#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445921#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125849#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445921#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.327858+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.548045+00:00", "publish_state": "published" } } diff --git a/data/test-results/freeglut.json b/data/test-results/freeglut.json index 19686fcb9f..8187a039f9 100644 --- a/data/test-results/freeglut.json +++ b/data/test-results/freeglut.json @@ -5,10 +5,10 @@ "version": "3.4.0-1build1" }, "run": { - "id": "25877395502", + "id": "26658703674", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110068", - "timestamp": "2026-05-14T18:18:26Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433046", + "timestamp": "2026-05-29T19:48:34Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 45, + "duration_seconds": 11, "details": [ { "name": "Test 1 - Check header file exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110068#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433046#step:6:1" }, { "name": "Test 2 - Check library file exists", "status": "passed", - "duration_seconds": 30, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110068#step:7:1" + "duration_seconds": 7, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433046#step:7:1" }, { "name": "Test 3 - Compile simple program", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110068#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433046#step:8:1" }, { "name": "Test 4 - Run compiled program (headless check)", "status": "passed", - "duration_seconds": 14, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110068#step:9:1" + "duration_seconds": 3, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433046#step:9:1" }, { "name": "Test 5 - Verify pkg-config runtime link", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110068#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433046#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110068#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433046#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.328076+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.548212+00:00", "publish_state": "published" } } diff --git a/data/test-results/freeimage.json b/data/test-results/freeimage.json index 8d9bd809a7..71b74c4735 100644 --- a/data/test-results/freeimage.json +++ b/data/test-results/freeimage.json @@ -5,10 +5,10 @@ "version": "3.18.0+ds2-10build4" }, "run": { - "id": "25877363365", + "id": "26658674448", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001104", - "timestamp": "2026-05-14T18:17:47Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575335013", + "timestamp": "2026-05-29T19:47:56Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check header file exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001104#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575335013#step:6:1" }, { "name": "Test 2 - Check library file exists", "status": "passed", - "duration_seconds": 8, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001104#step:7:1" + "duration_seconds": 9, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575335013#step:7:1" }, { "name": "Test 3 - Compile simple program", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001104#step:8:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575335013#step:8:1" }, { "name": "Test 4 - Run compiled program", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001104#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575335013#step:9:1" }, { "name": "Test 5 - Check pkg-config", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001104#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575335013#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001104#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575335013#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.328261+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.548422+00:00", "publish_state": "published" } } diff --git a/data/test-results/freemarker.json b/data/test-results/freemarker.json index ecd1a99dce..b8db591d8c 100644 --- a/data/test-results/freemarker.json +++ b/data/test-results/freemarker.json @@ -5,10 +5,10 @@ "version": "2.3.32-2" }, "run": { - "id": "25877355625", + "id": "26658667828", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976704", - "timestamp": "2026-05-14T18:17:37Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308772", + "timestamp": "2026-05-29T19:47:49Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 1, + "duration_seconds": 2, "details": [ { "name": "Test 1 - Check jar file exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976704#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308772#step:6:1" }, { "name": "Test 2 - Compile simple Java program", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976704#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308772#step:7:1" }, { "name": "Test 3 - Run compiled Java program", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976704#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308772#step:8:1" }, { "name": "Test 4 - Check jar content", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976704#step:9:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308772#step:9:1" }, { "name": "Test 5 - Check package metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976704#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308772#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976704#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308772#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.328459+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.548597+00:00", "publish_state": "published" } } diff --git a/data/test-results/freetype.json b/data/test-results/freetype.json index e8994108c5..43160e38c2 100644 --- a/data/test-results/freetype.json +++ b/data/test-results/freetype.json @@ -5,10 +5,10 @@ "version": "26.1.20" }, "run": { - "id": "25877367704", + "id": "26658677990", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027042", - "timestamp": "2026-05-14T18:17:55Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346987", + "timestamp": "2026-05-29T19:48:03Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 10, + "duration_seconds": 26, "details": [ { "name": "Test 1 - Check header file exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027042#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346987#step:6:1" }, { "name": "Test 2 - Check library file exists", "status": "passed", - "duration_seconds": 9, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027042#step:7:1" + "duration_seconds": 24, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346987#step:7:1" }, { "name": "Test 3 - Compile simple program", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027042#step:8:1" + "duration_seconds": 2, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346987#step:8:1" }, { "name": "Test 4 - Run compiled program", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027042#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346987#step:9:1" }, { "name": "Test 5 - Check pkg-config", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027042#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346987#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027042#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346987#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.328661+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.548773+00:00", "publish_state": "published" } } diff --git a/data/test-results/freetype2.json b/data/test-results/freetype2.json index 9d053bf00b..9c3263d85f 100644 --- a/data/test-results/freetype2.json +++ b/data/test-results/freetype2.json @@ -5,10 +5,10 @@ "version": "26.1.20" }, "run": { - "id": "25877367704", + "id": "26658677990", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026890", - "timestamp": "2026-05-14T18:17:55Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347062", + "timestamp": "2026-05-29T19:48:02Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 2, + "duration_seconds": 1, "details": [ { "name": "Test 1 - Check package detection", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026890#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347062#step:6:1" }, { "name": "Test 2 - Check version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026890#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347062#step:7:1" }, { "name": "Test 3 - Check compiler flags output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026890#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347062#step:8:1" }, { "name": "Test 4 - Verify architecture", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026890#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347062#step:9:1" }, { "name": "Test 5 - Functional compile and run", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026890#step:10:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347062#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026890#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347062#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.328914+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.548945+00:00", "publish_state": "published" } } diff --git a/data/test-results/functionbeat.json b/data/test-results/functionbeat.json index 92609b5041..0d2aadda40 100644 --- a/data/test-results/functionbeat.json +++ b/data/test-results/functionbeat.json @@ -5,10 +5,10 @@ "version": "7.17.27" }, "run": { - "id": "25877415436", + "id": "26658721315", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181071", - "timestamp": "2026-05-14T18:18:56Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491815", + "timestamp": "2026-05-29T19:48:56Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 5, + "duration_seconds": 8, "details": [ { "name": "Test 1 - Check Functionbeat binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181071#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491815#step:6:1" }, { "name": "Test 2 - Check Functionbeat version output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181071#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491815#step:7:1" }, { "name": "Test 3 - Check Functionbeat help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181071#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491815#step:8:1" }, { "name": "Test 4 - Verify architecture", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181071#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491815#step:9:1" }, { "name": "Test 5 - Export Functionbeat template", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181071#step:10:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491815#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 5, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181071#step:11:1", + "duration_seconds": 8, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491815#step:11:1", "current_version": "7.17.27", "latest_version": "7.17.28", "next_installed_version": "7.17.28", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.329121+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.549116+00:00", "publish_state": "published" } } diff --git a/data/test-results/gRPC-java.json b/data/test-results/gRPC-java.json index 22d19c4978..d6e5f239b5 100644 --- a/data/test-results/gRPC-java.json +++ b/data/test-results/gRPC-java.json @@ -5,10 +5,10 @@ "version": "1.55.1" }, "run": { - "id": "25877399008", + "id": "26658707245", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125983", - "timestamp": "2026-05-14T18:18:31Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445820", + "timestamp": "2026-05-29T19:48:38Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -25,38 +25,38 @@ { "name": "Test 1 - Check gRPC-java plugin exists", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125983#step:6:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445820#step:6:1" }, { "name": "Test 2 - Verify plugin architecture", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125983#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445820#step:7:1" }, { "name": "Test 3 - Check protoc availability", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125983#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445820#step:8:1" }, { "name": "Test 4 - Generate Java stubs from proto", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125983#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445820#step:9:1" }, { "name": "Test 5 - Verify generated Java files", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125983#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445820#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125983#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445820#step:11:1", "current_version": "1.55.1", "latest_version": "1.55.3", "next_installed_version": "1.55.3", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.329342+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.549332+00:00", "publish_state": "published" } } diff --git a/data/test-results/gRPC.json b/data/test-results/gRPC.json index 82ae873100..0cddd0cc68 100644 --- a/data/test-results/gRPC.json +++ b/data/test-results/gRPC.json @@ -5,10 +5,10 @@ "version": "1.51.1-4.1build5" }, "run": { - "id": "25877395502", + "id": "26658703674", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110018", - "timestamp": "2026-05-14T18:18:26Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432874", + "timestamp": "2026-05-29T19:48:33Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 13, + "duration_seconds": 12, "details": [ { "name": "Test 1 - Check header file exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110018#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432874#step:6:1" }, { "name": "Test 2 - Check C++ header file exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110018#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432874#step:7:1" }, { "name": "Test 3 - Check plugin binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110018#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432874#step:8:1" }, { "name": "Test 4 - Generate and compile gRPC loopback sample", "status": "passed", - "duration_seconds": 8, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110018#step:9:1" + "duration_seconds": 7, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432874#step:9:1" }, { "name": "Test 5 - Run gRPC loopback request", "status": "passed", "duration_seconds": 5, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110018#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432874#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110018#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432874#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.329550+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.549519+00:00", "publish_state": "published" } } diff --git a/data/test-results/gVisor.json b/data/test-results/gVisor.json index 86b809e18a..9e3bd9ff94 100644 --- a/data/test-results/gVisor.json +++ b/data/test-results/gVisor.json @@ -5,10 +5,10 @@ "version": "release-20250127.0" }, "run": { - "id": "25877411197", + "id": "26658717942", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175326", - "timestamp": "2026-05-14T18:18:50Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479987", + "timestamp": "2026-05-29T19:48:52Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check runsc binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175326#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479987#step:6:1" }, { "name": "Test 2 - Check runsc version output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175326#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479987#step:7:1" }, { "name": "Test 3 - Check runsc help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175326#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479987#step:8:1" }, { "name": "Test 4 - Verify architecture", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175326#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479987#step:9:1" }, { "name": "Test 5 - Validate runsc command path", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175326#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479987#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175326#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479987#step:11:1", "current_version": "release-20250127.0", "latest_version": "release-20250203.0", "next_installed_version": "release-20250203.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.329774+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.549698+00:00", "publish_state": "published" } } diff --git a/data/test-results/ganglia.json b/data/test-results/ganglia.json index d3c5369229..d9bab31c7e 100644 --- a/data/test-results/ganglia.json +++ b/data/test-results/ganglia.json @@ -5,10 +5,10 @@ "version": "3.7.2" }, "run": { - "id": "25877375677", + "id": "26658685142", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045162", - "timestamp": "2026-05-14T18:18:01Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370458", + "timestamp": "2026-05-29T19:48:11Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check gmond binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045162#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370458#step:6:1" }, { "name": "Test 2 - Check gmond version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045162#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370458#step:7:1" }, { "name": "Test 3 - Check gmond help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045162#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370458#step:8:1" }, { "name": "Test 4 - Check default configuration generation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045162#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370458#step:9:1" }, { "name": "Test 5 - Check gmetric binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045162#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370458#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045162#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370458#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.330076+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.549966+00:00", "publish_state": "published" } } diff --git a/data/test-results/garden-linux.json b/data/test-results/garden-linux.json index 9339152fa8..86fc477dbb 100644 --- a/data/test-results/garden-linux.json +++ b/data/test-results/garden-linux.json @@ -5,10 +5,10 @@ "version": "934.0" }, "run": { - "id": "25877406767", + "id": "26658714432", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155717", - "timestamp": "2026-05-14T18:18:44Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469225", + "timestamp": "2026-05-29T19:48:49Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,46 +20,46 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 1, + "duration_seconds": 3, "details": [ { "name": "Test 1 - Baseline package evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155717#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469225#step:7:1" }, { "name": "Test 2 - Baseline version and release alignment", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155717#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469225#step:8:1" }, { "name": "Test 3 - Package-specific source or docs evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155717#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469225#step:9:1" }, { "name": "Test 4 - Arm64 support gate", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155717#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469225#step:10:1" }, { "name": "Test 5 - Bounded package-specific smoke", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155717#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469225#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155717#step:13:1", + "duration_seconds": 2, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469225#step:13:1", "current_version": "934.0", - "latest_version": "2150.3.0", - "next_installed_version": "2150.3.0", + "latest_version": "2150.4.0", + "next_installed_version": "2150.4.0", "decision": "limited_cpu_smoke_validated", "regression_result": "Arm preflight proof passed on Arm64", "comparison": "Test 6 reran the scoped Garden Linux Arm preflight against the next stable source tag: image-build source layout, helper/source compile pass where present, and Arm/image release asset validation. OS boot, systemd, kernel modules, and cloud-init remain out of scope." @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.330281+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.550142+00:00", "publish_state": "published" } } diff --git a/data/test-results/gardener.json b/data/test-results/gardener.json index 4c5dad0cad..9a92ed4b8c 100644 --- a/data/test-results/gardener.json +++ b/data/test-results/gardener.json @@ -5,10 +5,10 @@ "version": "2.9.0" }, "run": { - "id": "25877359516", + "id": "26658670904", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991519", - "timestamp": "2026-05-14T18:17:45Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321809", + "timestamp": "2026-05-29T19:47:53Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 1, + "duration_seconds": 3, "details": [ { "name": "Test 1 - Check gardenctl binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991519#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321809#step:6:1" }, { "name": "Test 2 - Check gardenctl version output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991519#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321809#step:7:1" }, { "name": "Test 3 - Check gardenctl help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991519#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321809#step:8:1" }, { "name": "Test 4 - Check gardenctl provider-env help", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991519#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321809#step:9:1" }, { "name": "Test 5 - Verify architecture", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991519#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321809#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991519#step:11:1", + "duration_seconds": 3, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321809#step:11:1", "current_version": "2.9.0", "latest_version": "2.10.0", "next_installed_version": "2.10.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.330512+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.550354+00:00", "publish_state": "published" } } diff --git a/data/test-results/gatsby.json b/data/test-results/gatsby.json index 194740b888..098aa5f4c0 100644 --- a/data/test-results/gatsby.json +++ b/data/test-results/gatsby.json @@ -5,10 +5,10 @@ "version": "5.16.0" }, "run": { - "id": "25877403044", + "id": "26658710721", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140993", - "timestamp": "2026-05-14T18:18:37Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456352", + "timestamp": "2026-05-29T19:48:43Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 2, + "duration_seconds": 1, "details": [ { "name": "Test 1 - Check gatsby binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140993#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456352#step:6:1" }, { "name": "Test 2 - Check gatsby version command", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140993#step:7:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456352#step:7:1" }, { "name": "Test 3 - Check gatsby help output", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140993#step:8:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456352#step:8:1" }, { "name": "Test 4 - Check gatsby options command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140993#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456352#step:9:1" }, { "name": "Test 5 - Check gatsby telemetry command", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140993#step:10:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456352#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140993#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456352#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.330723+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.550541+00:00", "publish_state": "published" } } diff --git a/data/test-results/gcc.json b/data/test-results/gcc.json index 5d76161b78..80ab93f0a2 100644 --- a/data/test-results/gcc.json +++ b/data/test-results/gcc.json @@ -5,10 +5,10 @@ "version": "13.3.0" }, "run": { - "id": "25877423406", + "id": "26658727918", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210105", - "timestamp": "2026-05-14T18:19:06Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515941", + "timestamp": "2026-05-29T19:49:06Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check gcc binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210105#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515941#step:6:1" }, { "name": "Test 2 - Check gcc version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210105#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515941#step:7:1" }, { "name": "Test 3 - Check gcc help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210105#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515941#step:8:1" }, { "name": "Test 4 - Compile simple C program", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210105#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515941#step:9:1" }, { "name": "Test 5 - Run compiled program", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210105#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515941#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210105#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515941#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.330963+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.550713+00:00", "publish_state": "published" } } diff --git a/data/test-results/gdal.json b/data/test-results/gdal.json index 47eb43aa4f..07fadaf841 100644 --- a/data/test-results/gdal.json +++ b/data/test-results/gdal.json @@ -5,10 +5,10 @@ "version": "3.8.4" }, "run": { - "id": "25877379982", + "id": "26658688675", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057386", - "timestamp": "2026-05-14T18:18:05Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380419", + "timestamp": "2026-05-29T19:48:14Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check gdalinfo binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057386#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380419#step:6:1" }, { "name": "Test 2 - Check gdalinfo version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057386#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380419#step:7:1" }, { "name": "Test 3 - Check gdalinfo help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057386#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380419#step:8:1" }, { "name": "Test 4 - List supported formats", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057386#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380419#step:9:1" }, { "name": "Test 5 - Check ogr2ogr binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057386#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380419#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057386#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380419#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.331144+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.550882+00:00", "publish_state": "published" } } diff --git a/data/test-results/gdb.json b/data/test-results/gdb.json index 3f944ad1c7..b85edd47c5 100644 --- a/data/test-results/gdb.json +++ b/data/test-results/gdb.json @@ -5,10 +5,10 @@ "version": "15.1-1ubuntu1~24.04.1)" }, "run": { - "id": "25877399008", + "id": "26658707245", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125102", - "timestamp": "2026-05-14T18:18:31Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575444553", + "timestamp": "2026-05-29T19:48:38Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 5, + "duration_seconds": 4, "details": [ { "name": "Test 1 - Check gdb binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125102#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575444553#step:6:1" }, { "name": "Test 2 - Check gdb version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125102#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575444553#step:7:1" }, { "name": "Test 3 - Check gdb help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125102#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575444553#step:8:1" }, { "name": "Test 4 - Debug simple C program (batch mode)", "status": "passed", "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125102#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575444553#step:9:1" }, { "name": "Test 5 - Check gdbserver binary exists (optional)", "status": "passed", - "duration_seconds": 3, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125102#step:10:1" + "duration_seconds": 2, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575444553#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125102#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575444553#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.331338+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.551052+00:00", "publish_state": "published" } } diff --git a/data/test-results/gdrcopy.json b/data/test-results/gdrcopy.json index e82b5289a9..266f87709d 100644 --- a/data/test-results/gdrcopy.json +++ b/data/test-results/gdrcopy.json @@ -5,10 +5,10 @@ "version": "2.2" }, "run": { - "id": "25877406767", + "id": "26658714432", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155664", - "timestamp": "2026-05-14T18:18:46Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469310", + "timestamp": "2026-05-29T19:48:49Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 10, + "duration_seconds": 4, "details": [ { "name": "Test 1 - Baseline package evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155664#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469310#step:7:1" }, { "name": "Test 2 - Baseline version and release alignment", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155664#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469310#step:8:1" }, { "name": "Test 3 - Package-specific source or docs evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155664#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469310#step:9:1" }, { "name": "Test 4 - Arm64 support gate", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155664#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469310#step:10:1" }, { "name": "Test 5 - Run scoped Arm preflight proof", "status": "passed", - "duration_seconds": 8, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155664#step:11:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469310#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155664#step:12:1", + "duration_seconds": 3, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469310#step:12:1", "current_version": "2.2", "latest_version": "2.5.2", "next_installed_version": "2.5.2", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.331516+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.551223+00:00", "publish_state": "published" } } diff --git a/data/test-results/gdsfactory.json b/data/test-results/gdsfactory.json index 40e261fdaa..d37ce084c2 100644 --- a/data/test-results/gdsfactory.json +++ b/data/test-results/gdsfactory.json @@ -5,10 +5,10 @@ "version": "9.9.4" }, "run": { - "id": "25877406767", + "id": "26658714432", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155546", - "timestamp": "2026-05-14T18:18:51Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469437", + "timestamp": "2026-05-29T19:48:57Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,46 +20,46 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 43, + "duration_seconds": 42, "details": [ { "name": "Test 1 - Baseline package evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155546#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469437#step:8:1" }, { "name": "Test 2 - Baseline version and release alignment", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155546#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469437#step:9:1" }, { "name": "Test 3 - Package-specific source or docs evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155546#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469437#step:10:1" }, { "name": "Test 4 - Arm64 support gate", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155546#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469437#step:11:1" }, { "name": "Test 5 - Bounded package-specific smoke", "status": "passed", - "duration_seconds": 8, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155546#step:12:1" + "duration_seconds": 6, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469437#step:12:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 43, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155546#step:14:1", + "duration_seconds": 42, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469437#step:14:1", "current_version": "9.9.4", - "latest_version": "9.42.0", - "next_installed_version": "9.42.0", + "latest_version": "9.43.0", + "next_installed_version": "9.43.0", "decision": "limited_cpu_smoke_validated", "regression_result": "Arm preflight proof passed on Arm64", "comparison": "Installed the next GDSFactory candidate on the Arm64 runner and wrote a tiny GDS layout file." @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.331714+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.551456+00:00", "publish_state": "published" } } diff --git a/data/test-results/gdspy.json b/data/test-results/gdspy.json index 08783f82b6..d4b4d13552 100644 --- a/data/test-results/gdspy.json +++ b/data/test-results/gdspy.json @@ -5,10 +5,10 @@ "version": "0.2.9" }, "run": { - "id": "25877406767", + "id": "26658714432", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155701", - "timestamp": "2026-05-14T18:18:44Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469313", + "timestamp": "2026-05-29T19:48:49Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Package installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155701#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469313#step:7:1" }, { "name": "Test 2 - Version metadata matches baseline", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155701#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469313#step:8:1" }, { "name": "Test 3 - Installed files metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155701#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469313#step:9:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155701#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469313#step:10:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155701#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469313#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 9, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155701#step:13:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469313#step:13:1", "current_version": "0.2.9", "latest_version": "0.3", "next_installed_version": "0.3", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.331952+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.551642+00:00", "publish_state": "published" } } diff --git a/data/test-results/geda.json b/data/test-results/geda.json index 332e41744c..670a85855a 100644 --- a/data/test-results/geda.json +++ b/data/test-results/geda.json @@ -5,10 +5,10 @@ "version": "1:1.8.2-4" }, "run": { - "id": "25877411197", + "id": "26658717942", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175585", - "timestamp": "2026-05-14T18:18:48Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480021", + "timestamp": "2026-05-29T19:48:52Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Baseline package evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175585#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480021#step:7:1" }, { "name": "Test 2 - Baseline version and release alignment", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175585#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480021#step:8:1" }, { "name": "Test 3 - Package-specific source or docs evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175585#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480021#step:9:1" }, { "name": "Test 4 - Arm64 support gate", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175585#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480021#step:10:1" }, { "name": "Test 5 - Bounded package-specific smoke", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175585#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480021#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "skipped", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175585#step:12:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480021#step:12:1", "current_version": "1:1.8.2-4", "latest_version": "1:1.8.2-4", "next_installed_version": "not_installed", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "skipped", "regression_decision": "no_newer_stable_available", - "production_refreshed_at": "2026-05-14T19:37:17.332139+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.551810+00:00", "publish_state": "published" } } diff --git a/data/test-results/gem5.json b/data/test-results/gem5.json index 55cd4a404f..b00befe861 100644 --- a/data/test-results/gem5.json +++ b/data/test-results/gem5.json @@ -5,10 +5,10 @@ "version": "21.0.0.0" }, "run": { - "id": "25877411197", + "id": "26658717942", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175479", - "timestamp": "2026-05-14T18:18:50Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480064", + "timestamp": "2026-05-29T19:48:52Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 4142, + "duration_seconds": 4225, "details": [ { "name": "Test 1 - Baseline package evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175479#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480064#step:7:1" }, { "name": "Test 2 - Baseline version and release alignment", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175479#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480064#step:8:1" }, { "name": "Test 3 - Package-specific source or docs evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175479#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480064#step:9:1" }, { "name": "Test 4 - Arm64 support gate", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175479#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480064#step:10:1" }, { "name": "Test 5 - Bounded package-specific smoke", "status": "passed", - "duration_seconds": 8, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175479#step:11:1" + "duration_seconds": 4, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480064#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 4142, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175479#step:12:1", + "duration_seconds": 4225, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480064#step:12:1", "current_version": "21.0.0.0", "latest_version": "25.1.0.1", "next_installed_version": "25.1.0.1", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.332350+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.551986+00:00", "publish_state": "published" } } diff --git a/data/test-results/geos.json b/data/test-results/geos.json index 05cecaf115..eea2816c5b 100644 --- a/data/test-results/geos.json +++ b/data/test-results/geos.json @@ -5,10 +5,10 @@ "version": "3.12.1" }, "run": { - "id": "25877359516", + "id": "26658670904", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991680", - "timestamp": "2026-05-14T18:17:44Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321617", + "timestamp": "2026-05-29T19:47:53Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 4, + "duration_seconds": 2, "details": [ { "name": "Test 1 - Check geos-config binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991680#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321617#step:6:1" }, { "name": "Test 2 - Check geos-config version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991680#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321617#step:7:1" }, { "name": "Test 3 - Check geos-config cflags", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991680#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321617#step:8:1" }, { "name": "Test 4 - Compile simple C++ program using GEOS", "status": "passed", - "duration_seconds": 4, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991680#step:9:1" + "duration_seconds": 2, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321617#step:9:1" }, { "name": "Test 5 - Run compiled program", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991680#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321617#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991680#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321617#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.332576+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.552162+00:00", "publish_state": "published" } } diff --git a/data/test-results/geoserver.json b/data/test-results/geoserver.json index 8bf5b09701..32a45999db 100644 --- a/data/test-results/geoserver.json +++ b/data/test-results/geoserver.json @@ -5,10 +5,10 @@ "version": "2.27.1" }, "run": { - "id": "25877415436", + "id": "26658721315", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180916", - "timestamp": "2026-05-14T18:18:53Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491639", + "timestamp": "2026-05-29T19:48:55Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 57, + "duration_seconds": 24, "details": [ { "name": "Test 1 - Check startup script exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180916#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491639#step:6:1" }, { "name": "Test 2 - Check GeoServer version file", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180916#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491639#step:7:1" }, { "name": "Test 3 - Check GeoServer core files", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180916#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491639#step:8:1" }, { "name": "Test 4 - Check GeoServer webapp files", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180916#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491639#step:9:1" }, { "name": "Test 5 - Check GeoServer startup help", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180916#step:10:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491639#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 56, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180916#step:11:1", + "duration_seconds": 24, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491639#step:11:1", "current_version": "2.27.1", "latest_version": "2.27.2", "next_installed_version": "2.27.2", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.332795+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.552357+00:00", "publish_state": "published" } } diff --git a/data/test-results/gerbv.json b/data/test-results/gerbv.json index a1a4d6123d..ec34976c86 100644 --- a/data/test-results/gerbv.json +++ b/data/test-results/gerbv.json @@ -5,10 +5,10 @@ "version": "2.10.0-1build2" }, "run": { - "id": "25877411197", + "id": "26658717942", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175579", - "timestamp": "2026-05-14T18:18:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479495", + "timestamp": "2026-05-29T19:48:51Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Baseline package evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175579#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479495#step:7:1" }, { "name": "Test 2 - Installed runtime version", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175579#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479495#step:8:1" }, { "name": "Test 3 - Gerbv headless help", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175579#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479495#step:9:1" }, { "name": "Test 4 - Arm64 support gate", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175579#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479495#step:10:1" }, { "name": "Test 5 - Bounded package-specific smoke", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175579#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479495#step:11:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175579#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479495#step:12:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.333021+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.552549+00:00", "publish_state": "published" } } diff --git a/data/test-results/gerrit.json b/data/test-results/gerrit.json index a9b417df52..33f757e6f7 100644 --- a/data/test-results/gerrit.json +++ b/data/test-results/gerrit.json @@ -5,10 +5,10 @@ "version": "3.9.1" }, "run": { - "id": "25877423406", + "id": "26658727918", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209946", - "timestamp": "2026-05-14T18:19:01Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515999", + "timestamp": "2026-05-29T19:49:06Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Gerrit WAR exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209946#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515999#step:6:1" }, { "name": "Test 2 - Check Gerrit version output", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209946#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515999#step:7:1" }, { "name": "Test 3 - Check site initialization created gerrit.sh", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209946#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515999#step:8:1" }, { "name": "Test 4 - Check Gerrit config files exist", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209946#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515999#step:9:1" }, { "name": "Test 5 - Check Gerrit script usage and Arm64 runtime", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209946#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515999#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209946#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515999#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.333228+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.552734+00:00", "publish_state": "published" } } diff --git a/data/test-results/ghdl.json b/data/test-results/ghdl.json index deb5fdf110..d59ec56e6a 100644 --- a/data/test-results/ghdl.json +++ b/data/test-results/ghdl.json @@ -5,10 +5,10 @@ "version": "0.37+dfsg-1ubuntu1" }, "run": { - "id": "25877411197", + "id": "26658717942", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175303", - "timestamp": "2026-05-14T18:18:50Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479743", + "timestamp": "2026-05-29T19:48:51Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 8, + "duration_seconds": 5, "details": [ { "name": "Test 1 - Baseline package evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175303#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479743#step:7:1" }, { "name": "Test 2 - Baseline version and release alignment", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175303#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479743#step:8:1" }, { "name": "Test 3 - Package-specific source or docs evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175303#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479743#step:9:1" }, { "name": "Test 4 - Arm64 support gate", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175303#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479743#step:10:1" }, { "name": "Test 5 - Bounded package-specific smoke", "status": "passed", - "duration_seconds": 8, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175303#step:11:1" + "duration_seconds": 5, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479743#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175303#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479743#step:12:1" } ] }, @@ -72,7 +72,7 @@ "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", "regression_status": "passed", - "production_refreshed_at": "2026-05-14T19:37:17.333427+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.552918+00:00", "publish_state": "published" } } diff --git a/data/test-results/git.json b/data/test-results/git.json index 78b8c5b37d..c6772f39f1 100644 --- a/data/test-results/git.json +++ b/data/test-results/git.json @@ -5,10 +5,10 @@ "version": "2.53.0" }, "run": { - "id": "25877406767", + "id": "26658714432", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155688", - "timestamp": "2026-05-14T18:18:45Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469547", + "timestamp": "2026-05-29T19:48:48Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check git binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155688#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469547#step:6:1" }, { "name": "Test 2 - Check git version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155688#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469547#step:7:1" }, { "name": "Test 3 - Check git help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155688#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469547#step:8:1" }, { "name": "Test 4 - Initialize a repository", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155688#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469547#step:9:1" }, { "name": "Test 5 - Configure user (local)", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155688#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469547#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155688#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469547#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.333636+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.553097+00:00", "publish_state": "published" } } diff --git a/data/test-results/gitbook.json b/data/test-results/gitbook.json index c9d3948160..34fd7b3801 100644 --- a/data/test-results/gitbook.json +++ b/data/test-results/gitbook.json @@ -5,10 +5,10 @@ "version": "2.3.2" }, "run": { - "id": "25877383844", + "id": "26658692522", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071815", - "timestamp": "2026-05-14T18:18:12Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394677", + "timestamp": "2026-05-29T19:48:19Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check gitbook binary", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071815#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394677#step:7:1" }, { "name": "Test 2 - Check version command", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071815#step:8:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394677#step:8:1" }, { "name": "Test 3 - Check help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071815#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394677#step:9:1" }, { "name": "Test 4 - Verify architecture", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071815#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394677#step:10:1" }, { "name": "Test 5 - Functional init and build", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071815#step:11:1" + "duration_seconds": 3, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394677#step:11:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071815#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394677#step:12:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.333852+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.553300+00:00", "publish_state": "published" } } diff --git a/data/test-results/gitlab.json b/data/test-results/gitlab.json index d4aa9eebcc..deb04b4d2d 100644 --- a/data/test-results/gitlab.json +++ b/data/test-results/gitlab.json @@ -5,10 +5,10 @@ "version": "18.9.2-ce.0" }, "run": { - "id": "25877406767", + "id": "26658714432", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155389", - "timestamp": "2026-05-14T18:18:43Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469274", + "timestamp": "2026-05-29T19:48:48Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check gitlab-ctl binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155389#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469274#step:6:1" }, { "name": "Test 2 - Check installed GitLab package version", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155389#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469274#step:7:1" }, { "name": "Test 3 - Check gitlab-rake binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155389#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469274#step:8:1" }, { "name": "Test 4 - Check gitlab-rails binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155389#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469274#step:9:1" }, { "name": "Test 5 - Check gitlab-ctl help, config file, and Arm64 runtime", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155389#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469274#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155389#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469274#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.334082+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.553485+00:00", "publish_state": "published" } } diff --git a/data/test-results/gitness.json b/data/test-results/gitness.json index 169fe85934..ebfdc51899 100644 --- a/data/test-results/gitness.json +++ b/data/test-results/gitness.json @@ -5,10 +5,10 @@ "version": "3.0.0" }, "run": { - "id": "25877419588", + "id": "26658724696", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192234", - "timestamp": "2026-05-14T18:18:59Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504149", + "timestamp": "2026-05-29T19:49:01Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Gitness binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192234#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504149#step:6:1" }, { "name": "Test 2 - Check Gitness version output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192234#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504149#step:7:1" }, { "name": "Test 3 - Check Gitness help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192234#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504149#step:8:1" }, { "name": "Test 4 - Verify Arm64 image and runner architecture", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192234#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504149#step:9:1" }, { "name": "Test 5 - Functional validation", "status": "passed", "duration_seconds": 3, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192234#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504149#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "skipped", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192234#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504149#step:11:1", "current_version": "3.0.0", "latest_version": "3.0.0", "next_installed_version": "3.0.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "skipped", "regression_decision": "no_newer_stable_available", - "production_refreshed_at": "2026-05-14T19:37:17.334286+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.553662+00:00", "publish_state": "published" } } diff --git a/data/test-results/glance.json b/data/test-results/glance.json index 278dfb5b51..c8facc54a4 100644 --- a/data/test-results/glance.json +++ b/data/test-results/glance.json @@ -5,10 +5,10 @@ "version": "2:28.1.0-0ubuntu1.2" }, "run": { - "id": "25877367704", + "id": "26658677990", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026991", - "timestamp": "2026-05-14T18:17:55Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347412", + "timestamp": "2026-05-29T19:48:02Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check glance-api binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026991#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347412#step:6:1" }, { "name": "Test 2 - Check glance-api version command", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026991#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347412#step:7:1" }, { "name": "Test 3 - Check glance-manage binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026991#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347412#step:8:1" }, { "name": "Test 4 - Check config directory or file", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026991#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347412#step:9:1" }, { "name": "Test 5 - Check glance-scrubber binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026991#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347412#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026991#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347412#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.334467+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.553836+00:00", "publish_state": "published" } } diff --git a/data/test-results/glew.json b/data/test-results/glew.json index 987d623455..1a3a07c2bd 100644 --- a/data/test-results/glew.json +++ b/data/test-results/glew.json @@ -5,10 +5,10 @@ "version": "2.2.0-4build1" }, "run": { - "id": "25877419588", + "id": "26658724696", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192584", - "timestamp": "2026-05-14T18:18:59Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504161", + "timestamp": "2026-05-29T19:49:01Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check glewinfo binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192584#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504161#step:6:1" }, { "name": "Test 2 - Check visualinfo binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192584#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504161#step:7:1" }, { "name": "Test 3 - Check glew headers exist", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192584#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504161#step:8:1" }, { "name": "Test 4 - Compile simple C program using GLEW", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192584#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504161#step:9:1" }, { "name": "Test 5 - Run compiled program (basic check)", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192584#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504161#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192584#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504161#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.334646+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.554000+00:00", "publish_state": "published" } } diff --git a/data/test-results/glibc.json b/data/test-results/glibc.json index 4f023e18b5..3cd000a48e 100644 --- a/data/test-results/glibc.json +++ b/data/test-results/glibc.json @@ -5,10 +5,10 @@ "version": "2.39" }, "run": { - "id": "25877411197", + "id": "26658717942", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175474", - "timestamp": "2026-05-14T18:18:50Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478599", + "timestamp": "2026-05-29T19:48:51Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 1, + "duration_seconds": 2, "details": [ { "name": "Test 1 - Check ldd binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175474#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478599#step:6:1" }, { "name": "Test 2 - Check ldd version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175474#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478599#step:7:1" }, { "name": "Test 3 - Check libc.so location", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175474#step:8:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478599#step:8:1" }, { "name": "Test 4 - Compile simple C program", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175474#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478599#step:9:1" }, { "name": "Test 5 - Run compiled program", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175474#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478599#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175474#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478599#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.334964+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.554275+00:00", "publish_state": "published" } } diff --git a/data/test-results/glog.json b/data/test-results/glog.json index e93961a9c3..a2425419a7 100644 --- a/data/test-results/glog.json +++ b/data/test-results/glog.json @@ -5,10 +5,10 @@ "version": "0.6.0" }, "run": { - "id": "25877395502", + "id": "26658703674", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110060", - "timestamp": "2026-05-14T18:18:27Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432998", + "timestamp": "2026-05-29T19:48:34Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check pkg-config for libglog", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110060#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432998#step:6:1" }, { "name": "Test 2 - Check glog headers exist", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110060#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432998#step:7:1" }, { "name": "Test 3 - Check libglog.so exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110060#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432998#step:8:1" }, { "name": "Test 4 - Compile simple C++ program using Glog", "status": "passed", "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110060#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432998#step:9:1" }, { "name": "Test 5 - Run compiled program", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110060#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432998#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110060#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432998#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.335151+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.554466+00:00", "publish_state": "published" } } diff --git a/data/test-results/glusterfs.json b/data/test-results/glusterfs.json index c69012bf27..eebaeb0c40 100644 --- a/data/test-results/glusterfs.json +++ b/data/test-results/glusterfs.json @@ -5,10 +5,10 @@ "version": "11.1" }, "run": { - "id": "25877387746", + "id": "26658696365", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084468", - "timestamp": "2026-05-14T18:18:16Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407299", + "timestamp": "2026-05-29T19:48:24Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check gluster binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084468#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407299#step:6:1" }, { "name": "Test 2 - Check gluster version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084468#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407299#step:7:1" }, { "name": "Test 3 - Check glusterfsd binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084468#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407299#step:8:1" }, { "name": "Test 4 - Check glusterd service status (optional)", "status": "passed", "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084468#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407299#step:9:1" }, { "name": "Test 5 - Check gluster help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084468#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407299#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084468#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407299#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.335360+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.554646+00:00", "publish_state": "published" } } diff --git a/data/test-results/gluten.json b/data/test-results/gluten.json index 12214ca9ce..fc038f4e9c 100644 --- a/data/test-results/gluten.json +++ b/data/test-results/gluten.json @@ -5,10 +5,10 @@ "version": "1.1.1" }, "run": { - "id": "25877411197", + "id": "26658717942", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175723", - "timestamp": "2026-05-14T18:18:48Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479611", + "timestamp": "2026-05-29T19:48:51Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 29, + "duration_seconds": 26, "details": [ { "name": "Test 1 - Baseline package evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175723#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479611#step:7:1" }, { "name": "Test 2 - Baseline version and release alignment", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175723#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479611#step:8:1" }, { "name": "Test 3 - Package-specific source or docs evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175723#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479611#step:9:1" }, { "name": "Test 4 - Arm64 support gate", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175723#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479611#step:10:1" }, { "name": "Test 5 - Bounded package-specific smoke", "status": "passed", - "duration_seconds": 65, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175723#step:11:1" + "duration_seconds": 74, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479611#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 29, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175723#step:12:1", + "duration_seconds": 26, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479611#step:12:1", "current_version": "1.1.1", "latest_version": "1.6.0", "next_installed_version": "1.6.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.335583+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.554821+00:00", "publish_state": "published" } } diff --git a/data/test-results/gmp.json b/data/test-results/gmp.json index 710a54e1c5..f9b6b62b90 100644 --- a/data/test-results/gmp.json +++ b/data/test-results/gmp.json @@ -5,10 +5,10 @@ "version": "2:6.3.0+dfsg-2ubuntu6.1" }, "run": { - "id": "25877363365", + "id": "26658674448", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000982", - "timestamp": "2026-05-14T18:17:48Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334859", + "timestamp": "2026-05-29T19:47:56Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -25,38 +25,38 @@ { "name": "Test 1 - Check gmp.h header exists", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000982#step:6:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334859#step:6:1" }, { "name": "Test 2 - Check libgmp.so exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000982#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334859#step:7:1" }, { "name": "Test 3 - Compile simple C program using GMP", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000982#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334859#step:8:1" }, { "name": "Test 4 - Run compiled program", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000982#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334859#step:9:1" }, { "name": "Test 5 - Check gmpxx.h header exists (C++ wrapper)", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000982#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334859#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000982#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334859#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.335793+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.555000+00:00", "publish_state": "published" } } diff --git a/data/test-results/gnucap.json b/data/test-results/gnucap.json index e5c7b646a9..ba75cf3e18 100644 --- a/data/test-results/gnucap.json +++ b/data/test-results/gnucap.json @@ -5,10 +5,10 @@ "version": "1:0.36~20091207-2" }, "run": { - "id": "25877411197", + "id": "26658717942", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175600", - "timestamp": "2026-05-14T18:18:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479990", + "timestamp": "2026-05-29T19:48:53Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 5, + "duration_seconds": 6, "details": [ { "name": "Test 1 - Baseline package evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175600#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479990#step:7:1" }, { "name": "Test 2 - Baseline version and release alignment", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175600#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479990#step:8:1" }, { "name": "Test 3 - Package-specific source or docs evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175600#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479990#step:9:1" }, { "name": "Test 4 - Arm64 support gate", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175600#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479990#step:10:1" }, { "name": "Test 5 - Bounded package-specific smoke", "status": "passed", - "duration_seconds": 5, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175600#step:11:1" + "duration_seconds": 6, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479990#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175600#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479990#step:12:1" } ] }, @@ -72,7 +72,7 @@ "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", "regression_status": "passed", - "production_refreshed_at": "2026-05-14T19:37:17.335999+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.555187+00:00", "publish_state": "published" } } diff --git a/data/test-results/gnutls.json b/data/test-results/gnutls.json index c5ce03eb69..dc649a39e3 100644 --- a/data/test-results/gnutls.json +++ b/data/test-results/gnutls.json @@ -5,10 +5,10 @@ "version": "3.8.3" }, "run": { - "id": "25877423406", + "id": "26658727918", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209605", - "timestamp": "2026-05-14T18:19:12Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516308", + "timestamp": "2026-05-29T19:49:05Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check gnutls-cli binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209605#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516308#step:6:1" }, { "name": "Test 2 - Check gnutls-cli version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209605#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516308#step:7:1" }, { "name": "Test 3 - Check certtool binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209605#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516308#step:8:1" }, { "name": "Test 4 - Check gnutls headers exist", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209605#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516308#step:9:1" }, { "name": "Test 5 - Compile simple C program using GnuTLS", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209605#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516308#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209605#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516308#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.336179+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.555401+00:00", "publish_state": "published" } } diff --git a/data/test-results/godot.json b/data/test-results/godot.json index 1116e4fad3..54254d8340 100644 --- a/data/test-results/godot.json +++ b/data/test-results/godot.json @@ -5,10 +5,10 @@ "version": "3.5.2-stable-2build4" }, "run": { - "id": "25877415436", + "id": "26658721315", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181152", - "timestamp": "2026-05-14T18:18:51Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491872", + "timestamp": "2026-05-29T19:48:57Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 0, + "duration_seconds": 1, "details": [ { "name": "Test 1 - Baseline package evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181152#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491872#step:7:1" }, { "name": "Test 2 - Installed runtime version", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181152#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491872#step:8:1" }, { "name": "Test 3 - Godot headless help", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181152#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491872#step:9:1" }, { "name": "Test 4 - Arm64 support gate", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181152#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491872#step:10:1" }, { "name": "Test 5 - Bounded package-specific smoke", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181152#step:11:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491872#step:11:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181152#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491872#step:12:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.336377+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.555598+00:00", "publish_state": "published" } } diff --git a/data/test-results/golang.json b/data/test-results/golang.json index ab9490a520..94ab979762 100644 --- a/data/test-results/golang.json +++ b/data/test-results/golang.json @@ -5,10 +5,10 @@ "version": "1.24.1" }, "run": { - "id": "25877387746", + "id": "26658696365", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084846", - "timestamp": "2026-05-14T18:18:16Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407966", + "timestamp": "2026-05-29T19:48:24Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 8, + "duration_seconds": 11, "details": [ { "name": "Test 1 - Check go binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084846#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407966#step:6:1" }, { "name": "Test 2 - Check go version output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084846#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407966#step:7:1" }, { "name": "Test 3 - Check go env arm64 output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084846#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407966#step:8:1" }, { "name": "Test 4 - Run simple Go program", "status": "passed", "duration_seconds": 3, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084846#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407966#step:9:1" }, { "name": "Test 5 - Build simple Go program", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084846#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407966#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 5, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084846#step:11:1", + "duration_seconds": 8, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407966#step:11:1", "current_version": "1.24.1", "latest_version": "1.24.2", "next_installed_version": "1.24.2", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.336590+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.555781+00:00", "publish_state": "published" } } diff --git a/data/test-results/googletest.json b/data/test-results/googletest.json index 1c52b9acb1..b39d2d1d9e 100644 --- a/data/test-results/googletest.json +++ b/data/test-results/googletest.json @@ -5,10 +5,10 @@ "version": "1.14.0-1" }, "run": { - "id": "25877392111", + "id": "26658699892", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095682", - "timestamp": "2026-05-14T18:18:22Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420567", + "timestamp": "2026-05-29T19:48:30Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 3, + "duration_seconds": 7, "details": [ { "name": "Test 1 - Check gtest headers exist", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095682#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420567#step:6:1" }, { "name": "Test 2 - Check gmock headers exist", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095682#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420567#step:7:1" }, { "name": "Test 3 - Check source directory exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095682#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420567#step:8:1" }, { "name": "Test 4 - Compile simple test program", "status": "passed", - "duration_seconds": 3, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095682#step:9:1" + "duration_seconds": 7, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420567#step:9:1" }, { "name": "Test 5 - Run test program", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095682#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420567#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095682#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420567#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.336814+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.555961+00:00", "publish_state": "published" } } diff --git a/data/test-results/gperf.json b/data/test-results/gperf.json index 95babfc033..67a1c09290 100644 --- a/data/test-results/gperf.json +++ b/data/test-results/gperf.json @@ -5,10 +5,10 @@ "version": "3.1" }, "run": { - "id": "25877411197", + "id": "26658717942", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175234", - "timestamp": "2026-05-14T18:18:50Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479867", + "timestamp": "2026-05-29T19:48:53Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check gperf binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175234#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479867#step:6:1" }, { "name": "Test 2 - Check gperf version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175234#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479867#step:7:1" }, { "name": "Test 3 - Check gperf help command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175234#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479867#step:8:1" }, { "name": "Test 4 - Generate hash function from input file", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175234#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479867#step:9:1" }, { "name": "Test 5 - Compile generated code", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175234#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479867#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175234#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479867#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.337022+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.556129+00:00", "publish_state": "published" } } diff --git a/data/test-results/gperftools.json b/data/test-results/gperftools.json index 7d31246ff4..6f1d8c8ce1 100644 --- a/data/test-results/gperftools.json +++ b/data/test-results/gperftools.json @@ -5,10 +5,10 @@ "version": "2.15-3build1" }, "run": { - "id": "25877415436", + "id": "26658721315", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180952", - "timestamp": "2026-05-14T18:18:54Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491932", + "timestamp": "2026-05-29T19:48:56Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 0, + "duration_seconds": 1, "details": [ { "name": "Test 1 - Check pprof binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180952#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491932#step:6:1" }, { "name": "Test 2 - Check pprof version/help", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180952#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491932#step:7:1" }, { "name": "Test 3 - Check tcmalloc headers exist", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180952#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491932#step:8:1" }, { "name": "Test 4 - Check libtcmalloc.so exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180952#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491932#step:9:1" }, { "name": "Test 5 - Compile simple C program using tcmalloc", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180952#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491932#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180952#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491932#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.337213+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.556318+00:00", "publish_state": "published" } } diff --git a/data/test-results/gradle.json b/data/test-results/gradle.json index 09c37ed754..f3e72f1d6d 100644 --- a/data/test-results/gradle.json +++ b/data/test-results/gradle.json @@ -5,10 +5,10 @@ "version": "8.11" }, "run": { - "id": "25877387746", + "id": "26658696365", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084720", - "timestamp": "2026-05-14T18:18:16Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407676", + "timestamp": "2026-05-29T19:48:24Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 9, + "duration_seconds": 13, "details": [ { "name": "Test 1 - Check Gradle binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084720#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407676#step:6:1" }, { "name": "Test 2 - Check Gradle version output", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084720#step:7:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407676#step:7:1" }, { "name": "Test 3 - Check Gradle help output", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084720#step:8:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407676#step:8:1" }, { "name": "Test 4 - Verify Arm64 Java runtime", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084720#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407676#step:9:1" }, { "name": "Test 5 - Functional validation", "status": "passed", - "duration_seconds": 6, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084720#step:10:1" + "duration_seconds": 10, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407676#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084720#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407676#step:11:1", "current_version": "8.11", "latest_version": "9.5.1", "next_installed_version": "9.5.1", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.337404+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.556501+00:00", "publish_state": "published" } } diff --git a/data/test-results/grafana.json b/data/test-results/grafana.json index 7fc25e0656..226e4ef710 100644 --- a/data/test-results/grafana.json +++ b/data/test-results/grafana.json @@ -5,10 +5,10 @@ "version": "12.2.0" }, "run": { - "id": "25877423406", + "id": "26658727918", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210038", - "timestamp": "2026-05-14T18:19:06Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515942", + "timestamp": "2026-05-29T19:49:06Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check grafana-server binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210038#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515942#step:6:1" }, { "name": "Test 2 - Check Grafana version output", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210038#step:7:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515942#step:7:1" }, { "name": "Test 3 - Check Grafana help output", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210038#step:8:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515942#step:8:1" }, { "name": "Test 4 - Check default config and Arm64 binary", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210038#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515942#step:9:1" }, { "name": "Test 5 - Functional validation", "status": "passed", "duration_seconds": 12, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210038#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515942#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210038#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515942#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.337626+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.556679+00:00", "publish_state": "published" } } diff --git a/data/test-results/grafanalib.json b/data/test-results/grafanalib.json index 662ec003c3..6347e580a8 100644 --- a/data/test-results/grafanalib.json +++ b/data/test-results/grafanalib.json @@ -5,10 +5,10 @@ "version": "0.7.1" }, "run": { - "id": "25877419588", + "id": "26658724696", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192543", - "timestamp": "2026-05-14T18:19:09Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503986", + "timestamp": "2026-05-29T19:49:02Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check python import", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192543#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503986#step:6:1" }, { "name": "Test 2 - Check core classes import", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192543#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503986#step:7:1" }, { "name": "Test 3 - Create simple dashboard object", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192543#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503986#step:8:1" }, { "name": "Test 4 - Generate JSON from dashboard", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192543#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503986#step:9:1" }, { "name": "Test 5 - Generate dashboard target JSON", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192543#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503986#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192543#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503986#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.337852+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.556850+00:00", "publish_state": "published" } } diff --git a/data/test-results/greenhouse.json b/data/test-results/greenhouse.json index a351779271..fa3b9aa058 100644 --- a/data/test-results/greenhouse.json +++ b/data/test-results/greenhouse.json @@ -5,10 +5,10 @@ "version": "0.4.0" }, "run": { - "id": "25877435852", + "id": "26658737633", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251769", - "timestamp": "2026-05-14T18:19:15Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550161", + "timestamp": "2026-05-29T19:49:23Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Install Greenhouse Arm64 release artifact", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251769#step:5:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550161#step:5:1" }, { "name": "Test 2 - Verify Arm64 binary", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251769#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550161#step:6:1" }, { "name": "Test 3 - Check CLI help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251769#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550161#step:7:1" }, { "name": "Test 4 - Check CLI version output", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251769#step:8:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550161#step:8:1" }, { "name": "Test 5 - Run bounded CLI smoke", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251769#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550161#step:9:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251769#step:10:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550161#step:10:1", "current_version": "0.4.0", "latest_version": "0.11.1", "next_installed_version": "0.11.1", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.338045+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.557017+00:00", "publish_state": "published" } } diff --git a/data/test-results/greenplum.json b/data/test-results/greenplum.json index 5a59495795..849f1467f4 100644 --- a/data/test-results/greenplum.json +++ b/data/test-results/greenplum.json @@ -5,10 +5,10 @@ "version": "1.0.0-beta" }, "run": { - "id": "25877411197", + "id": "26658717942", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175414", - "timestamp": "2026-05-14T18:18:57Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479556", + "timestamp": "2026-05-29T19:49:01Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 1, + "duration_seconds": 2, "details": [ { "name": "Test 1 - Check exact source tag checkout", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175414#step:7:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479556#step:7:1" }, { "name": "Test 2 - Check source tree structure", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175414#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479556#step:8:1" }, { "name": "Test 3 - Compile GreenplumPython package tree", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175414#step:9:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479556#step:9:1" }, { "name": "Test 4 - Architecture verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175414#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479556#step:10:1" }, { "name": "Test 5 - Check package metadata and README", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175414#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479556#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175414#step:12:1", + "duration_seconds": 2, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479556#step:12:1", "current_version": "1.0.0-beta", "latest_version": "1.0.0", "next_installed_version": "1.0.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.338260+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.557191+00:00", "publish_state": "published" } } diff --git a/data/test-results/groff.json b/data/test-results/groff.json index 09201efe27..69c8add5ef 100644 --- a/data/test-results/groff.json +++ b/data/test-results/groff.json @@ -5,10 +5,10 @@ "version": "1.23.0" }, "run": { - "id": "25877367704", + "id": "26658677990", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026860", - "timestamp": "2026-05-14T18:17:55Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346958", + "timestamp": "2026-05-29T19:48:02Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check groff binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026860#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346958#step:6:1" }, { "name": "Test 2 - Check groff version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026860#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346958#step:7:1" }, { "name": "Test 3 - Check nroff binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026860#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346958#step:8:1" }, { "name": "Test 4 - Check troff binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026860#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346958#step:9:1" }, { "name": "Test 5 - Process simple text input", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026860#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346958#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026860#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346958#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.338496+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.557416+00:00", "publish_state": "published" } } diff --git a/data/test-results/gromacs.json b/data/test-results/gromacs.json index 11923a17b0..bc4ee050ab 100644 --- a/data/test-results/gromacs.json +++ b/data/test-results/gromacs.json @@ -5,10 +5,10 @@ "version": "2023.3-Ubuntu_2023.3_1ubuntu3" }, "run": { - "id": "25877411197", + "id": "26658717942", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174454", - "timestamp": "2026-05-14T18:18:48Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478667", + "timestamp": "2026-05-29T19:48:51Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check gmx binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174454#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478667#step:6:1" }, { "name": "Test 2 - Check gmx version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174454#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478667#step:7:1" }, { "name": "Test 3 - Check gmx help command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174454#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478667#step:8:1" }, { "name": "Test 4 - Run simple pdb2gmx test (dry run)", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174454#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478667#step:9:1" }, { "name": "Test 5 - Check library linking", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174454#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478667#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174454#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478667#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.338705+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.557597+00:00", "publish_state": "published" } } diff --git a/data/test-results/groovy_grails.json b/data/test-results/groovy_grails.json index 77b5a508a8..380ce04cc9 100644 --- a/data/test-results/groovy_grails.json +++ b/data/test-results/groovy_grails.json @@ -5,10 +5,10 @@ "version": "Groovy 4.0.30 / Grails 6.2.3" }, "run": { - "id": "25877363365", + "id": "26658674448", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000807", - "timestamp": "2026-05-14T18:17:47Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334550", + "timestamp": "2026-05-29T19:47:58Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 36, + "duration_seconds": 40, "details": [ { "name": "Test 1 - Check Groovy binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000807#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334550#step:6:1" }, { "name": "Test 2 - Check Grails binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000807#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334550#step:7:1" }, { "name": "Test 3 - Check Groovy version output", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000807#step:8:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334550#step:8:1" }, { "name": "Test 4 - Check Grails version output", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000807#step:9:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334550#step:9:1" }, { "name": "Test 5 - Functional validation", "status": "passed", "duration_seconds": 3, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000807#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334550#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 32, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000807#step:11:1", + "duration_seconds": 36, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334550#step:11:1", "current_version": "Groovy 4.0.30 / Grails 6.2.3", "latest_version": "Groovy 5.0.0 / Grails 7.0.0", "next_installed_version": "Groovy 5.0.0 / Grails 7.0.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.338919+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.557781+00:00", "publish_state": "published" } } diff --git a/data/test-results/gtkwave.json b/data/test-results/gtkwave.json index b643aca315..1fe5089cdc 100644 --- a/data/test-results/gtkwave.json +++ b/data/test-results/gtkwave.json @@ -5,10 +5,10 @@ "version": "3.3.116-1build2" }, "run": { - "id": "25877415436", + "id": "26658721315", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181006", - "timestamp": "2026-05-14T18:18:52Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491876", + "timestamp": "2026-05-29T19:48:57Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Baseline package evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181006#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491876#step:7:1" }, { "name": "Test 2 - Installed runtime version", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181006#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491876#step:8:1" }, { "name": "Test 3 - GTKWave CLI tools help", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181006#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491876#step:9:1" }, { "name": "Test 4 - Arm64 support gate", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181006#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491876#step:10:1" }, { "name": "Test 5 - Bounded package-specific smoke", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181006#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491876#step:11:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181006#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491876#step:12:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.339152+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.557962+00:00", "publish_state": "published" } } diff --git a/data/test-results/guacamole.json b/data/test-results/guacamole.json index 33743e6b66..707077b538 100644 --- a/data/test-results/guacamole.json +++ b/data/test-results/guacamole.json @@ -5,10 +5,10 @@ "version": "(guacd)" }, "run": { - "id": "25877406767", + "id": "26658714432", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154420", - "timestamp": "2026-05-14T18:18:44Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468588", + "timestamp": "2026-05-29T19:48:49Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 3, + "duration_seconds": 2, "details": [ { "name": "Test 1 - Check guacd binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154420#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468588#step:6:1" }, { "name": "Test 2 - Check guacd version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154420#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468588#step:7:1" }, { "name": "Test 3 - Check libguac headers exist", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154420#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468588#step:8:1" }, { "name": "Test 4 - Start guacd service (dry run)", "status": "passed", - "duration_seconds": 3, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154420#step:9:1" + "duration_seconds": 2, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468588#step:9:1" }, { "name": "Test 5 - Check library linking", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154420#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468588#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154420#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468588#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.339358+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.558129+00:00", "publish_state": "published" } } diff --git a/data/test-results/gunicorn.json b/data/test-results/gunicorn.json index c3cb565f8d..c9085e99a0 100644 --- a/data/test-results/gunicorn.json +++ b/data/test-results/gunicorn.json @@ -5,10 +5,10 @@ "version": "22.0.0" }, "run": { - "id": "25877363365", + "id": "26658674448", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001068", - "timestamp": "2026-05-14T18:17:48Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333881", + "timestamp": "2026-05-29T19:47:56Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check pip installation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001068#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333881#step:6:1" }, { "name": "Test 2 - Import Gunicorn in Python", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001068#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333881#step:7:1" }, { "name": "Test 3 - Check Gunicorn version output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001068#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333881#step:8:1" }, { "name": "Test 4 - Functional validation with WSGI app", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001068#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333881#step:9:1" }, { "name": "Test 5 - Request context and architecture verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001068#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333881#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001068#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333881#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.339574+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.558411+00:00", "publish_state": "published" } } diff --git a/data/test-results/gzip.json b/data/test-results/gzip.json index 82079898ca..5a1f4edf5d 100644 --- a/data/test-results/gzip.json +++ b/data/test-results/gzip.json @@ -5,10 +5,10 @@ "version": "1.12" }, "run": { - "id": "25877392111", + "id": "26658699892", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095740", - "timestamp": "2026-05-14T18:18:23Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420894", + "timestamp": "2026-05-29T19:48:29Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check gzip binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095740#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420894#step:6:1" }, { "name": "Test 2 - Check gzip version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095740#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420894#step:7:1" }, { "name": "Test 3 - Compress a file", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095740#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420894#step:8:1" }, { "name": "Test 4 - Decompress a file", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095740#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420894#step:9:1" }, { "name": "Test 5 - Test pipe compression", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095740#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420894#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095740#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420894#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.339885+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.558687+00:00", "publish_state": "published" } } diff --git a/data/test-results/hadoop.json b/data/test-results/hadoop.json index c433a4fe38..3ddc1ce8dd 100644 --- a/data/test-results/hadoop.json +++ b/data/test-results/hadoop.json @@ -5,10 +5,10 @@ "version": "3.3.6" }, "run": { - "id": "25877399008", + "id": "26658707245", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126183", - "timestamp": "2026-05-14T18:18:40Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445295", + "timestamp": "2026-05-29T19:48:45Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 74, + "duration_seconds": 42, "details": [ { "name": "Test 1 - Check hadoop binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126183#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445295#step:11:1" }, { "name": "Test 2 - Check hadoop version output", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126183#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445295#step:12:1" }, { "name": "Test 3 - Check hdfs version output", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126183#step:13:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445295#step:13:1" }, { "name": "Test 4 - Check Hadoop classpath and examples", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126183#step:14:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445295#step:14:1" }, { "name": "Test 5 - Check native loader output and architecture", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126183#step:15:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445295#step:15:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 72, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126183#step:16:1", + "duration_seconds": 39, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445295#step:16:1", "current_version": "3.3.6", "latest_version": "3.4.0", "next_installed_version": "3.4.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.340094+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.558927+00:00", "publish_state": "published" } } diff --git a/data/test-results/hal.json b/data/test-results/hal.json index 20a460228a..c4169cee9d 100644 --- a/data/test-results/hal.json +++ b/data/test-results/hal.json @@ -5,10 +5,10 @@ "version": "4.4.0" }, "run": { - "id": "25877387746", + "id": "26658696365", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084636", - "timestamp": "2026-05-14T18:18:16Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407683", + "timestamp": "2026-05-29T19:48:24Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 357, + "duration_seconds": 362, "details": [ { "name": "Test 1 - Check hal binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084636#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407683#step:6:1" }, { "name": "Test 2 - Check HAL version output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084636#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407683#step:7:1" }, { "name": "Test 3 - Check HAL help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084636#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407683#step:8:1" }, { "name": "Test 4 - Check built ARM64 executable", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084636#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407683#step:9:1" }, { "name": "Test 5 - Check runtime libraries and architecture", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084636#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407683#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 357, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084636#step:11:1", + "duration_seconds": 362, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407683#step:11:1", "current_version": "4.4.0", "latest_version": "4.4.1", "next_installed_version": "4.4.1", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.340315+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.559130+00:00", "publish_state": "published" } } diff --git a/data/test-results/haproxy.json b/data/test-results/haproxy.json index d1bd10a9cc..c63f3ff4a0 100644 --- a/data/test-results/haproxy.json +++ b/data/test-results/haproxy.json @@ -5,10 +5,10 @@ "version": "2.8.16-0ubuntu0.24.04.2" }, "run": { - "id": "25877359516", + "id": "26658670904", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991613", - "timestamp": "2026-05-14T18:17:45Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321524", + "timestamp": "2026-05-29T19:47:53Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check haproxy binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991613#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321524#step:6:1" }, { "name": "Test 2 - Check haproxy version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991613#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321524#step:7:1" }, { "name": "Test 3 - Validate configuration file", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991613#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321524#step:8:1" }, { "name": "Test 4 - Start HAProxy (dry run)", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991613#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321524#step:9:1" }, { "name": "Test 5 - Check systemd service status", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991613#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321524#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991613#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321524#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.340541+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.559341+00:00", "publish_state": "published" } } diff --git a/data/test-results/harbor.json b/data/test-results/harbor.json index af63f24701..f9c7a3d5e7 100644 --- a/data/test-results/harbor.json +++ b/data/test-results/harbor.json @@ -5,10 +5,10 @@ "version": "2.12.4" }, "run": { - "id": "25877367704", + "id": "26658677990", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027060", - "timestamp": "2026-05-14T18:17:55Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347350", + "timestamp": "2026-05-29T19:48:03Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 22, + "duration_seconds": 26, "details": [ { "name": "Test 1 - Check Harbor install script exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027060#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347350#step:6:1" }, { "name": "Test 2 - Check Harbor configuration template exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027060#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347350#step:7:1" }, { "name": "Test 3 - Check Harbor prepare script", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027060#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347350#step:8:1" }, { "name": "Test 4 - Check common.sh exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027060#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347350#step:9:1" }, { "name": "Test 5 - Run Harbor prepare help path", "status": "passed", - "duration_seconds": 15, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027060#step:10:1" + "duration_seconds": 16, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347350#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 7, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027060#step:11:1", + "duration_seconds": 10, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347350#step:11:1", "current_version": "2.12.4", "latest_version": "2.13.0", "next_installed_version": "2.13.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.340724+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.559529+00:00", "publish_state": "published" } } diff --git a/data/test-results/harness-cli.json b/data/test-results/harness-cli.json index eb0243393f..3fbfb0d11a 100644 --- a/data/test-results/harness-cli.json +++ b/data/test-results/harness-cli.json @@ -5,10 +5,10 @@ "version": "1.3.11" }, "run": { - "id": "25877363365", + "id": "26658674448", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001114", - "timestamp": "2026-05-14T18:17:46Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334545", + "timestamp": "2026-05-29T19:47:56Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001114#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334545#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001114#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334545#step:7:1" }, { "name": "Test 3 - Help Or Configuration Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001114#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334545#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001114#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334545#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001114#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334545#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001114#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334545#step:11:1", "current_version": "1.3.11", "latest_version": "1.3.12", "next_installed_version": "1.3.12", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.340965+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.559711+00:00", "publish_state": "published" } } diff --git a/data/test-results/harness-go-sdk.json b/data/test-results/harness-go-sdk.json index 5cb0008b45..0f8dc26537 100644 --- a/data/test-results/harness-go-sdk.json +++ b/data/test-results/harness-go-sdk.json @@ -2,13 +2,13 @@ "schema_version": "2.0", "package": { "name": "Harness Go SDK", - "version": "v0.7.27" + "version": "v0.7.30" }, "run": { - "id": "25877367704", + "id": "26658677990", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026095", - "timestamp": "2026-05-14T18:17:57Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575345909", + "timestamp": "2026-05-29T19:48:02Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Go installation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026095#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575345909#step:6:1" }, { "name": "Test 2 - Check SDK import", "status": "passed", "duration_seconds": 3, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026095#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575345909#step:7:1" }, { "name": "Test 3 - Run the test app", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026095#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575345909#step:8:1" }, { "name": "Test 4 - Check go.mod content", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026095#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575345909#step:9:1" }, { "name": "Test 5 - Check module download", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026095#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575345909#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026095#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575345909#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.341177+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.559889+00:00", "publish_state": "published" } } diff --git a/data/test-results/harness.json b/data/test-results/harness.json index 7cb2744a68..af90f46efb 100644 --- a/data/test-results/harness.json +++ b/data/test-results/harness.json @@ -5,10 +5,10 @@ "version": "3.2.0" }, "run": { - "id": "25877392111", + "id": "26658699892", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095750", - "timestamp": "2026-05-14T18:18:23Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420610", + "timestamp": "2026-05-29T19:48:30Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095750#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420610#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 3, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095750#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420610#step:7:1" }, { "name": "Test 3 - Check Help Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095750#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420610#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095750#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420610#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095750#step:10:1" + "duration_seconds": 3, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420610#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095750#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420610#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.341382+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.560061+00:00", "publish_state": "published" } } diff --git a/data/test-results/harvester.json b/data/test-results/harvester.json index 617ed4eec6..b373a0c04b 100644 --- a/data/test-results/harvester.json +++ b/data/test-results/harvester.json @@ -5,10 +5,10 @@ "version": "1.4.0" }, "run": { - "id": "25877406767", + "id": "26658714432", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154335", - "timestamp": "2026-05-14T18:18:42Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469144", + "timestamp": "2026-05-29T19:48:49Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 51, + "duration_seconds": 55, "details": [ { "name": "Test 1 - Check Arm64 Release Artifacts Exist", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154335#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469144#step:6:1" }, { "name": "Test 2 - Check Release Version Mapping", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154335#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469144#step:7:1" }, { "name": "Test 3 - Check Artifact Inspection Output", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154335#step:8:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469144#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154335#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469144#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 25, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154335#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469144#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 26, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154335#step:11:1", + "duration_seconds": 29, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469144#step:11:1", "current_version": "1.4.0", "latest_version": "1.4.1", "next_installed_version": "1.4.1", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.341566+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.560232+00:00", "publish_state": "published" } } diff --git a/data/test-results/haskell-nix.json b/data/test-results/haskell-nix.json index edd9385566..2a0cda0009 100644 --- a/data/test-results/haskell-nix.json +++ b/data/test-results/haskell-nix.json @@ -5,10 +5,10 @@ "version": "0.3.1" }, "run": { - "id": "25877415436", + "id": "26658721315", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180635", - "timestamp": "2026-05-14T18:18:51Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491552", + "timestamp": "2026-05-29T19:48:57Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 3, + "duration_seconds": 4, "details": [ { "name": "Test 1 - Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180635#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491552#step:6:1" }, { "name": "Test 2 - Version Check", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180635#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491552#step:7:1" }, { "name": "Test 3 - Help Output Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180635#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491552#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180635#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491552#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180635#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491552#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 3, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180635#step:11:1", + "duration_seconds": 4, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491552#step:11:1", "current_version": "0.3.1", "latest_version": "0.3.2", "next_installed_version": "0.3.2", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.341787+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.560451+00:00", "publish_state": "published" } } diff --git a/data/test-results/hawking.json b/data/test-results/hawking.json index c81091e4c1..31918d34cc 100644 --- a/data/test-results/hawking.json +++ b/data/test-results/hawking.json @@ -5,10 +5,10 @@ "version": "0.1.9" }, "run": { - "id": "25877363365", + "id": "26658674448", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000911", - "timestamp": "2026-05-14T18:17:46Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334744", + "timestamp": "2026-05-29T19:47:56Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check jar existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000911#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334744#step:7:1" }, { "name": "Test 2 - Check project version output", "status": "passed", "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000911#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334744#step:8:1" }, { "name": "Test 3 - Check configuration asset", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000911#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334744#step:9:1" }, { "name": "Test 4 - Architecture verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000911#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334744#step:10:1" }, { "name": "Test 5 - Functional validation", "status": "passed", "duration_seconds": 7, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000911#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334744#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 15, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000911#step:12:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334744#step:12:1", "current_version": "0.1.9", "latest_version": "0.2.0", "next_installed_version": "0.2.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.341998+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.560631+00:00", "publish_state": "published" } } diff --git a/data/test-results/haystack.json b/data/test-results/haystack.json index 7545f479d6..5cbefd057a 100644 --- a/data/test-results/haystack.json +++ b/data/test-results/haystack.json @@ -5,10 +5,10 @@ "version": "2.29.0" }, "run": { - "id": "25877415436", + "id": "26658721315", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181024", - "timestamp": "2026-05-14T18:18:53Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491878", + "timestamp": "2026-05-29T19:48:58Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Python import", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181024#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491878#step:6:1" }, { "name": "Test 2 - Check basic component import", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181024#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491878#step:7:1" }, { "name": "Test 3 - Create a simple Pipeline", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181024#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491878#step:8:1" }, { "name": "Test 4 - Check Document import", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181024#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491878#step:9:1" }, { "name": "Test 5 - Check pip dependencies", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181024#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491878#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181024#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491878#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.342207+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.560808+00:00", "publish_state": "published" } } diff --git a/data/test-results/hazelcast.json b/data/test-results/hazelcast.json index dd1f010068..f8813c3dc1 100644 --- a/data/test-results/hazelcast.json +++ b/data/test-results/hazelcast.json @@ -5,10 +5,10 @@ "version": "5.5.0" }, "run": { - "id": "25877375677", + "id": "26658685142", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044610", - "timestamp": "2026-05-14T18:18:03Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370497", + "timestamp": "2026-05-29T19:48:11Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 20, + "duration_seconds": 16, "details": [ { "name": "Test 1 - Check start script exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044610#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370497#step:6:1" }, { "name": "Test 2 - Check exact core JAR version", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044610#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370497#step:7:1" }, { "name": "Test 3 - Check config file", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044610#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370497#step:8:1" }, { "name": "Test 4 - Run CLI help", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044610#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370497#step:9:1" }, { "name": "Test 5 - Start Hazelcast briefly", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044610#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370497#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 19, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044610#step:11:1", + "duration_seconds": 15, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370497#step:11:1", "current_version": "5.5.0", "latest_version": "5.6.0", "next_installed_version": "5.6.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.342399+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.560992+00:00", "publish_state": "published" } } diff --git a/data/test-results/hbase.json b/data/test-results/hbase.json index 6ffa3f658d..5d6f4d3d77 100644 --- a/data/test-results/hbase.json +++ b/data/test-results/hbase.json @@ -5,10 +5,10 @@ "version": "2.5.13-hadoop3" }, "run": { - "id": "25877375677", + "id": "26658685142", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045182", - "timestamp": "2026-05-14T18:18:02Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370331", + "timestamp": "2026-05-29T19:48:11Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 46, + "duration_seconds": 48, "details": [ { "name": "Test 1 - Check hbase script exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045182#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370331#step:7:1" }, { "name": "Test 2 - Check exact version output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045182#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370331#step:8:1" }, { "name": "Test 3 - Check configuration files", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045182#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370331#step:9:1" }, { "name": "Test 4 - Check exact server jar", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045182#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370331#step:10:1" }, { "name": "Test 5 - Start HBase master briefly", "status": "passed", "duration_seconds": 21, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045182#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370331#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 25, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045182#step:12:1", + "duration_seconds": 27, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370331#step:12:1", "current_version": "2.5.13-hadoop3", "latest_version": "2.5.14", "next_installed_version": "2.5.14-hadoop3", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.342639+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.561188+00:00", "publish_state": "published" } } diff --git a/data/test-results/hdfs.json b/data/test-results/hdfs.json index 53a537b499..523fea2334 100644 --- a/data/test-results/hdfs.json +++ b/data/test-results/hdfs.json @@ -5,10 +5,10 @@ "version": "3.3.6" }, "run": { - "id": "25877375677", + "id": "26658685142", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045151", - "timestamp": "2026-05-14T18:18:02Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370318", + "timestamp": "2026-05-29T19:48:11Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 26, + "duration_seconds": 37, "details": [ { "name": "Test 1 - Check hdfs binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045151#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370318#step:6:1" }, { "name": "Test 2 - Check exact hdfs version", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045151#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370318#step:7:1" }, { "name": "Test 3 - Check HDFS jar layout", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045151#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370318#step:8:1" }, { "name": "Test 4 - Check hdfs config and classpath", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045151#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370318#step:9:1" }, { "name": "Test 5 - Check namenode help and architecture", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045151#step:10:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370318#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 24, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045151#step:11:1", + "duration_seconds": 34, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370318#step:11:1", "current_version": "3.3.6", "latest_version": "3.4.3", "next_installed_version": "3.4.3", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.342865+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.561400+00:00", "publish_state": "published" } } diff --git a/data/test-results/heartbeat.json b/data/test-results/heartbeat.json index 263cfcc68f..3f191969c5 100644 --- a/data/test-results/heartbeat.json +++ b/data/test-results/heartbeat.json @@ -5,10 +5,10 @@ "version": "9.0.4" }, "run": { - "id": "25877395502", + "id": "26658703674", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109530", - "timestamp": "2026-05-14T18:18:25Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432274", + "timestamp": "2026-05-29T19:48:34Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 16, + "duration_seconds": 17, "details": [ { "name": "Test 1 - Check Heartbeat binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109530#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432274#step:6:1" }, { "name": "Test 2 - Check Heartbeat version output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109530#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432274#step:7:1" }, { "name": "Test 3 - Check Heartbeat help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109530#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432274#step:8:1" }, { "name": "Test 4 - Check Heartbeat configuration", "status": "passed", - "duration_seconds": 5, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109530#step:9:1" + "duration_seconds": 6, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432274#step:9:1" }, { "name": "Test 5 - Export config and verify architecture", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109530#step:10:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432274#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 10, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109530#step:11:1", + "duration_seconds": 11, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432274#step:11:1", "current_version": "9.0.4", "latest_version": "9.0.5", "next_installed_version": "9.0.5", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.343079+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.561593+00:00", "publish_state": "published" } } diff --git a/data/test-results/heketi.json b/data/test-results/heketi.json index cf89e821c7..6be0b980c0 100644 --- a/data/test-results/heketi.json +++ b/data/test-results/heketi.json @@ -5,10 +5,10 @@ "version": "v10.3.0" }, "run": { - "id": "25877363365", + "id": "26658674448", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000998", - "timestamp": "2026-05-14T18:17:47Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334972", + "timestamp": "2026-05-29T19:47:56Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 3, + "duration_seconds": 1, "details": [ { "name": "Test 1 - Check Heketi binaries exist", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000998#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334972#step:6:1" }, { "name": "Test 2 - Check exact Heketi version output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000998#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334972#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000998#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334972#step:8:1" }, { "name": "Test 4 - Verify architecture and binary format", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000998#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334972#step:9:1" }, { "name": "Test 5 - Validate offline database import/export", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000998#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334972#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 3, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000998#step:11:1", + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334972#step:11:1", "current_version": "v10.3.0", "latest_version": "v10.4.0-release-10", "next_installed_version": "v10.4.0-release-10", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.343289+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.561777+00:00", "publish_state": "published" } } diff --git a/data/test-results/helm.json b/data/test-results/helm.json index 33d433f335..cf1f04c9d9 100644 --- a/data/test-results/helm.json +++ b/data/test-results/helm.json @@ -5,10 +5,10 @@ "version": "v3.17.1" }, "run": { - "id": "25877399008", + "id": "26658707245", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125992", - "timestamp": "2026-05-14T18:18:31Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445331", + "timestamp": "2026-05-29T19:48:38Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 1, + "duration_seconds": 0, "details": [ { "name": "Test 1 - Check helm binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125992#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445331#step:6:1" }, { "name": "Test 2 - Check version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125992#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445331#step:7:1" }, { "name": "Test 3 - Check help command", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125992#step:8:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445331#step:8:1" }, { "name": "Test 4 - Create a sample chart", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125992#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445331#step:9:1" }, { "name": "Test 5 - Lint the sample chart", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125992#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445331#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125992#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445331#step:11:1", "current_version": "v3.17.1", "latest_version": "3.17.2", "next_installed_version": "3.17.2", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.343507+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.561954+00:00", "publish_state": "published" } } diff --git a/data/test-results/highwayhash.json b/data/test-results/highwayhash.json index 3257ca3c03..a2c71ddb23 100644 --- a/data/test-results/highwayhash.json +++ b/data/test-results/highwayhash.json @@ -5,10 +5,10 @@ "version": "0~git20200803.9490b14-4.1build1" }, "run": { - "id": "25877411197", + "id": "26658717942", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174437", - "timestamp": "2026-05-14T18:18:48Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478675", + "timestamp": "2026-05-29T19:48:51Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check headers exist", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174437#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478675#step:6:1" }, { "name": "Test 2 - Check library file exists", "status": "passed", "duration_seconds": 10, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174437#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478675#step:7:1" }, { "name": "Test 3 - Compile C++ program", "status": "passed", "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174437#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478675#step:8:1" }, { "name": "Test 4 - Run compiled program", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174437#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478675#step:9:1" }, { "name": "Test 5 - Deterministic runtime validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174437#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478675#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174437#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478675#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.343728+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.562124+00:00", "publish_state": "published" } } diff --git a/data/test-results/hiredis.json b/data/test-results/hiredis.json index 8377b1a1cc..7221f331d7 100644 --- a/data/test-results/hiredis.json +++ b/data/test-results/hiredis.json @@ -5,10 +5,10 @@ "version": "1.2.0-6ubuntu3" }, "run": { - "id": "25877403044", + "id": "26658710721", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140693", - "timestamp": "2026-05-14T18:18:38Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456144", + "timestamp": "2026-05-29T19:48:44Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 10, + "duration_seconds": 9, "details": [ { "name": "Test 1 - Check Hiredis header exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140693#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456144#step:6:1" }, { "name": "Test 2 - Check Hiredis library exists", "status": "passed", - "duration_seconds": 9, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140693#step:7:1" + "duration_seconds": 8, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456144#step:7:1" }, { "name": "Test 3 - Compile Hiredis Redis client smoke program", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140693#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456144#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140693#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456144#step:9:1" }, { "name": "Test 5 - Run Hiredis Redis roundtrip", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140693#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456144#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140693#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456144#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.343941+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.562311+00:00", "publish_state": "published" } } diff --git a/data/test-results/hive.json b/data/test-results/hive.json index 9746b0508b..b170b9dfc7 100644 --- a/data/test-results/hive.json +++ b/data/test-results/hive.json @@ -5,10 +5,10 @@ "version": "4.0.0" }, "run": { - "id": "25877379982", + "id": "26658688675", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056517", - "timestamp": "2026-05-14T18:18:22Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380667", + "timestamp": "2026-05-29T19:48:30Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 43, + "duration_seconds": 36, "details": [ { "name": "Test 1 - Check Hive scripts exist", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056517#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380667#step:13:1" }, { "name": "Test 2 - Check exact Hive version", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056517#step:14:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380667#step:14:1" }, { "name": "Test 3 - Check Hive jar layout", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056517#step:15:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380667#step:15:1" }, { "name": "Test 4 - Check Hive help commands", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056517#step:16:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380667#step:16:1" }, { "name": "Test 5 - Check Beeline help and architecture", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056517#step:17:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380667#step:17:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 41, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056517#step:18:1", + "duration_seconds": 34, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380667#step:18:1", "current_version": "4.0.0", "latest_version": "4.2.0", "next_installed_version": "4.2.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.344163+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.562491+00:00", "publish_state": "published" } } diff --git a/data/test-results/holoscan-sdk.json b/data/test-results/holoscan-sdk.json index b279500180..ecc3baead9 100644 --- a/data/test-results/holoscan-sdk.json +++ b/data/test-results/holoscan-sdk.json @@ -5,10 +5,10 @@ "version": "0.5.0" }, "run": { - "id": "25877415436", + "id": "26658721315", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181097", - "timestamp": "2026-05-14T18:18:52Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491955", + "timestamp": "2026-05-29T19:48:57Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Baseline package evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181097#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491955#step:7:1" }, { "name": "Test 2 - Baseline version and release alignment", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181097#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491955#step:8:1" }, { "name": "Test 3 - Package-specific source or docs evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181097#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491955#step:9:1" }, { "name": "Test 4 - Arm64 support gate", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181097#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491955#step:10:1" }, { "name": "Test 5 - Run scoped Arm preflight proof", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181097#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491955#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181097#step:12:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491955#step:12:1", "current_version": "0.5.0", "latest_version": "4.2.0", "next_installed_version": "4.2.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.344347+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.562663+00:00", "publish_state": "published" } } diff --git a/data/test-results/horizon-eda.json b/data/test-results/horizon-eda.json index 8a6639704d..e5efdc8432 100644 --- a/data/test-results/horizon-eda.json +++ b/data/test-results/horizon-eda.json @@ -5,10 +5,10 @@ "version": "1.0.0-1build1" }, "run": { - "id": "25877415436", + "id": "26658721315", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181054", - "timestamp": "2026-05-14T18:18:53Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491951", + "timestamp": "2026-05-29T19:48:56Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 3, + "duration_seconds": 4, "details": [ { "name": "Test 1 - Baseline package evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181054#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491951#step:7:1" }, { "name": "Test 2 - Baseline version and release alignment", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181054#step:8:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491951#step:8:1" }, { "name": "Test 3 - Package-specific source or docs evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181054#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491951#step:9:1" }, { "name": "Test 4 - Arm64 support gate", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181054#step:10:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491951#step:10:1" }, { "name": "Test 5 - Bounded package-specific smoke", "status": "passed", - "duration_seconds": 22, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181054#step:11:1" + "duration_seconds": 16, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491951#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181054#step:12:1", + "duration_seconds": 3, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491951#step:12:1", "current_version": "1.0.0-1build1", "latest_version": "2.7.2", "next_installed_version": "2.7.2", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.344544+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.562832+00:00", "publish_state": "published" } } diff --git a/data/test-results/horovod-uber.json b/data/test-results/horovod-uber.json index 628c59d441..feaafbfd05 100644 --- a/data/test-results/horovod-uber.json +++ b/data/test-results/horovod-uber.json @@ -5,10 +5,10 @@ "version": "0.28.1" }, "run": { - "id": "25877371674", + "id": "26658681575", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031866", - "timestamp": "2026-05-14T18:17:58Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358304", + "timestamp": "2026-05-29T19:48:07Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check horovodrun exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031866#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358304#step:6:1" }, { "name": "Test 2 - Check exact version output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031866#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358304#step:7:1" }, { "name": "Test 3 - Check horovodrun help", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031866#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358304#step:8:1" }, { "name": "Test 4 - Verify Arm64 and MPI path", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031866#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358304#step:9:1" }, { "name": "Test 5 - Import Horovod runner modules", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031866#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358304#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031866#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358304#step:11:1" } ] }, @@ -72,7 +72,7 @@ "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", "regression_status": "passed", - "production_refreshed_at": "2026-05-14T19:37:17.344925+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.563139+00:00", "publish_state": "published" } } diff --git a/data/test-results/hping.json b/data/test-results/hping.json index 9f02988199..87af1a7d92 100644 --- a/data/test-results/hping.json +++ b/data/test-results/hping.json @@ -5,10 +5,10 @@ "version": "3.a2.ds2-10build2" }, "run": { - "id": "25877371674", + "id": "26658681575", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031816", - "timestamp": "2026-05-14T18:17:59Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358371", + "timestamp": "2026-05-29T19:48:07Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 0, + "duration_seconds": 1, "details": [ { "name": "Test 1 - Check hping3 binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031816#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358371#step:6:1" }, { "name": "Test 2 - Check package metadata version", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031816#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358371#step:7:1" }, { "name": "Test 3 - Check runtime version/help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031816#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358371#step:8:1" }, { "name": "Test 4 - Verify Arm64 binary format", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031816#step:9:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358371#step:9:1" }, { "name": "Test 5 - Functional packet craft dry-run", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031816#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358371#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031816#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358371#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.345119+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.563342+00:00", "publish_state": "published" } } diff --git a/data/test-results/htop.json b/data/test-results/htop.json index 75a521e966..f6a3d131f0 100644 --- a/data/test-results/htop.json +++ b/data/test-results/htop.json @@ -5,10 +5,10 @@ "version": "3.4.0" }, "run": { - "id": "25877387746", + "id": "26658696365", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084891", - "timestamp": "2026-05-14T18:18:15Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407373", + "timestamp": "2026-05-29T19:48:25Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 7, + "duration_seconds": 8, "details": [ { "name": "Test 1 - Check htop binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084891#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407373#step:6:1" }, { "name": "Test 2 - Check exact version output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084891#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407373#step:7:1" }, { "name": "Test 3 - Check htop help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084891#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407373#step:8:1" }, { "name": "Test 4 - Verify Arm64 binary format", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084891#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407373#step:9:1" }, { "name": "Test 5 - Functional validation with tree view", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084891#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407373#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 7, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084891#step:11:1", + "duration_seconds": 8, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407373#step:11:1", "current_version": "3.4.0", "latest_version": "3.4.1", "next_installed_version": "3.4.1", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.345341+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.563539+00:00", "publish_state": "published" } } diff --git a/data/test-results/httpcomponents-client.json b/data/test-results/httpcomponents-client.json index 8c7de8f2c5..e48ef1fb80 100644 --- a/data/test-results/httpcomponents-client.json +++ b/data/test-results/httpcomponents-client.json @@ -5,10 +5,10 @@ "version": "5.4" }, "run": { - "id": "25877359516", + "id": "26658670904", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990099", - "timestamp": "2026-05-14T18:17:46Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321718", + "timestamp": "2026-05-29T19:47:54Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 7, + "duration_seconds": 6, "details": [ { "name": "Test 1 - Check client jars exist", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990099#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321718#step:8:1" }, { "name": "Test 2 - Compile Java client", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990099#step:9:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321718#step:9:1" }, { "name": "Test 3 - Run loopback HTTP request", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990099#step:10:1" + "duration_seconds": 3, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321718#step:10:1" }, { "name": "Test 4 - Check expected client classes", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990099#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321718#step:11:1" }, { "name": "Test 5 - Check dependency jars and Arm64 runner", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990099#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321718#step:12:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 4, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990099#step:13:1", + "duration_seconds": 3, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321718#step:13:1", "current_version": "5.4", "latest_version": "5.6", "next_installed_version": "5.6", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.345530+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.563726+00:00", "publish_state": "published" } } diff --git a/data/test-results/httpd.json b/data/test-results/httpd.json index 38e3499822..5bc98f0ec0 100644 --- a/data/test-results/httpd.json +++ b/data/test-results/httpd.json @@ -5,10 +5,10 @@ "version": "2.4.58" }, "run": { - "id": "25877355625", + "id": "26658667828", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976571", - "timestamp": "2026-05-14T18:17:38Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308834", + "timestamp": "2026-05-29T19:47:50Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check httpd binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976571#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308834#step:6:1" }, { "name": "Test 2 - Validate baseline version", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976571#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308834#step:7:1" }, { "name": "Test 3 - Check config syntax", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976571#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308834#step:8:1" }, { "name": "Test 4 - Start server and curl localhost", "status": "passed", "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976571#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308834#step:9:1" }, { "name": "Test 5 - Stop server and verify Arm64 binary", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976571#step:10:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308834#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976571#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308834#step:11:1" } ] }, @@ -72,7 +72,7 @@ "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", "regression_status": "passed", - "production_refreshed_at": "2026-05-14T19:37:17.345770+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.563908+00:00", "publish_state": "published" } } diff --git a/data/test-results/hue.json b/data/test-results/hue.json index 52659cbb46..4c59c9556d 100644 --- a/data/test-results/hue.json +++ b/data/test-results/hue.json @@ -5,10 +5,10 @@ "version": "4.10.0" }, "run": { - "id": "25877399008", + "id": "26658707245", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125653", - "timestamp": "2026-05-14T18:18:31Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445942", + "timestamp": "2026-05-29T19:48:39Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 15, + "duration_seconds": 16, "details": [ { "name": "Test 1 - Check baseline source tree", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125653#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445942#step:7:1" }, { "name": "Test 2 - Check release tag version", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125653#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445942#step:8:1" }, { "name": "Test 3 - Check build and container assets", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125653#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445942#step:9:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125653#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445942#step:10:1" }, { "name": "Test 5 - Functional source validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125653#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445942#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 15, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125653#step:12:1", + "duration_seconds": 16, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445942#step:12:1", "current_version": "4.10.0", "latest_version": "4.11.0", "next_installed_version": "4.11.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.345968+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.564085+00:00", "publish_state": "published" } } diff --git a/data/test-results/huggingface_trasformers.json b/data/test-results/huggingface_trasformers.json index 74e0a0c98b..6fbe521544 100644 --- a/data/test-results/huggingface_trasformers.json +++ b/data/test-results/huggingface_trasformers.json @@ -2,13 +2,13 @@ "schema_version": "2.0", "package": { "name": "Transformers (Hugging Face)", - "version": "5.8.1" + "version": "5.9.0" }, "run": { - "id": "25877383844", + "id": "26658692522", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071530", - "timestamp": "2026-05-14T18:18:13Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394251", + "timestamp": "2026-05-29T19:48:19Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check module import", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071530#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394251#step:6:1" }, { "name": "Test 2 - Check version output", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071530#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394251#step:7:1" }, { "name": "Test 3 - Check configuration API", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071530#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394251#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071530#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394251#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071530#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394251#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071530#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394251#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.346188+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.564296+00:00", "publish_state": "published" } } diff --git a/data/test-results/iceberg.json b/data/test-results/iceberg.json index 15a81d0200..890c772498 100644 --- a/data/test-results/iceberg.json +++ b/data/test-results/iceberg.json @@ -5,10 +5,10 @@ "version": "1.1.0" }, "run": { - "id": "25877427741", + "id": "26658731236", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048219053", - "timestamp": "2026-05-14T18:19:17Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529736", + "timestamp": "2026-05-29T19:49:11Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 2, + "duration_seconds": 1, "details": [ { "name": "Test 1 - Baseline package evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048219053#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529736#step:7:1" }, { "name": "Test 2 - Baseline version and release alignment", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048219053#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529736#step:8:1" }, { "name": "Test 3 - Package-specific source or docs evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048219053#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529736#step:9:1" }, { "name": "Test 4 - Arm64 support gate", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048219053#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529736#step:10:1" }, { "name": "Test 5 - Bounded package-specific smoke", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048219053#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529736#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048219053#step:12:1", + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529736#step:12:1", "current_version": "1.1.0", "latest_version": "1.10.1", "next_installed_version": "1.10.1", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.346370+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.564500+00:00", "publish_state": "published" } } diff --git a/data/test-results/icu.json b/data/test-results/icu.json index 369ddf8a6a..07b366ec53 100644 --- a/data/test-results/icu.json +++ b/data/test-results/icu.json @@ -5,10 +5,10 @@ "version": "2.1" }, "run": { - "id": "25877367704", + "id": "26658677990", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026047", - "timestamp": "2026-05-14T18:17:54Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575345940", + "timestamp": "2026-05-29T19:48:03Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check uconv binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026047#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575345940#step:6:1" }, { "name": "Test 2 - Check uconv version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026047#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575345940#step:7:1" }, { "name": "Test 3 - Check uconv help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026047#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575345940#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026047#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575345940#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026047#step:10:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575345940#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026047#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575345940#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.346584+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.564682+00:00", "publish_state": "published" } } diff --git a/data/test-results/ignite.json b/data/test-results/ignite.json index 56e9a2421a..9b826946b8 100644 --- a/data/test-results/ignite.json +++ b/data/test-results/ignite.json @@ -5,10 +5,10 @@ "version": "0.9.0" }, "run": { - "id": "25877395502", + "id": "26658703674", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110180", - "timestamp": "2026-05-14T18:18:26Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433102", + "timestamp": "2026-05-29T19:48:33Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Ignite binaries exist", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110180#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433102#step:6:1" }, { "name": "Test 2 - Check ignite version output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110180#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433102#step:7:1" }, { "name": "Test 3 - Check ignited version output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110180#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433102#step:8:1" }, { "name": "Test 4 - Validate Ignite CLI help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110180#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433102#step:9:1" }, { "name": "Test 5 - Architecture verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110180#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433102#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110180#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433102#step:11:1", "current_version": "0.9.0", "latest_version": "0.10.0", "next_installed_version": "0.10.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.346809+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.564856+00:00", "publish_state": "published" } } diff --git a/data/test-results/igniteui.json b/data/test-results/igniteui.json index 573a8aadd5..3e28083d8f 100644 --- a/data/test-results/igniteui.json +++ b/data/test-results/igniteui.json @@ -5,10 +5,10 @@ "version": "25.1.3" }, "run": { - "id": "25877406767", + "id": "26658714432", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154363", - "timestamp": "2026-05-14T18:18:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468589", + "timestamp": "2026-05-29T19:48:54Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 5, "failed": 0, "skipped": 1, - "duration_seconds": 1, + "duration_seconds": 0, "details": [ { "name": "Test 1 - Artifact existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154363#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468589#step:7:1" }, { "name": "Test 2 - Version check", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154363#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468589#step:8:1" }, { "name": "Test 3 - Package metadata validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154363#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468589#step:9:1" }, { "name": "Test 4 - Architecture verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154363#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468589#step:10:1" }, { "name": "Test 5 - Functional validation", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154363#step:11:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468589#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "skipped", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154363#step:12:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468589#step:12:1", "current_version": "25.1.3", "latest_version": "25.1.3", "next_installed_version": "not_installed", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "skipped", "regression_decision": "current_is_latest_stable", - "production_refreshed_at": "2026-05-14T19:37:17.347043+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.565035+00:00", "publish_state": "published" } } diff --git a/data/test-results/impala.json b/data/test-results/impala.json index fedba1141e..ae463f9143 100644 --- a/data/test-results/impala.json +++ b/data/test-results/impala.json @@ -5,10 +5,10 @@ "version": "4.5.0" }, "run": { - "id": "25877375677", + "id": "26658685142", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044637", - "timestamp": "2026-05-14T18:18:03Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370619", + "timestamp": "2026-05-29T19:48:12Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Impala server binaries exist", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044637#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370619#step:6:1" }, { "name": "Test 2 - Check impala-shell version output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044637#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370619#step:7:1" }, { "name": "Test 3 - Check impala-shell help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044637#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370619#step:8:1" }, { "name": "Test 4 - Architecture verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044637#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370619#step:9:1" }, { "name": "Test 5 - Check impalad version output", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044637#step:10:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370619#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "skipped", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044637#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370619#step:11:1", "current_version": "4.5.0", "latest_version": "4.5.0", "next_installed_version": "not_installed", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "skipped", "regression_decision": "no_newer_stable_available", - "production_refreshed_at": "2026-05-14T19:37:17.347250+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.565211+00:00", "publish_state": "published" } } diff --git a/data/test-results/in-toto.json b/data/test-results/in-toto.json index 0451fee770..2323a7c440 100644 --- a/data/test-results/in-toto.json +++ b/data/test-results/in-toto.json @@ -5,10 +5,10 @@ "version": "2.0.0" }, "run": { - "id": "25877363365", + "id": "26658674448", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000726", - "timestamp": "2026-05-14T18:17:48Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334898", + "timestamp": "2026-05-29T19:47:56Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 1, + "duration_seconds": 2, "details": [ { "name": "Test 1 - Check in-toto-run binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000726#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334898#step:6:1" }, { "name": "Test 2 - Check in-toto-verify binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000726#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334898#step:7:1" }, { "name": "Test 3 - Check version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000726#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334898#step:8:1" }, { "name": "Test 4 - Check help command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000726#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334898#step:9:1" }, { "name": "Test 5 - Generate key (if possible)", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000726#step:10:1" + "duration_seconds": 2, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334898#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000726#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334898#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.347432+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.565429+00:00", "publish_state": "published" } } diff --git a/data/test-results/influxdb.json b/data/test-results/influxdb.json index 5d07a4ffff..d6a889b77a 100644 --- a/data/test-results/influxdb.json +++ b/data/test-results/influxdb.json @@ -5,10 +5,10 @@ "version": "3.0.1" }, "run": { - "id": "25877406767", + "id": "26658714432", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155598", - "timestamp": "2026-05-14T18:18:44Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469075", + "timestamp": "2026-05-29T19:48:49Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 5, + "duration_seconds": 6, "details": [ { "name": "Test 1 - Artifact Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155598#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469075#step:6:1" }, { "name": "Test 2 - Version Check", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155598#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469075#step:7:1" }, { "name": "Test 3 - Help Output Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155598#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469075#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155598#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469075#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 4, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155598#step:10:1" + "duration_seconds": 5, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469075#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155598#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469075#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.347609+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.565618+00:00", "publish_state": "published" } } diff --git a/data/test-results/infracost.json b/data/test-results/infracost.json index f951d69370..e6b99721a5 100644 --- a/data/test-results/infracost.json +++ b/data/test-results/infracost.json @@ -5,10 +5,10 @@ "version": "0.10.41" }, "run": { - "id": "25877406767", + "id": "26658714432", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155365", - "timestamp": "2026-05-14T18:18:47Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469231", + "timestamp": "2026-05-29T19:48:49Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Infracost binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155365#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469231#step:6:1" }, { "name": "Test 2 - Check version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155365#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469231#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155365#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469231#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155365#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469231#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155365#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469231#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155365#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469231#step:11:1", "current_version": "0.10.41", "latest_version": "0.10.42", "next_installed_version": "0.10.42", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.347846+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.565793+00:00", "publish_state": "published" } } diff --git a/data/test-results/iniParser.json b/data/test-results/iniParser.json index 94aea6326d..8e028bc565 100644 --- a/data/test-results/iniParser.json +++ b/data/test-results/iniParser.json @@ -5,10 +5,10 @@ "version": "4.1" }, "run": { - "id": "25877411197", + "id": "26658717942", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175599", - "timestamp": "2026-05-14T18:18:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480124", + "timestamp": "2026-05-29T19:48:52Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175599#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480124#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175599#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480124#step:7:1" }, { "name": "Test 3 - Check Help Output or Configuration", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175599#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480124#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175599#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480124#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175599#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480124#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175599#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480124#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.348068+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.565977+00:00", "publish_state": "published" } } diff --git a/data/test-results/iotop.json b/data/test-results/iotop.json index 8dd0b5ae96..a19eda7e10 100644 --- a/data/test-results/iotop.json +++ b/data/test-results/iotop.json @@ -5,10 +5,10 @@ "version": "1.18" }, "run": { - "id": "25877415436", + "id": "26658721315", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180628", - "timestamp": "2026-05-14T18:18:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491600", + "timestamp": "2026-05-29T19:48:57Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Iotop binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180628#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491600#step:6:1" }, { "name": "Test 2 - Check version output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180628#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491600#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180628#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491600#step:8:1" }, { "name": "Test 4 - Architecture verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180628#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491600#step:9:1" }, { "name": "Test 5 - Functional validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180628#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491600#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 3, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180628#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491600#step:11:1", "current_version": "1.18", "latest_version": "1.31", "next_installed_version": "1.31", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.348269+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.566150+00:00", "publish_state": "published" } } diff --git a/data/test-results/iperf.json b/data/test-results/iperf.json index f0241ce4f8..d901e514db 100644 --- a/data/test-results/iperf.json +++ b/data/test-results/iperf.json @@ -5,10 +5,10 @@ "version": "3.16" }, "run": { - "id": "25877379982", + "id": "26658688675", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056526", - "timestamp": "2026-05-14T18:18:04Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575379795", + "timestamp": "2026-05-29T19:48:15Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 12, + "duration_seconds": 13, "details": [ { "name": "Test 1 - Check Iperf binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056526#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575379795#step:6:1" }, { "name": "Test 2 - Check version output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056526#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575379795#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056526#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575379795#step:8:1" }, { "name": "Test 4 - Architecture verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056526#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575379795#step:9:1" }, { "name": "Test 5 - Functional validation", "status": "passed", "duration_seconds": 3, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056526#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575379795#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 9, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056526#step:11:1", + "duration_seconds": 10, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575379795#step:11:1", "current_version": "3.16", "latest_version": "3.20", "next_installed_version": "3.20", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.348460+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.566346+00:00", "publish_state": "published" } } diff --git a/data/test-results/ipvsadm.json b/data/test-results/ipvsadm.json index a523d7ec7b..b20168a883 100644 --- a/data/test-results/ipvsadm.json +++ b/data/test-results/ipvsadm.json @@ -5,10 +5,10 @@ "version": "1:1.31-1ubuntu0.1" }, "run": { - "id": "25877411197", + "id": "26658717942", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175274", - "timestamp": "2026-05-14T18:18:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479647", + "timestamp": "2026-05-29T19:48:52Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175274#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479647#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175274#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479647#step:7:1" }, { "name": "Test 3 - Check Help Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175274#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479647#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175274#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479647#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175274#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479647#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175274#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479647#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.348699+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.566523+00:00", "publish_state": "published" } } diff --git a/data/test-results/ironcore.json b/data/test-results/ironcore.json index 30d895a69c..f9a62522a5 100644 --- a/data/test-results/ironcore.json +++ b/data/test-results/ironcore.json @@ -5,10 +5,10 @@ "version": "0.1.2" }, "run": { - "id": "25877435852", + "id": "26658737633", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251813", - "timestamp": "2026-05-14T18:19:18Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550164", + "timestamp": "2026-05-29T19:49:20Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 19, + "duration_seconds": 21, "details": [ { "name": "Test 1 - Download baseline source tag", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251813#step:5:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550164#step:5:1" }, { "name": "Test 2 - Verify expected source layout", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251813#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550164#step:6:1" }, { "name": "Test 3 - Validate Arm64 image manifests", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251813#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550164#step:7:1" }, { "name": "Test 4 - Pull baseline Arm64 images", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251813#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550164#step:8:1" }, { "name": "Test 5 - Inspect baseline images on Arm64", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251813#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550164#step:9:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251813#step:10:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550164#step:10:1", "current_version": "0.1.2", "latest_version": "0.3.0", "next_installed_version": "0.3.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.348935+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.566698+00:00", "publish_state": "published" } } diff --git a/data/test-results/ironic.json b/data/test-results/ironic.json index 5077397c7e..5d21ca6d84 100644 --- a/data/test-results/ironic.json +++ b/data/test-results/ironic.json @@ -5,10 +5,10 @@ "version": "9.1.6" }, "run": { - "id": "25877411197", + "id": "26658717942", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175610", - "timestamp": "2026-05-14T18:18:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479930", + "timestamp": "2026-05-29T19:48:53Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Wheel install and entry points", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175610#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479930#step:6:1" }, { "name": "Test 2 - Version metadata exact match", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175610#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479930#step:7:1" }, { "name": "Test 3 - Top-level package import", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175610#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479930#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175610#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479930#step:9:1" }, { "name": "Test 5 - Installed package metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175610#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479930#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175610#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479930#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.349136+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.566881+00:00", "publish_state": "published" } } diff --git a/data/test-results/irsim.json b/data/test-results/irsim.json index e79a553957..0d22b9993d 100644 --- a/data/test-results/irsim.json +++ b/data/test-results/irsim.json @@ -5,10 +5,10 @@ "version": "9.7.82-2" }, "run": { - "id": "25877427741", + "id": "26658731236", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218858", - "timestamp": "2026-05-14T18:19:15Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529859", + "timestamp": "2026-05-29T19:49:11Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Baseline package evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218858#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529859#step:7:1" }, { "name": "Test 2 - Baseline version and release alignment", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218858#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529859#step:8:1" }, { "name": "Test 3 - Package-specific source or docs evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218858#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529859#step:9:1" }, { "name": "Test 4 - Arm64 support gate", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218858#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529859#step:10:1" }, { "name": "Test 5 - Bounded package-specific smoke", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218858#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529859#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "skipped", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218858#step:12:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529859#step:12:1", "current_version": "9.7.82-2", "latest_version": "9.7.82", "next_installed_version": "not_installed", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "skipped", "regression_decision": "no_newer_stable_available", - "production_refreshed_at": "2026-05-14T19:37:17.349345+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.567054+00:00", "publish_state": "published" } } diff --git a/data/test-results/isa-l.json b/data/test-results/isa-l.json index e465ab7c64..39950d7ef0 100644 --- a/data/test-results/isa-l.json +++ b/data/test-results/isa-l.json @@ -5,10 +5,10 @@ "version": "2.31.1" }, "run": { - "id": "25877395502", + "id": "26658703674", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110108", - "timestamp": "2026-05-14T18:18:29Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432912", + "timestamp": "2026-05-29T19:48:34Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Header and Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110108#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432912#step:6:1" }, { "name": "Test 2 - Version Check", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110108#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432912#step:7:1" }, { "name": "Test 3 - Help Output or Configuration", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110108#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432912#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110108#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432912#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110108#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432912#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 11, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110108#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432912#step:11:1", "current_version": "2.31.1", "latest_version": "2.32.0", "next_installed_version": "2.32.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.349558+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.567228+00:00", "publish_state": "published" } } diff --git a/data/test-results/istio.json b/data/test-results/istio.json index 3e16ebe8cb..349124f025 100644 --- a/data/test-results/istio.json +++ b/data/test-results/istio.json @@ -5,10 +5,10 @@ "version": "1.24.0" }, "run": { - "id": "25877371674", + "id": "26658681575", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031862", - "timestamp": "2026-05-14T18:17:58Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358551", + "timestamp": "2026-05-29T19:48:07Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 1, + "duration_seconds": 2, "details": [ { "name": "Test 1 - Check istioctl binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031862#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358551#step:6:1" }, { "name": "Test 2 - Check version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031862#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358551#step:7:1" }, { "name": "Test 3 - Check help command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031862#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358551#step:8:1" }, { "name": "Test 4 - Analyze configuration (empty/default)", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031862#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358551#step:9:1" }, { "name": "Test 5 - Validate manifest (if possible)", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031862#step:10:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358551#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031862#step:11:1", + "duration_seconds": 2, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358551#step:11:1", "current_version": "1.24.0", "latest_version": "1.24.1", "next_installed_version": "1.24.1", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.349763+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.567429+00:00", "publish_state": "published" } } diff --git a/data/test-results/itp.json b/data/test-results/itp.json index 4229634606..5f8195ab57 100644 --- a/data/test-results/itp.json +++ b/data/test-results/itp.json @@ -5,10 +5,10 @@ "version": "1.2.2" }, "run": { - "id": "25877423406", + "id": "26658727918", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210309", - "timestamp": "2026-05-14T18:19:05Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515888", + "timestamp": "2026-05-29T19:49:06Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210309#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515888#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210309#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515888#step:7:1" }, { "name": "Test 3 - Check Help Output", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210309#step:8:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515888#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210309#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515888#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210309#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515888#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210309#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515888#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.350062+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.567700+00:00", "publish_state": "published" } } diff --git a/data/test-results/iverilog.json b/data/test-results/iverilog.json index 0734e95f1e..c618812d3f 100644 --- a/data/test-results/iverilog.json +++ b/data/test-results/iverilog.json @@ -5,10 +5,10 @@ "version": "12.0 (stable) ()" }, "run": { - "id": "25877427741", + "id": "26658731236", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218739", - "timestamp": "2026-05-14T18:19:14Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529693", + "timestamp": "2026-05-29T19:49:10Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 0, + "duration_seconds": 1, "details": [ { "name": "Test 1 - Check iverilog and vvp binaries", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218739#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529693#step:7:1" }, { "name": "Test 2 - Check iverilog version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218739#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529693#step:8:1" }, { "name": "Test 3 - Check iverilog help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218739#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529693#step:9:1" }, { "name": "Test 4 - Compile a minimal Verilog design", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218739#step:10:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529693#step:10:1" }, { "name": "Test 5 - Run compiled Verilog with vvp", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218739#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529693#step:11:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218739#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529693#step:12:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.350274+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.567880+00:00", "publish_state": "published" } } diff --git a/data/test-results/jaeger.json b/data/test-results/jaeger.json index 099ceabb4a..33769c94ce 100644 --- a/data/test-results/jaeger.json +++ b/data/test-results/jaeger.json @@ -5,10 +5,10 @@ "version": "v2.14.0" }, "run": { - "id": "25877367704", + "id": "26658677990", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026693", - "timestamp": "2026-05-14T18:17:56Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347574", + "timestamp": "2026-05-29T19:48:03Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 3, + "duration_seconds": 4, "details": [ { "name": "Test 1 - Check jaeger binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026693#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347574#step:6:1" }, { "name": "Test 2 - Check version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026693#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347574#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026693#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347574#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026693#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347574#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026693#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347574#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026693#step:11:1", + "duration_seconds": 2, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347574#step:11:1", "current_version": "v2.14.0", "latest_version": "v2.14.1", "next_installed_version": "v2.14.1", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.350474+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.568053+00:00", "publish_state": "published" } } diff --git a/data/test-results/janusgraph.json b/data/test-results/janusgraph.json index 77aeeec228..e8e92a59eb 100644 --- a/data/test-results/janusgraph.json +++ b/data/test-results/janusgraph.json @@ -5,10 +5,10 @@ "version": "1.1.0" }, "run": { - "id": "25877375677", + "id": "26658685142", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044835", - "timestamp": "2026-05-14T18:18:02Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370598", + "timestamp": "2026-05-29T19:48:12Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 5, "failed": 0, "skipped": 1, - "duration_seconds": 15, + "duration_seconds": 14, "details": [ { "name": "Test 1 - Artifact Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044835#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370598#step:6:1" }, { "name": "Test 2 - Version Check", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044835#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370598#step:7:1" }, { "name": "Test 3 - Help Output Validation", "status": "passed", "duration_seconds": 3, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044835#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370598#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044835#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370598#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 12, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044835#step:10:1" + "duration_seconds": 11, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370598#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "skipped", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044835#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370598#step:11:1", "current_version": "1.1.0", "latest_version": "1.1.0", "next_installed_version": "1.1.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "skipped", "regression_decision": "no_newer_stable_available", - "production_refreshed_at": "2026-05-14T19:37:17.350682+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.568229+00:00", "publish_state": "published" } } diff --git a/data/test-results/java-openjdk.json b/data/test-results/java-openjdk.json index 8f560ba33d..cb2f33d6e7 100644 --- a/data/test-results/java-openjdk.json +++ b/data/test-results/java-openjdk.json @@ -5,10 +5,10 @@ "version": "17.0.18" }, "run": { - "id": "25877387746", + "id": "26658696365", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083627", - "timestamp": "2026-05-14T18:18:15Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575406491", + "timestamp": "2026-05-29T19:48:24Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check java binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083627#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575406491#step:6:1" }, { "name": "Test 2 - Check java version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083627#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575406491#step:7:1" }, { "name": "Test 3 - Check java help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083627#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575406491#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083627#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575406491#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083627#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575406491#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083627#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575406491#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.350903+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.568445+00:00", "publish_state": "published" } } diff --git a/data/test-results/jemalloc.json b/data/test-results/jemalloc.json index 9dd80a2097..24ecd2529f 100644 --- a/data/test-results/jemalloc.json +++ b/data/test-results/jemalloc.json @@ -5,10 +5,10 @@ "version": "5.3.0_0" }, "run": { - "id": "25877427741", + "id": "26658731236", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218446", - "timestamp": "2026-05-14T18:19:05Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529423", + "timestamp": "2026-05-29T19:49:11Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check header installation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218446#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529423#step:6:1" }, { "name": "Test 2 - Check version metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218446#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529423#step:7:1" }, { "name": "Test 3 - Check shared library registration", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218446#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529423#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218446#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529423#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218446#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529423#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218446#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529423#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.351127+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.568623+00:00", "publish_state": "published" } } diff --git a/data/test-results/jenkins.json b/data/test-results/jenkins.json index 5c49dc079b..586a36df6e 100644 --- a/data/test-results/jenkins.json +++ b/data/test-results/jenkins.json @@ -5,10 +5,10 @@ "version": "2.492.3" }, "run": { - "id": "25877406767", + "id": "26658714432", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154422", - "timestamp": "2026-05-14T18:18:43Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468629", + "timestamp": "2026-05-29T19:48:49Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 10, + "duration_seconds": 8, "details": [ { "name": "Test 1 - Check Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154422#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468629#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154422#step:7:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468629#step:7:1" }, { "name": "Test 3 - Check Help Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154422#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468629#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154422#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468629#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 9, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154422#step:10:1" + "duration_seconds": 8, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468629#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154422#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468629#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.351338+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.568794+00:00", "publish_state": "published" } } diff --git a/data/test-results/jetty.json b/data/test-results/jetty.json index 9bc2c7109c..b774fc1e60 100644 --- a/data/test-results/jetty.json +++ b/data/test-results/jetty.json @@ -5,10 +5,10 @@ "version": "9.4.53" }, "run": { - "id": "25877411197", + "id": "26658717942", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175711", - "timestamp": "2026-05-14T18:18:50Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479786", + "timestamp": "2026-05-29T19:48:53Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 3, + "duration_seconds": 2, "details": [ { "name": "Test 1 - Check Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175711#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479786#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175711#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479786#step:7:1" }, { "name": "Test 3 - Check Help Output or Configuration", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175711#step:8:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479786#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175711#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479786#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175711#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479786#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175711#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479786#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.351538+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.568964+00:00", "publish_state": "published" } } diff --git a/data/test-results/jitsi.json b/data/test-results/jitsi.json index 58234adfe3..d0c3909465 100644 --- a/data/test-results/jitsi.json +++ b/data/test-results/jitsi.json @@ -5,10 +5,10 @@ "version": "stable-10169" }, "run": { - "id": "25877395502", + "id": "26658703674", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110050", - "timestamp": "2026-05-14T18:18:25Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433140", + "timestamp": "2026-05-29T19:48:34Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 16, + "duration_seconds": 17, "details": [ { "name": "Test 1 - Artifact Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110050#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433140#step:6:1" }, { "name": "Test 2 - Image Metadata Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110050#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433140#step:7:1" }, { "name": "Test 3 - JVB Script Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110050#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433140#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110050#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433140#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 15, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110050#step:10:1" + "duration_seconds": 16, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433140#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110050#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433140#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.351735+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.569130+00:00", "publish_state": "published" } } diff --git a/data/test-results/jmeter.json b/data/test-results/jmeter.json index 152a7d9973..78614ee04e 100644 --- a/data/test-results/jmeter.json +++ b/data/test-results/jmeter.json @@ -5,10 +5,10 @@ "version": "5.6.2" }, "run": { - "id": "25877363365", + "id": "26658674448", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000074", - "timestamp": "2026-05-14T18:17:47Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333727", + "timestamp": "2026-05-29T19:47:56Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000074#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333727#step:7:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000074#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333727#step:8:1" }, { "name": "Test 3 - Help Or Configuration Validation", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000074#step:9:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333727#step:9:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000074#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333727#step:10:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000074#step:11:1" + "duration_seconds": 3, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333727#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 9, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000074#step:12:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333727#step:12:1", "current_version": "5.6.2", "latest_version": "5.6.3", "next_installed_version": "5.6.3", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.351958+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.569321+00:00", "publish_state": "published" } } diff --git a/data/test-results/joomla.json b/data/test-results/joomla.json index 74e5ef132f..a79ab818ed 100644 --- a/data/test-results/joomla.json +++ b/data/test-results/joomla.json @@ -5,10 +5,10 @@ "version": "5.4.2" }, "run": { - "id": "25877403044", + "id": "26658710721", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140826", - "timestamp": "2026-05-14T18:18:39Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456225", + "timestamp": "2026-05-29T19:48:44Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Artifact Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140826#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456225#step:6:1" }, { "name": "Test 2 - Version Check", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140826#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456225#step:7:1" }, { "name": "Test 3 - Configuration Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140826#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456225#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140826#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456225#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 15, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140826#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456225#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140826#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456225#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.352160+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.569519+00:00", "publish_state": "published" } } diff --git a/data/test-results/journalbeat.json b/data/test-results/journalbeat.json index 39b49c4557..b71f8540e7 100644 --- a/data/test-results/journalbeat.json +++ b/data/test-results/journalbeat.json @@ -5,10 +5,10 @@ "version": "7.12.0" }, "run": { - "id": "25877411197", + "id": "26658717942", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175472", - "timestamp": "2026-05-14T18:18:50Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479528", + "timestamp": "2026-05-29T19:48:52Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 2, + "duration_seconds": 0, "details": [ { "name": "Test 1 - Check Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175472#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479528#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175472#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479528#step:7:1" }, { "name": "Test 3 - Check Help Output or Configuration", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175472#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479528#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175472#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479528#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175472#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479528#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175472#step:11:1", + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479528#step:11:1", "current_version": "7.12.0", "latest_version": "7.15.2", "next_installed_version": "7.15.2", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.352359+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.569698+00:00", "publish_state": "published" } } diff --git a/data/test-results/juju.json b/data/test-results/juju.json index 76adb83b67..43726b0c52 100644 --- a/data/test-results/juju.json +++ b/data/test-results/juju.json @@ -5,10 +5,10 @@ "version": "3.6.4" }, "run": { - "id": "25877399008", + "id": "26658707245", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126440", - "timestamp": "2026-05-14T18:18:32Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445732", + "timestamp": "2026-05-29T19:48:38Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 24, + "duration_seconds": 10, "details": [ { "name": "Test 1 - Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126440#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445732#step:6:1" }, { "name": "Test 2 - Version Check", "status": "passed", "duration_seconds": 3, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126440#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445732#step:7:1" }, { "name": "Test 3 - Help Output Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126440#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445732#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126440#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445732#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126440#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445732#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 21, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126440#step:11:1", + "duration_seconds": 7, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445732#step:11:1", "current_version": "3.6.4", "latest_version": "3.6.5", "next_installed_version": "3.6.5", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.352562+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.569873+00:00", "publish_state": "published" } } diff --git a/data/test-results/julia.json b/data/test-results/julia.json index ad0e6e43c2..e603cb9433 100644 --- a/data/test-results/julia.json +++ b/data/test-results/julia.json @@ -5,10 +5,10 @@ "version": "1.11.4" }, "run": { - "id": "25877395502", + "id": "26658703674", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109484", - "timestamp": "2026-05-14T18:18:26Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432848", + "timestamp": "2026-05-29T19:48:33Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 13, + "duration_seconds": 9, "details": [ { "name": "Test 1 - Check julia binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109484#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432848#step:6:1" }, { "name": "Test 2 - Check version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109484#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432848#step:7:1" }, { "name": "Test 3 - Check help command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109484#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432848#step:8:1" }, { "name": "Test 4 - Run simple Julia code", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109484#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432848#step:9:1" }, { "name": "Test 5 - Perform calculation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109484#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432848#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 14, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109484#step:11:1", + "duration_seconds": 11, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432848#step:11:1", "current_version": "1.11.4", "latest_version": "1.11.5", "next_installed_version": "1.11.5", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.352793+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.570058+00:00", "publish_state": "published" } } diff --git a/data/test-results/k3os.json b/data/test-results/k3os.json index d9143abfba..b9364b7125 100644 --- a/data/test-results/k3os.json +++ b/data/test-results/k3os.json @@ -5,10 +5,10 @@ "version": "0.21.5-k3s2r0" }, "run": { - "id": "25877399008", + "id": "26658707245", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126107", - "timestamp": "2026-05-14T18:18:32Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445506", + "timestamp": "2026-05-29T19:48:39Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 35, + "duration_seconds": 37, "details": [ { "name": "Test 1 - Check Arm64 Release Artifacts Exist", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126107#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445506#step:6:1" }, { "name": "Test 2 - Check Release Version Mapping", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126107#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445506#step:7:1" }, { "name": "Test 3 - Check Artifact Inspection Output", "status": "passed", "duration_seconds": 3, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126107#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445506#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126107#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445506#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 25, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126107#step:10:1" + "duration_seconds": 26, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445506#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 7, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126107#step:11:1", + "duration_seconds": 8, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445506#step:11:1", "current_version": "0.21.5-k3s2r0", "latest_version": "0.21.5-k3s2r1", "next_installed_version": "0.21.5-k3s2r1", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.352984+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.570237+00:00", "publish_state": "published" } } diff --git a/data/test-results/k3s.json b/data/test-results/k3s.json index 1e427e20c4..64736b93b0 100644 --- a/data/test-results/k3s.json +++ b/data/test-results/k3s.json @@ -5,10 +5,10 @@ "version": "v1.31.7+k3s1" }, "run": { - "id": "25877383844", + "id": "26658692522", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071329", - "timestamp": "2026-05-14T18:18:11Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394701", + "timestamp": "2026-05-29T19:48:21Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071329#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394701#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071329#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394701#step:7:1" }, { "name": "Test 3 - Check Help Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071329#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394701#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071329#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394701#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 3, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071329#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394701#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071329#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394701#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.353184+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.570450+00:00", "publish_state": "published" } } diff --git a/data/test-results/k8s-device-plugin.json b/data/test-results/k8s-device-plugin.json index 429b4068f0..203a518c03 100644 --- a/data/test-results/k8s-device-plugin.json +++ b/data/test-results/k8s-device-plugin.json @@ -5,10 +5,10 @@ "version": "0.10.0" }, "run": { - "id": "25877427741", + "id": "26658731236", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218865", - "timestamp": "2026-05-14T18:19:09Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529412", + "timestamp": "2026-05-29T19:49:14Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,46 +20,46 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 10, + "duration_seconds": 8, "details": [ { "name": "Test 1 - Baseline package evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218865#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529412#step:7:1" }, { "name": "Test 2 - Baseline version and release alignment", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218865#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529412#step:8:1" }, { "name": "Test 3 - Package-specific source or docs evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218865#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529412#step:9:1" }, { "name": "Test 4 - Arm64 support gate", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218865#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529412#step:10:1" }, { "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218865#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529412#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 9, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218865#step:12:1", + "duration_seconds": 7, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529412#step:12:1", "current_version": "0.10.0", - "latest_version": "0.19.1", - "next_installed_version": "0.19.1", + "latest_version": "0.19.2", + "next_installed_version": "0.19.2", "decision": "limited_cpu_smoke_validated", "regression_result": "Arm preflight proof passed on Arm64", "comparison": "Test 6 reran the scoped NVIDIA device plugin Arm preflight against the next stable source tag: Go package discovery, plugin entrypoint source checks, and Kubernetes DaemonSet/device-resource manifest validation. Full scheduling, kubelet registration, and GPU runtime require a Kubernetes cluster with NVIDIA GPUs." @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.353394+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.570637+00:00", "publish_state": "published" } } diff --git a/data/test-results/kaezip.json b/data/test-results/kaezip.json index f76ba52d2e..fccb36f035 100644 --- a/data/test-results/kaezip.json +++ b/data/test-results/kaezip.json @@ -5,10 +5,10 @@ "version": "1.3.11" }, "run": { - "id": "25877363365", + "id": "26658674448", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000813", - "timestamp": "2026-05-14T18:17:47Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334441", + "timestamp": "2026-05-29T19:47:57Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check source tree contents", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000813#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334441#step:6:1" }, { "name": "Test 2 - Check baseline version metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000813#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334441#step:7:1" }, { "name": "Test 3 - Validate install plan", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000813#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334441#step:8:1" }, { "name": "Test 4 - Architecture verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000813#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334441#step:9:1" }, { "name": "Test 5 - Functional validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000813#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334441#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "skipped", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000813#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334441#step:11:1", "current_version": "1.3.11", "latest_version": "1.3.11", "next_installed_version": "1.3.11", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "skipped", "regression_decision": "no_newer_stable_available", - "production_refreshed_at": "2026-05-14T19:37:17.353621+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.570826+00:00", "publish_state": "published" } } diff --git a/data/test-results/kafka-connect.json b/data/test-results/kafka-connect.json index 165a432899..f6cf778413 100644 --- a/data/test-results/kafka-connect.json +++ b/data/test-results/kafka-connect.json @@ -5,10 +5,10 @@ "version": "4.1.2" }, "run": { - "id": "25877435852", + "id": "26658737633", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251762", - "timestamp": "2026-05-14T18:19:16Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550046", + "timestamp": "2026-05-29T19:49:23Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 11, + "duration_seconds": 4, "details": [ { "name": "Test 1 - Download Kafka baseline distribution", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251762#step:5:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550046#step:5:1" }, { "name": "Test 2 - Verify Connect scripts", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251762#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550046#step:6:1" }, { "name": "Test 3 - Check Connect CLI help", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251762#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550046#step:7:1" }, { "name": "Test 4 - Verify Connect configuration files", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251762#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550046#step:8:1" }, { "name": "Test 5 - Verify Connect libraries on Arm64", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251762#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550046#step:9:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251762#step:10:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550046#step:10:1", "current_version": "4.1.2", "latest_version": "4.2.0", "next_installed_version": "4.2.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.353848+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.571017+00:00", "publish_state": "published" } } diff --git a/data/test-results/kafka-mirrormaker.json b/data/test-results/kafka-mirrormaker.json index cdeeb1b6b2..97e2573e1c 100644 --- a/data/test-results/kafka-mirrormaker.json +++ b/data/test-results/kafka-mirrormaker.json @@ -5,10 +5,10 @@ "version": "4.1.2" }, "run": { - "id": "25877435852", + "id": "26658737633", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252045", - "timestamp": "2026-05-14T18:19:15Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549894", + "timestamp": "2026-05-29T19:49:22Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 12, + "duration_seconds": 14, "details": [ { "name": "Test 1 - Download Kafka baseline distribution", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252045#step:5:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549894#step:5:1" }, { "name": "Test 2 - Verify MirrorMaker script", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252045#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549894#step:6:1" }, { "name": "Test 3 - Check MirrorMaker CLI help", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252045#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549894#step:7:1" }, { "name": "Test 4 - Verify MirrorMaker libraries", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252045#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549894#step:8:1" }, { "name": "Test 5 - Verify MirrorMaker references on Arm64", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252045#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549894#step:9:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252045#step:10:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549894#step:10:1", "current_version": "4.1.2", "latest_version": "4.2.0", "next_installed_version": "4.2.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.354060+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.571204+00:00", "publish_state": "published" } } diff --git a/data/test-results/kafka.json b/data/test-results/kafka.json index c1fcef6652..9aa911c4ac 100644 --- a/data/test-results/kafka.json +++ b/data/test-results/kafka.json @@ -5,10 +5,10 @@ "version": "4.1.2" }, "run": { - "id": "25877355625", + "id": "26658667828", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047975615", - "timestamp": "2026-05-14T18:17:37Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575307976", + "timestamp": "2026-05-29T19:47:49Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 19, + "duration_seconds": 17, "details": [ { "name": "Test 1 - Check kafka scripts exist", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047975615#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575307976#step:6:1" }, { "name": "Test 2 - Prepare KRaft metadata", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047975615#step:7:1" + "duration_seconds": 3, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575307976#step:7:1" }, { "name": "Test 3 - Start Kafka Server", "status": "passed", - "duration_seconds": 5, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047975615#step:8:1" + "duration_seconds": 6, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575307976#step:8:1" }, { "name": "Test 4 - Create a topic", "status": "passed", "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047975615#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575307976#step:9:1" }, { "name": "Test 5 - List topics", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047975615#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575307976#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 9, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047975615#step:11:1", + "duration_seconds": 5, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575307976#step:11:1", "current_version": "4.1.2", "latest_version": "4.2.0", "next_installed_version": "4.2.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.354267+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.571418+00:00", "publish_state": "published" } } diff --git a/data/test-results/kafkacat.json b/data/test-results/kafkacat.json index 1eb8183dd0..efdde3edc1 100644 --- a/data/test-results/kafkacat.json +++ b/data/test-results/kafkacat.json @@ -5,10 +5,10 @@ "version": "1.6.0" }, "run": { - "id": "25877383844", + "id": "26658692522", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048070683", - "timestamp": "2026-05-14T18:18:11Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575393100", + "timestamp": "2026-05-29T19:48:19Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 3, + "duration_seconds": 2, "details": [ { "name": "Test 1 - Check kcat binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048070683#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575393100#step:6:1" }, { "name": "Test 2 - Check kcat version output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048070683#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575393100#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048070683#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575393100#step:8:1" }, { "name": "Test 4 - Architecture verification", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048070683#step:9:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575393100#step:9:1" }, { "name": "Test 5 - Functional validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048070683#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575393100#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048070683#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575393100#step:11:1", "current_version": "1.6.0", "latest_version": "1.7.0", "next_installed_version": "1.7.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.354475+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.571607+00:00", "publish_state": "published" } } diff --git a/data/test-results/kangas.json b/data/test-results/kangas.json index 523429869f..569459faee 100644 --- a/data/test-results/kangas.json +++ b/data/test-results/kangas.json @@ -5,10 +5,10 @@ "version": "2.4.11" }, "run": { - "id": "25877392111", + "id": "26658699892", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095762", - "timestamp": "2026-05-14T18:18:23Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421118", + "timestamp": "2026-05-29T19:48:31Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Kangas CLI exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095762#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421118#step:6:1" }, { "name": "Test 2 - Check Kangas version command", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095762#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421118#step:7:1" }, { "name": "Test 3 - Check Kangas Python import", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095762#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421118#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095762#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421118#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095762#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421118#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095762#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421118#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.354683+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.571790+00:00", "publish_state": "published" } } diff --git a/data/test-results/karmada.json b/data/test-results/karmada.json index 34617ad4cc..34923cbda1 100644 --- a/data/test-results/karmada.json +++ b/data/test-results/karmada.json @@ -5,10 +5,10 @@ "version": "1.13.0" }, "run": { - "id": "25877419588", + "id": "26658724696", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048191569", - "timestamp": "2026-05-14T18:18:58Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503377", + "timestamp": "2026-05-29T19:49:01Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check karmadactl binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048191569#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503377#step:6:1" }, { "name": "Test 2 - Check version output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048191569#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503377#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048191569#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503377#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048191569#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503377#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048191569#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503377#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048191569#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503377#step:11:1", "current_version": "1.13.0", "latest_version": "1.13.1", "next_installed_version": "1.13.1", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.355015+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.572056+00:00", "publish_state": "published" } } diff --git a/data/test-results/kasmvnc.json b/data/test-results/kasmvnc.json index 529382d275..895bf7285e 100644 --- a/data/test-results/kasmvnc.json +++ b/data/test-results/kasmvnc.json @@ -5,10 +5,10 @@ "version": "0.9.3 Beta" }, "run": { - "id": "25877427741", + "id": "26658731236", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218775", - "timestamp": "2026-05-14T18:19:14Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529790", + "timestamp": "2026-05-29T19:49:11Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 28, + "duration_seconds": 18, "details": [ { "name": "Test 1 - Baseline package evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218775#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529790#step:7:1" }, { "name": "Test 2 - Baseline version and release alignment", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218775#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529790#step:8:1" }, { "name": "Test 3 - Package-specific source or docs evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218775#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529790#step:9:1" }, { "name": "Test 4 - Arm64 support gate", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218775#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529790#step:10:1" }, { "name": "Test 5 - Bounded package-specific smoke", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218775#step:11:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529790#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 27, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218775#step:12:1", + "duration_seconds": 19, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529790#step:12:1", "current_version": "0.9.3 Beta", "latest_version": "1.4.0", "next_installed_version": "1.4.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.355236+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.572264+00:00", "publish_state": "published" } } diff --git a/data/test-results/kata.json b/data/test-results/kata.json index 4a820313b4..66a1193876 100644 --- a/data/test-results/kata.json +++ b/data/test-results/kata.json @@ -5,10 +5,10 @@ "version": "3.15.0" }, "run": { - "id": "25877415436", + "id": "26658721315", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180698", - "timestamp": "2026-05-14T18:18:54Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491802", + "timestamp": "2026-05-29T19:48:58Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 9, + "duration_seconds": 13, "details": [ { "name": "Test 1 - Check kata-runtime binary exists", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180698#step:6:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491802#step:6:1" }, { "name": "Test 2 - Check version output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180698#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491802#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180698#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491802#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180698#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491802#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180698#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491802#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 9, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180698#step:11:1", + "duration_seconds": 13, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491802#step:11:1", "current_version": "3.15.0", "latest_version": "3.16.0", "next_installed_version": "3.16.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.355428+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.572464+00:00", "publish_state": "published" } } diff --git a/data/test-results/katsu.json b/data/test-results/katsu.json index 36f7fea352..df254f6150 100644 --- a/data/test-results/katsu.json +++ b/data/test-results/katsu.json @@ -5,10 +5,10 @@ "version": "0.1.0" }, "run": { - "id": "25877359516", + "id": "26658670904", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991699", - "timestamp": "2026-05-14T18:17:44Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321914", + "timestamp": "2026-05-29T19:47:53Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 1, + "duration_seconds": 0, "details": [ { "name": "Test 1 - Check katsu package", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991699#step:6:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321914#step:6:1" }, { "name": "Test 2 - Check katsu help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991699#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321914#step:7:1" }, { "name": "Test 3 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991699#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321914#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991699#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321914#step:9:1" }, { "name": "Test 5 - Functional Validation (Python Import)", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991699#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321914#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991699#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321914#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.355609+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.572644+00:00", "publish_state": "published" } } diff --git a/data/test-results/keda.json b/data/test-results/keda.json index 331c406fd0..b15b246c41 100644 --- a/data/test-results/keda.json +++ b/data/test-results/keda.json @@ -5,10 +5,10 @@ "version": "2.17.0" }, "run": { - "id": "25877375677", + "id": "26658685142", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044756", - "timestamp": "2026-05-14T18:18:03Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370450", + "timestamp": "2026-05-29T19:48:11Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Artifact Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044756#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370450#step:6:1" }, { "name": "Test 2 - Version Check", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044756#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370450#step:7:1" }, { "name": "Test 3 - Help Output Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044756#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370450#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044756#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370450#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044756#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370450#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044756#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370450#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.355846+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.572813+00:00", "publish_state": "published" } } diff --git a/data/test-results/keepalived.json b/data/test-results/keepalived.json index 1dd618cb27..b4c8e29531 100644 --- a/data/test-results/keepalived.json +++ b/data/test-results/keepalived.json @@ -5,10 +5,10 @@ "version": "v2.2.8" }, "run": { - "id": "25877371674", + "id": "26658681575", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048030967", - "timestamp": "2026-05-14T18:17:59Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358578", + "timestamp": "2026-05-29T19:48:07Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check keepalived binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048030967#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358578#step:6:1" }, { "name": "Test 2 - Check version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048030967#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358578#step:7:1" }, { "name": "Test 3 - Check help command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048030967#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358578#step:8:1" }, { "name": "Test 4 - Check configuration validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048030967#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358578#step:9:1" }, { "name": "Test 5 - Check service status (if possible)", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048030967#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358578#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048030967#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358578#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.356045+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.572981+00:00", "publish_state": "published" } } diff --git a/data/test-results/keptn.json b/data/test-results/keptn.json index 0441fb26d6..a497e13b21 100644 --- a/data/test-results/keptn.json +++ b/data/test-results/keptn.json @@ -5,10 +5,10 @@ "version": "1.4.4" }, "run": { - "id": "25877411197", + "id": "26658717942", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175295", - "timestamp": "2026-05-14T18:18:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478662", + "timestamp": "2026-05-29T19:48:52Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 1, + "duration_seconds": 2, "details": [ { "name": "Test 1 - Check keptn binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175295#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478662#step:6:1" }, { "name": "Test 2 - Check version output", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175295#step:7:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478662#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175295#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478662#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175295#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478662#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175295#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478662#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175295#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478662#step:11:1", "current_version": "1.4.4", "latest_version": "1.4.5", "next_installed_version": "1.4.5", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.356227+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.573149+00:00", "publish_state": "published" } } diff --git a/data/test-results/keras.json b/data/test-results/keras.json index 55e57d2b51..6c4da50d05 100644 --- a/data/test-results/keras.json +++ b/data/test-results/keras.json @@ -5,10 +5,10 @@ "version": "3.14.1" }, "run": { - "id": "25877359516", + "id": "26658670904", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991192", - "timestamp": "2026-05-14T18:17:45Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321676", + "timestamp": "2026-05-29T19:47:53Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check import", "status": "passed", "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991192#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321676#step:6:1" }, { "name": "Test 2 - Check backend", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991192#step:7:1" + "duration_seconds": 2, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321676#step:7:1" }, { "name": "Test 3 - Create simple model", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991192#step:8:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321676#step:8:1" }, { "name": "Test 4 - Train simple model (dummy data)", "status": "passed", "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991192#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321676#step:9:1" }, { "name": "Test 5 - Save and load model", "status": "passed", "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991192#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321676#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991192#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321676#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.356405+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.573347+00:00", "publish_state": "published" } } diff --git a/data/test-results/keycloak.json b/data/test-results/keycloak.json index 1c991c375e..9eb4166d73 100644 --- a/data/test-results/keycloak.json +++ b/data/test-results/keycloak.json @@ -5,10 +5,10 @@ "version": "26.1.4" }, "run": { - "id": "25877379982", + "id": "26658688675", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057252", - "timestamp": "2026-05-14T18:18:06Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380465", + "timestamp": "2026-05-29T19:48:15Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check kc.sh script exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057252#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380465#step:6:1" }, { "name": "Test 2 - Check version command", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057252#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380465#step:7:1" }, { "name": "Test 3 - Check help command", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057252#step:8:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380465#step:8:1" }, { "name": "Test 4 - Start Keycloak in dev mode", "status": "passed", "duration_seconds": 20, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057252#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380465#step:9:1" }, { "name": "Test 5 - Check HTTP response", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057252#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380465#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 5, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057252#step:11:1", + "duration_seconds": 6, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380465#step:11:1", "current_version": "26.1.4", "latest_version": "26.1.5", "next_installed_version": "26.1.5", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.356612+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.573523+00:00", "publish_state": "published" } } diff --git a/data/test-results/keydb.json b/data/test-results/keydb.json index 0794b90afa..d9669594d6 100644 --- a/data/test-results/keydb.json +++ b/data/test-results/keydb.json @@ -5,10 +5,10 @@ "version": "6.3.3" }, "run": { - "id": "25877363365", + "id": "26658674448", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000836", - "timestamp": "2026-05-14T18:17:47Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333787", + "timestamp": "2026-05-29T19:47:56Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 66, + "duration_seconds": 65, "details": [ { "name": "Test 1 - Check KeyDB binaries exist", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000836#step:6:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333787#step:6:1" }, { "name": "Test 2 - Check version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000836#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333787#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000836#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333787#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000836#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333787#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000836#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333787#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 66, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000836#step:11:1", + "duration_seconds": 65, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333787#step:11:1", "current_version": "6.3.3", "latest_version": "6.3.4", "next_installed_version": "6.3.4", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.356875+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.573708+00:00", "publish_state": "published" } } diff --git a/data/test-results/keystone.json b/data/test-results/keystone.json index 9896794903..c926a6c837 100644 --- a/data/test-results/keystone.json +++ b/data/test-results/keystone.json @@ -5,10 +5,10 @@ "version": "25.0.0" }, "run": { - "id": "25877406767", + "id": "26658714432", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155431", - "timestamp": "2026-05-14T18:18:43Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469443", + "timestamp": "2026-05-29T19:48:48Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check keystone-manage binary", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155431#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469443#step:6:1" }, { "name": "Test 2 - Check version command", "status": "passed", "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155431#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469443#step:7:1" }, { "name": "Test 3 - Check help command", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155431#step:8:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469443#step:8:1" }, { "name": "Test 4 - Basic configuration check (db_sync)", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155431#step:9:1" + "duration_seconds": 2, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469443#step:9:1" }, { "name": "Test 5 - Check python import", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155431#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469443#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155431#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469443#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.357082+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.573890+00:00", "publish_state": "published" } } diff --git a/data/test-results/kicad.json b/data/test-results/kicad.json index 5e119442f2..8275735702 100644 --- a/data/test-results/kicad.json +++ b/data/test-results/kicad.json @@ -5,10 +5,10 @@ "version": "7.0.11+dfsg-1build4" }, "run": { - "id": "25877427741", + "id": "26658731236", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218883", - "timestamp": "2026-05-14T18:19:04Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529806", + "timestamp": "2026-05-29T19:49:11Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 3, + "duration_seconds": 1, "details": [ { "name": "Test 1 - Baseline package evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218883#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529806#step:7:1" }, { "name": "Test 2 - Installed runtime version", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218883#step:8:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529806#step:8:1" }, { "name": "Test 3 - kicad-cli help", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218883#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529806#step:9:1" }, { "name": "Test 4 - Arm64 support gate", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218883#step:10:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529806#step:10:1" }, { "name": "Test 5 - Bounded package-specific smoke", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218883#step:11:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529806#step:11:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218883#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529806#step:12:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.357289+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.574067+00:00", "publish_state": "published" } } diff --git a/data/test-results/klayout.json b/data/test-results/klayout.json index 5eaeb32369..ca81b1b15a 100644 --- a/data/test-results/klayout.json +++ b/data/test-results/klayout.json @@ -5,10 +5,10 @@ "version": "0.28.16-0ubuntu0.24.04.1" }, "run": { - "id": "25877427741", + "id": "26658731236", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218751", - "timestamp": "2026-05-14T18:19:12Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529473", + "timestamp": "2026-05-29T19:49:17Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Package-manager install evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218751#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529473#step:6:1" }, { "name": "Test 2 - Installed Arm64 package metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218751#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529473#step:7:1" }, { "name": "Test 3 - CLI version starts on Arm", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218751#step:8:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529473#step:8:1" }, { "name": "Test 4 - Arm64 runner gate", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218751#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529473#step:9:1" }, { "name": "Test 5 - KLayout batch layout smoke", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218751#step:10:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529473#step:10:1" }, { "name": "Test 6 - Regression validation applicability", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218751#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529473#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.357494+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.574271+00:00", "publish_state": "published" } } diff --git a/data/test-results/kmerfreq.json b/data/test-results/kmerfreq.json index f4a61b263d..a8891dcc43 100644 --- a/data/test-results/kmerfreq.json +++ b/data/test-results/kmerfreq.json @@ -5,10 +5,10 @@ "version": "90fca00" }, "run": { - "id": "25877419588", + "id": "26658724696", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192632", - "timestamp": "2026-05-14T18:18:58Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503970", + "timestamp": "2026-05-29T19:49:02Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check kmerfreq binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192632#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503970#step:6:1" }, { "name": "Test 2 - Check help/usage", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192632#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503970#step:7:1" }, { "name": "Test 3 - Run on dummy data", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192632#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503970#step:8:1" }, { "name": "Test 4 - Check output content", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192632#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503970#step:9:1" }, { "name": "Test 5 - Architecture Verification", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192632#step:10:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503970#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "skipped", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192632#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503970#step:11:1", "current_version": "90fca00", "latest_version": "90fca00", "next_installed_version": "90fca00", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "skipped", "regression_decision": "no_newer_stable_available", - "production_refreshed_at": "2026-05-14T19:37:17.357696+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.574468+00:00", "publish_state": "published" } } diff --git a/data/test-results/knative.json b/data/test-results/knative.json index e3accbf25e..5facd8aa11 100644 --- a/data/test-results/knative.json +++ b/data/test-results/knative.json @@ -5,10 +5,10 @@ "version": "1.17.0" }, "run": { - "id": "25877406767", + "id": "26658714432", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155507", - "timestamp": "2026-05-14T18:18:43Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469265", + "timestamp": "2026-05-29T19:48:49Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 1, + "duration_seconds": 0, "details": [ { "name": "Test 1 - Check kn binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155507#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469265#step:6:1" }, { "name": "Test 2 - Check version output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155507#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469265#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155507#step:8:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469265#step:8:1" }, { "name": "Test 4 - Check completion output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155507#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469265#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155507#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469265#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155507#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469265#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.357928+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.574652+00:00", "publish_state": "published" } } diff --git a/data/test-results/kobert.json b/data/test-results/kobert.json index 1f5df0c28f..ae1e21f6d3 100644 --- a/data/test-results/kobert.json +++ b/data/test-results/kobert.json @@ -5,10 +5,10 @@ "version": "0.2.4" }, "run": { - "id": "25877399008", + "id": "26658707245", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125290", - "timestamp": "2026-05-14T18:18:40Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445744", + "timestamp": "2026-05-29T19:48:47Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 18, + "duration_seconds": 16, "details": [ { "name": "Test 1 - Check top-level import", "status": "passed", - "duration_seconds": 5, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125290#step:7:1" + "duration_seconds": 4, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445744#step:7:1" }, { "name": "Test 2 - Check exported utility helpers", "status": "passed", "duration_seconds": 4, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125290#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445744#step:8:1" }, { "name": "Test 3 - Download tokenizer asset", "status": "passed", - "duration_seconds": 5, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125290#step:9:1" + "duration_seconds": 4, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445744#step:9:1" }, { "name": "Test 4 - Check PyTorch integration", "status": "passed", "duration_seconds": 4, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125290#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445744#step:10:1" }, { "name": "Test 5 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125290#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445744#step:11:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125290#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445744#step:12:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.358129+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.574832+00:00", "publish_state": "published" } } diff --git a/data/test-results/kolla.json b/data/test-results/kolla.json index cc773b133f..62a83a903f 100644 --- a/data/test-results/kolla.json +++ b/data/test-results/kolla.json @@ -5,10 +5,10 @@ "version": "22.0.0" }, "run": { - "id": "25877371674", + "id": "26658681575", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031765", - "timestamp": "2026-05-14T18:17:59Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358434", + "timestamp": "2026-05-29T19:48:07Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -25,38 +25,38 @@ { "name": "Test 1 - Check kolla-build binary", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031765#step:6:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358434#step:6:1" }, { "name": "Test 2 - Check version command", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031765#step:7:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358434#step:7:1" }, { "name": "Test 3 - Check help command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031765#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358434#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031765#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358434#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031765#step:10:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358434#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031765#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358434#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.358310+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.575014+00:00", "publish_state": "published" } } diff --git a/data/test-results/krb5.json b/data/test-results/krb5.json index 84f2e405df..3ade9b784f 100644 --- a/data/test-results/krb5.json +++ b/data/test-results/krb5.json @@ -5,10 +5,10 @@ "version": "Kerberos" }, "run": { - "id": "25877423406", + "id": "26658727918", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209885", - "timestamp": "2026-05-14T18:19:05Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516152", + "timestamp": "2026-05-29T19:49:07Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check kinit binary", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209885#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516152#step:6:1" }, { "name": "Test 2 - Check klist binary", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209885#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516152#step:7:1" }, { "name": "Test 3 - Check version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209885#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516152#step:8:1" }, { "name": "Test 4 - Check help command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209885#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516152#step:9:1" }, { "name": "Test 5 - Check klist execution (empty cache)", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209885#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516152#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209885#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516152#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.358486+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.575196+00:00", "publish_state": "published" } } diff --git a/data/test-results/kube-bench.json b/data/test-results/kube-bench.json index 4ffb03fa2a..e029d0d19c 100644 --- a/data/test-results/kube-bench.json +++ b/data/test-results/kube-bench.json @@ -5,10 +5,10 @@ "version": "0.10.4" }, "run": { - "id": "25877375677", + "id": "26658685142", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043931", - "timestamp": "2026-05-14T18:18:02Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369888", + "timestamp": "2026-05-29T19:48:10Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Artifact Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043931#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369888#step:6:1" }, { "name": "Test 2 - Version Check", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043931#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369888#step:7:1" }, { "name": "Test 3 - Help Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043931#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369888#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043931#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369888#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043931#step:10:1" + "duration_seconds": 2, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369888#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043931#step:11:1", + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369888#step:11:1", "current_version": "0.10.4", "latest_version": "0.10.5", "next_installed_version": "0.10.5", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.358708+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.575415+00:00", "publish_state": "published" } } diff --git a/data/test-results/kube-router.json b/data/test-results/kube-router.json index 073e544649..e6e2a87110 100644 --- a/data/test-results/kube-router.json +++ b/data/test-results/kube-router.json @@ -5,10 +5,10 @@ "version": "2.6.0" }, "run": { - "id": "25877379982", + "id": "26658688675", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057162", - "timestamp": "2026-05-14T18:18:05Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380779", + "timestamp": "2026-05-29T19:48:15Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 1, + "duration_seconds": 2, "details": [ { "name": "Test 1 - Check kube-router binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057162#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380779#step:6:1" }, { "name": "Test 2 - Check version output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057162#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380779#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057162#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380779#step:8:1" }, { "name": "Test 4 - Check metrics flag parsing", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057162#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380779#step:9:1" }, { "name": "Test 5 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057162#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380779#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057162#step:11:1", + "duration_seconds": 2, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380779#step:11:1", "current_version": "2.6.0", "latest_version": "2.6.1", "next_installed_version": "2.6.1", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.358954+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.575605+00:00", "publish_state": "published" } } diff --git a/data/test-results/kubeedge.json b/data/test-results/kubeedge.json index f9f4628c99..a467e30d89 100644 --- a/data/test-results/kubeedge.json +++ b/data/test-results/kubeedge.json @@ -5,10 +5,10 @@ "version": "1.20.0" }, "run": { - "id": "25877367704", + "id": "26658677990", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026961", - "timestamp": "2026-05-14T18:17:56Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347217", + "timestamp": "2026-05-29T19:48:08Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check keadm binary", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026961#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347217#step:6:1" }, { "name": "Test 2 - Check version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026961#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347217#step:7:1" }, { "name": "Test 3 - Check help command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026961#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347217#step:8:1" }, { "name": "Test 4 - Check init command help", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026961#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347217#step:9:1" }, { "name": "Test 5 - Check join command help", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026961#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347217#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 3, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026961#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347217#step:11:1", "current_version": "1.20.0", "latest_version": "1.21.0", "next_installed_version": "1.21.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.359158+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.575787+00:00", "publish_state": "published" } } diff --git a/data/test-results/kubeflow.json b/data/test-results/kubeflow.json index ac74218ab1..756339a81b 100644 --- a/data/test-results/kubeflow.json +++ b/data/test-results/kubeflow.json @@ -5,10 +5,10 @@ "version": "2.16.1" }, "run": { - "id": "25877423406", + "id": "26658727918", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210345", - "timestamp": "2026-05-14T18:19:08Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516245", + "timestamp": "2026-05-29T19:49:07Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check kfp import", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210345#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516245#step:6:1" }, { "name": "Test 2 - Check kfp CLI", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210345#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516245#step:7:1" }, { "name": "Test 3 - Check kfp version via CLI", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210345#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516245#step:8:1" }, { "name": "Test 4 - Download Kubeflow Manifests (Verification)", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210345#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516245#step:9:1" }, { "name": "Test 5 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210345#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516245#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210345#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516245#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.359361+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.575973+00:00", "publish_state": "published" } } diff --git a/data/test-results/kubernetes.json b/data/test-results/kubernetes.json index 1c69ac2cb2..3c9e25a6f9 100644 --- a/data/test-results/kubernetes.json +++ b/data/test-results/kubernetes.json @@ -5,10 +5,10 @@ "version": "1.32.1" }, "run": { - "id": "25877375677", + "id": "26658685142", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044787", - "timestamp": "2026-05-14T18:18:01Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370500", + "timestamp": "2026-05-29T19:48:11Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check kubectl binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044787#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370500#step:6:1" }, { "name": "Test 2 - Check version output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044787#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370500#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044787#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370500#step:8:1" }, { "name": "Test 4 - Check cluster-info graceful failure", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044787#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370500#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044787#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370500#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044787#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370500#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.359559+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.576155+00:00", "publish_state": "published" } } diff --git a/data/test-results/kubevela.json b/data/test-results/kubevela.json index 51841cbc90..e273b848c8 100644 --- a/data/test-results/kubevela.json +++ b/data/test-results/kubevela.json @@ -5,10 +5,10 @@ "version": "1.10.0" }, "run": { - "id": "25877427741", + "id": "26658731236", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218868", - "timestamp": "2026-05-14T18:19:05Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529317", + "timestamp": "2026-05-29T19:49:14Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 1, + "duration_seconds": 2, "details": [ { "name": "Test 1 - Check vela binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218868#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529317#step:6:1" }, { "name": "Test 2 - Check version output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218868#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529317#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218868#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529317#step:8:1" }, { "name": "Test 4 - Check completion output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218868#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529317#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218868#step:10:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529317#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218868#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529317#step:11:1", "current_version": "1.10.0", "latest_version": "1.10.1", "next_installed_version": "1.10.1", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.359878+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.576454+00:00", "publish_state": "published" } } diff --git a/data/test-results/kubevirt.json b/data/test-results/kubevirt.json index 4e7012e514..646257280b 100644 --- a/data/test-results/kubevirt.json +++ b/data/test-results/kubevirt.json @@ -5,10 +5,10 @@ "version": "1.5.2" }, "run": { - "id": "25877387746", + "id": "26658696365", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084623", - "timestamp": "2026-05-14T18:18:17Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407353", + "timestamp": "2026-05-29T19:48:25Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check virtctl binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084623#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407353#step:6:1" }, { "name": "Test 2 - Check version output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084623#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407353#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084623#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407353#step:8:1" }, { "name": "Test 4 - Check image-upload help", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084623#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407353#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084623#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407353#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084623#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407353#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.360071+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.576639+00:00", "publish_state": "published" } } diff --git a/data/test-results/kubewarden-audit-scanner.json b/data/test-results/kubewarden-audit-scanner.json index 62ee105866..eaf7cfbfb8 100644 --- a/data/test-results/kubewarden-audit-scanner.json +++ b/data/test-results/kubewarden-audit-scanner.json @@ -5,10 +5,10 @@ "version": "(devel)" }, "run": { - "id": "25877387746", + "id": "26658696365", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084577", - "timestamp": "2026-05-14T18:18:15Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407665", + "timestamp": "2026-05-29T19:48:24Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 57, + "duration_seconds": 59, "details": [ { "name": "Test 1 - Check Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084577#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407665#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084577#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407665#step:7:1" }, { "name": "Test 3 - Check Help Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084577#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407665#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084577#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407665#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084577#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407665#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 57, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084577#step:11:1", + "duration_seconds": 59, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407665#step:11:1", "current_version": "(devel)", "latest_version": "1.25.0", "next_installed_version": "1.25.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.360314+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.576816+00:00", "publish_state": "published" } } diff --git a/data/test-results/kubewarden-controller.json b/data/test-results/kubewarden-controller.json index 9ac20a18b4..a20d0fcb94 100644 --- a/data/test-results/kubewarden-controller.json +++ b/data/test-results/kubewarden-controller.json @@ -5,10 +5,10 @@ "version": "1.29.0" }, "run": { - "id": "25877392111", + "id": "26658699892", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095684", - "timestamp": "2026-05-14T18:18:23Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421176", + "timestamp": "2026-05-29T19:48:30Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Artifact Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095684#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421176#step:6:1" }, { "name": "Test 2 - Version Check", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095684#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421176#step:7:1" }, { "name": "Test 3 - Help Output Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095684#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421176#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095684#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421176#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095684#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421176#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048095684#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421176#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.360522+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.577003+00:00", "publish_state": "published" } } diff --git a/data/test-results/kubewarden-kwctl.json b/data/test-results/kubewarden-kwctl.json index 9954867f98..6f3020b7f0 100644 --- a/data/test-results/kubewarden-kwctl.json +++ b/data/test-results/kubewarden-kwctl.json @@ -5,10 +5,10 @@ "version": "1.29.0" }, "run": { - "id": "25877387746", + "id": "26658696365", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084601", - "timestamp": "2026-05-14T18:18:15Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407537", + "timestamp": "2026-05-29T19:48:24Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 1, + "duration_seconds": 0, "details": [ { "name": "Test 1 - Check Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084601#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407537#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084601#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407537#step:7:1" }, { "name": "Test 3 - Check Help Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084601#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407537#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084601#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407537#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084601#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407537#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084601#step:11:1", + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407537#step:11:1", "current_version": "1.29.0", "latest_version": "1.29.1", "next_installed_version": "1.29.1", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.360723+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.577183+00:00", "publish_state": "published" } } diff --git a/data/test-results/kubewarden-policy-server.json b/data/test-results/kubewarden-policy-server.json index f9d449397a..794f8ddece 100644 --- a/data/test-results/kubewarden-policy-server.json +++ b/data/test-results/kubewarden-policy-server.json @@ -5,10 +5,10 @@ "version": "1.29.0" }, "run": { - "id": "25877415436", + "id": "26658721315", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180679", - "timestamp": "2026-05-14T18:18:50Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491664", + "timestamp": "2026-05-29T19:48:56Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Artifact Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180679#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491664#step:6:1" }, { "name": "Test 2 - Version Check", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180679#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491664#step:7:1" }, { "name": "Test 3 - Help Output Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180679#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491664#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180679#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491664#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180679#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491664#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180679#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491664#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.360941+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.577396+00:00", "publish_state": "published" } } diff --git a/data/test-results/kvm.json b/data/test-results/kvm.json index 4c1e9f1055..b6a77bab84 100644 --- a/data/test-results/kvm.json +++ b/data/test-results/kvm.json @@ -5,10 +5,10 @@ "version": "8.2.2" }, "run": { - "id": "25877423406", + "id": "26658727918", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209730", - "timestamp": "2026-05-14T18:19:02Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516085", + "timestamp": "2026-05-29T19:49:05Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209730#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516085#step:6:1" }, { "name": "Test 2 - Version Check", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209730#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516085#step:7:1" }, { "name": "Test 3 - Help Output Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209730#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516085#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209730#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516085#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209730#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516085#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209730#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516085#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.361164+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.577573+00:00", "publish_state": "published" } } diff --git a/data/test-results/kylin.json b/data/test-results/kylin.json index d6f03302d8..c6112bfa31 100644 --- a/data/test-results/kylin.json +++ b/data/test-results/kylin.json @@ -5,10 +5,10 @@ "version": "5.0.0" }, "run": { - "id": "25877379982", + "id": "26658688675", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057266", - "timestamp": "2026-05-14T18:18:05Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380600", + "timestamp": "2026-05-29T19:48:15Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 22, + "duration_seconds": 33, "details": [ { "name": "Test 1 - Check Kylin scripts exist", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057266#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380600#step:6:1" }, { "name": "Test 2 - Check release version mapping", "status": "passed", "duration_seconds": 4, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057266#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380600#step:7:1" }, { "name": "Test 3 - Check Kylin help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057266#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380600#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057266#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380600#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 6, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057266#step:10:1" + "duration_seconds": 5, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380600#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 13, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057266#step:11:1", + "duration_seconds": 24, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380600#step:11:1", "current_version": "5.0.0", "latest_version": "5.0.2", "next_installed_version": "5.0.2", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.361358+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.577743+00:00", "publish_state": "published" } } diff --git a/data/test-results/kyuubi.json b/data/test-results/kyuubi.json index aa8a9405a8..8fac855e54 100644 --- a/data/test-results/kyuubi.json +++ b/data/test-results/kyuubi.json @@ -5,10 +5,10 @@ "version": "1.10.3" }, "run": { - "id": "25877399008", + "id": "26658707245", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125692", - "timestamp": "2026-05-14T18:18:36Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445376", + "timestamp": "2026-05-29T19:48:38Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 21, + "duration_seconds": 13, "details": [ { "name": "Test 1 - Check Kyuubi binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125692#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445376#step:6:1" }, { "name": "Test 2 - Check Kyuubi release version mapping", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125692#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445376#step:7:1" }, { "name": "Test 3 - Check Kyuubi help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125692#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445376#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125692#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445376#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 3, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125692#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445376#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 17, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125692#step:11:1", + "duration_seconds": 9, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445376#step:11:1", "current_version": "1.10.3", "latest_version": "1.11.0", "next_installed_version": "1.11.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.361560+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.577926+00:00", "publish_state": "published" } } diff --git a/data/test-results/kyverno.json b/data/test-results/kyverno.json index c475c1a85b..c1f3a96272 100644 --- a/data/test-results/kyverno.json +++ b/data/test-results/kyverno.json @@ -5,10 +5,10 @@ "version": "1.13.0" }, "run": { - "id": "25877379982", + "id": "26658688675", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057379", - "timestamp": "2026-05-14T18:18:05Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380833", + "timestamp": "2026-05-29T19:48:15Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 1, + "duration_seconds": 3, "details": [ { "name": "Test 1 - Check Binary Existence", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057379#step:6:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380833#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057379#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380833#step:7:1" }, { "name": "Test 3 - Check Help Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057379#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380833#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057379#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380833#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057379#step:10:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380833#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057379#step:11:1", + "duration_seconds": 2, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380833#step:11:1", "current_version": "1.13.0", "latest_version": "1.13.1", "next_installed_version": "1.13.1", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.361783+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.578101+00:00", "publish_state": "published" } } diff --git a/data/test-results/lammps.json b/data/test-results/lammps.json index 85107adcec..50dfa61e13 100644 --- a/data/test-results/lammps.json +++ b/data/test-results/lammps.json @@ -5,10 +5,10 @@ "version": "20240207+dfsg" }, "run": { - "id": "25877423406", + "id": "26658727918", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210137", - "timestamp": "2026-05-14T18:19:01Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516136", + "timestamp": "2026-05-29T19:49:07Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 0, + "duration_seconds": 1, "details": [ { "name": "Test 1 - Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210137#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516136#step:6:1" }, { "name": "Test 2 - Version Check", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210137#step:7:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516136#step:7:1" }, { "name": "Test 3 - Help Output Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210137#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516136#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210137#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516136#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210137#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516136#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210137#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516136#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.362002+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.578290+00:00", "publish_state": "published" } } diff --git a/data/test-results/langchain.json b/data/test-results/langchain.json index dd69168e5e..a64bc1b564 100644 --- a/data/test-results/langchain.json +++ b/data/test-results/langchain.json @@ -2,13 +2,13 @@ "schema_version": "2.0", "package": { "name": "LangChain", - "version": "1.3.0" + "version": "1.3.2" }, "run": { - "id": "25877383844", + "id": "26658692522", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071437", - "timestamp": "2026-05-14T18:18:12Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394736", + "timestamp": "2026-05-29T19:48:21Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 1, + "duration_seconds": 0, "details": [ { "name": "Test 1 - Check Module Import", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071437#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394736#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071437#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394736#step:7:1" }, { "name": "Test 3 - Check Package Metadata", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071437#step:8:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394736#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071437#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394736#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071437#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394736#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071437#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394736#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.362186+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.578465+00:00", "publish_state": "published" } } diff --git a/data/test-results/langflow.json b/data/test-results/langflow.json index 5e98aa947b..9159a27ec5 100644 --- a/data/test-results/langflow.json +++ b/data/test-results/langflow.json @@ -5,10 +5,10 @@ "version": "0.0.31" }, "run": { - "id": "25877427741", + "id": "26658731236", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218970", - "timestamp": "2026-05-14T18:19:08Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529761", + "timestamp": "2026-05-29T19:49:14Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Package installed", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218970#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529761#step:7:1" }, { "name": "Test 2 - Version metadata matches baseline", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218970#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529761#step:8:1" }, { "name": "Test 3 - Installed files metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218970#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529761#step:9:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218970#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529761#step:10:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218970#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529761#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 27, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218970#step:12:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529761#step:12:1", "current_version": "0.0.31", "latest_version": "0.0.32", "next_installed_version": "0.0.32", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.362402+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.578635+00:00", "publish_state": "published" } } diff --git a/data/test-results/lapack.json b/data/test-results/lapack.json index 94127e467e..52cd8ff2cb 100644 --- a/data/test-results/lapack.json +++ b/data/test-results/lapack.json @@ -5,10 +5,10 @@ "version": "3.12.0-3build1.1" }, "run": { - "id": "25877379982", + "id": "26658688675", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057246", - "timestamp": "2026-05-14T18:18:05Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380798", + "timestamp": "2026-05-29T19:48:15Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Library Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057246#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380798#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057246#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380798#step:7:1" }, { "name": "Test 3 - Check Build Configuration", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057246#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380798#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057246#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380798#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057246#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380798#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057246#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380798#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.362632+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.578813+00:00", "publish_state": "published" } } diff --git a/data/test-results/lepton-eda.json b/data/test-results/lepton-eda.json index 83705e81ed..8df41a2dd6 100644 --- a/data/test-results/lepton-eda.json +++ b/data/test-results/lepton-eda.json @@ -5,10 +5,10 @@ "version": "1.9.18-2build2" }, "run": { - "id": "25877427741", + "id": "26658731236", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218755", - "timestamp": "2026-05-14T18:19:09Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529798", + "timestamp": "2026-05-29T19:49:11Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 28, + "duration_seconds": 27, "details": [ { "name": "Test 1 - Package-manager install evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218755#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529798#step:6:1" }, { "name": "Test 2 - Installed Arm64 package metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218755#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529798#step:7:1" }, { "name": "Test 3 - CLI version starts on Arm", "status": "passed", - "duration_seconds": 28, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218755#step:8:1" + "duration_seconds": 27, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529798#step:8:1" }, { "name": "Test 4 - Arm64 runner gate", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218755#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529798#step:9:1" }, { "name": "Test 5 - Headless runtime smoke", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218755#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529798#step:10:1" }, { "name": "Test 6 - Regression validation applicability", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218755#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529798#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.362855+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.578992+00:00", "publish_state": "published" } } diff --git a/data/test-results/leveldb.json b/data/test-results/leveldb.json index f96f7b8f2a..292953c53b 100644 --- a/data/test-results/leveldb.json +++ b/data/test-results/leveldb.json @@ -5,10 +5,10 @@ "version": "1.23-5build1" }, "run": { - "id": "25877392111", + "id": "26658699892", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096551", - "timestamp": "2026-05-14T18:18:23Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420861", + "timestamp": "2026-05-29T19:48:30Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -25,38 +25,38 @@ { "name": "Test 1 - Check Header Existence", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096551#step:6:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420861#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096551#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420861#step:7:1" }, { "name": "Test 3 - Check Configuration or Linkage", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096551#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420861#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096551#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420861#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096551#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420861#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096551#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420861#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.363052+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.579181+00:00", "publish_state": "published" } } diff --git a/data/test-results/libXext.json b/data/test-results/libXext.json index 3290abe450..52b7da70a5 100644 --- a/data/test-results/libXext.json +++ b/data/test-results/libXext.json @@ -5,10 +5,10 @@ "version": "1.3.4" }, "run": { - "id": "25877419588", + "id": "26658724696", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192403", - "timestamp": "2026-05-14T18:18:59Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504196", + "timestamp": "2026-05-29T19:49:01Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 1, + "duration_seconds": 2, "details": [ { "name": "Test 1 - Check header installation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192403#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504196#step:6:1" }, { "name": "Test 2 - Check version metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192403#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504196#step:7:1" }, { "name": "Test 3 - Check pkg-config flags", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192403#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504196#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192403#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504196#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192403#step:10:1" + "duration_seconds": 2, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504196#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192403#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504196#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.363249+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.579394+00:00", "publish_state": "published" } } diff --git a/data/test-results/libaom.json b/data/test-results/libaom.json index 26d7798b84..50039ee6c5 100644 --- a/data/test-results/libaom.json +++ b/data/test-results/libaom.json @@ -5,10 +5,10 @@ "version": "3.8.2" }, "run": { - "id": "25877359516", + "id": "26658670904", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991138", - "timestamp": "2026-05-14T18:17:44Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321649", + "timestamp": "2026-05-29T19:47:53Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -25,38 +25,38 @@ { "name": "Test 1 - Check Libaom library exists", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991138#step:6:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321649#step:6:1" }, { "name": "Test 2 - Check Libaom header files", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991138#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321649#step:7:1" }, { "name": "Test 3 - Verify Architecture Linkage", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991138#step:8:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321649#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991138#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321649#step:9:1" }, { "name": "Test 5 - Functional Validation (C Compilation Test)", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991138#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321649#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991138#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321649#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.363453+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.579577+00:00", "publish_state": "published" } } diff --git a/data/test-results/libconfig.json b/data/test-results/libconfig.json index 5ee3ab6dd6..cee3922c84 100644 --- a/data/test-results/libconfig.json +++ b/data/test-results/libconfig.json @@ -5,10 +5,10 @@ "version": "1.5.0" }, "run": { - "id": "25877427741", + "id": "26658731236", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217750", - "timestamp": "2026-05-14T18:19:06Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575528437", + "timestamp": "2026-05-29T19:49:10Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check header files exist", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217750#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575528437#step:6:1" }, { "name": "Test 2 - Compile C example", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217750#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575528437#step:7:1" }, { "name": "Test 3 - Run compiled example", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217750#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575528437#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217750#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575528437#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217750#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575528437#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217750#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575528437#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.363669+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.579757+00:00", "publish_state": "published" } } diff --git a/data/test-results/libdrm.json b/data/test-results/libdrm.json index 580054ccdd..c05acfe0c3 100644 --- a/data/test-results/libdrm.json +++ b/data/test-results/libdrm.json @@ -5,10 +5,10 @@ "version": "2.4.125" }, "run": { - "id": "25877419588", + "id": "26658724696", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192656", - "timestamp": "2026-05-14T18:19:08Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504033", + "timestamp": "2026-05-29T19:49:01Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check header installation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192656#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504033#step:6:1" }, { "name": "Test 2 - Check version metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192656#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504033#step:7:1" }, { "name": "Test 3 - Check pkg-config flags", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192656#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504033#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192656#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504033#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192656#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504033#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192656#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504033#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.363875+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.579940+00:00", "publish_state": "published" } } diff --git a/data/test-results/libev.json b/data/test-results/libev.json index e0321e7b50..3e7f7de244 100644 --- a/data/test-results/libev.json +++ b/data/test-results/libev.json @@ -5,10 +5,10 @@ "version": "1:4.33-2.1build1" }, "run": { - "id": "25877406767", + "id": "26658714432", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155531", - "timestamp": "2026-05-14T18:18:44Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469267", + "timestamp": "2026-05-29T19:48:48Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 0, + "duration_seconds": 1, "details": [ { "name": "Test 1 - Check headers and library are present", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155531#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469267#step:6:1" }, { "name": "Test 2 - Check package version", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155531#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469267#step:7:1" }, { "name": "Test 3 - Check API surface", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155531#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469267#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155531#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469267#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155531#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469267#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155531#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469267#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.364080+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.580113+00:00", "publish_state": "published" } } diff --git a/data/test-results/libevent.json b/data/test-results/libevent.json index da3ebf59d0..a5153d43d8 100644 --- a/data/test-results/libevent.json +++ b/data/test-results/libevent.json @@ -5,10 +5,10 @@ "version": "2.1.12-stable" }, "run": { - "id": "25877423406", + "id": "26658727918", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210190", - "timestamp": "2026-05-14T18:19:01Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515029", + "timestamp": "2026-05-29T19:49:05Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check header installation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210190#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515029#step:6:1" }, { "name": "Test 2 - Check version metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210190#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515029#step:7:1" }, { "name": "Test 3 - Check pkg-config flags", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210190#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515029#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210190#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515029#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210190#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515029#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210190#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515029#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.364295+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.580319+00:00", "publish_state": "published" } } diff --git a/data/test-results/libfastcommon.json b/data/test-results/libfastcommon.json index c7aeca2488..0cea8c0cdb 100644 --- a/data/test-results/libfastcommon.json +++ b/data/test-results/libfastcommon.json @@ -5,10 +5,10 @@ "version": "1.0.84" }, "run": { - "id": "25877383844", + "id": "26658692522", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071242", - "timestamp": "2026-05-14T18:18:12Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394324", + "timestamp": "2026-05-29T19:48:20Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 5, "failed": 0, "skipped": 1, - "duration_seconds": 26, + "duration_seconds": 29, "details": [ { "name": "Test 1 - Check Library Artifacts", "status": "passed", - "duration_seconds": 26, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071242#step:6:1" + "duration_seconds": 29, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394324#step:6:1" }, { "name": "Test 2 - Check Version Provenance", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071242#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394324#step:7:1" }, { "name": "Test 3 - Check Header Configuration", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071242#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394324#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071242#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394324#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071242#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394324#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "skipped", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071242#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394324#step:11:1", "current_version": "1.0.84", "latest_version": "1.0.84", "next_installed_version": "1.0.84", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "skipped", "regression_decision": "no_newer_stable_available", - "production_refreshed_at": "2026-05-14T19:37:17.364504+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.580498+00:00", "publish_state": "published" } } diff --git a/data/test-results/libgav1.json b/data/test-results/libgav1.json index 05efed7bf3..5f8aa77441 100644 --- a/data/test-results/libgav1.json +++ b/data/test-results/libgav1.json @@ -5,10 +5,10 @@ "version": "0.18.0" }, "run": { - "id": "25877423406", + "id": "26658727918", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210333", - "timestamp": "2026-05-14T18:19:05Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515963", + "timestamp": "2026-05-29T19:49:05Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 2, + "duration_seconds": 1, "details": [ { "name": "Test 1 - Check header installation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210333#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515963#step:6:1" }, { "name": "Test 2 - Check version metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210333#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515963#step:7:1" }, { "name": "Test 3 - Check pkg-config flags", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210333#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515963#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210333#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515963#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210333#step:10:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515963#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210333#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515963#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.364837+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.580773+00:00", "publish_state": "published" } } diff --git a/data/test-results/libhelium.json b/data/test-results/libhelium.json index 9332eb7cc9..7796b11a29 100644 --- a/data/test-results/libhelium.json +++ b/data/test-results/libhelium.json @@ -5,10 +5,10 @@ "version": "1.1.0" }, "run": { - "id": "25877375677", + "id": "26658685142", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045223", - "timestamp": "2026-05-14T18:18:04Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370891", + "timestamp": "2026-05-29T19:48:11Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Artifact Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045223#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370891#step:6:1" }, { "name": "Test 2 - Version Check", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045223#step:7:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370891#step:7:1" }, { "name": "Test 3 - Configuration Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045223#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370891#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045223#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370891#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045223#step:10:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370891#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 11, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045223#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370891#step:11:1", "current_version": "1.1.0", "latest_version": "1.1.1", "next_installed_version": "1", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.365063+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.580964+00:00", "publish_state": "published" } } diff --git a/data/test-results/libjpeg.json b/data/test-results/libjpeg.json index cd58fcbf0d..81147669d9 100644 --- a/data/test-results/libjpeg.json +++ b/data/test-results/libjpeg.json @@ -5,10 +5,10 @@ "version": "8c" }, "run": { - "id": "25877423406", + "id": "26658727918", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209907", - "timestamp": "2026-05-14T18:19:08Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575514988", + "timestamp": "2026-05-29T19:49:05Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 4, + "duration_seconds": 1, "details": [ { "name": "Test 1 - Check header installation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209907#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575514988#step:6:1" }, { "name": "Test 2 - Check version metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209907#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575514988#step:7:1" }, { "name": "Test 3 - Check shared library registration", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209907#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575514988#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209907#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575514988#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 4, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209907#step:10:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575514988#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209907#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575514988#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.365281+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.581146+00:00", "publish_state": "published" } } diff --git a/data/test-results/libmpc.json b/data/test-results/libmpc.json index 77f42d1505..dbbbc46b4f 100644 --- a/data/test-results/libmpc.json +++ b/data/test-results/libmpc.json @@ -5,10 +5,10 @@ "version": "1.3.1-1build1.1" }, "run": { - "id": "25877383844", + "id": "26658692522", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048070561", - "timestamp": "2026-05-14T18:18:12Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575393122", + "timestamp": "2026-05-29T19:48:20Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Library Artifacts", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048070561#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575393122#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048070561#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575393122#step:7:1" }, { "name": "Test 3 - Check Header Configuration", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048070561#step:8:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575393122#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048070561#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575393122#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048070561#step:10:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575393122#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048070561#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575393122#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.365453+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.581343+00:00", "publish_state": "published" } } diff --git a/data/test-results/libopus.json b/data/test-results/libopus.json index 5c9dfd172e..3980231fb8 100644 --- a/data/test-results/libopus.json +++ b/data/test-results/libopus.json @@ -5,10 +5,10 @@ "version": "1.5.1" }, "run": { - "id": "25877403044", + "id": "26658710721", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140738", - "timestamp": "2026-05-14T18:18:36Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456279", + "timestamp": "2026-05-29T19:48:44Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 32, + "duration_seconds": 33, "details": [ { "name": "Test 1 - Check headers and library artifacts exist", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140738#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456279#step:6:1" }, { "name": "Test 2 - Check version output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140738#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456279#step:7:1" }, { "name": "Test 3 - Check API surface", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140738#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456279#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140738#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456279#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140738#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456279#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 32, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140738#step:11:1", + "duration_seconds": 33, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456279#step:11:1", "current_version": "1.5.1", "latest_version": "1.5.2", "next_installed_version": "1.5.2", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.365654+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.581535+00:00", "publish_state": "published" } } diff --git a/data/test-results/liboqs.json b/data/test-results/liboqs.json index 19566bb2f1..2fe2b827e9 100644 --- a/data/test-results/liboqs.json +++ b/data/test-results/liboqs.json @@ -5,10 +5,10 @@ "version": "0.12.0" }, "run": { - "id": "25877383844", + "id": "26658692522", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071400", - "timestamp": "2026-05-14T18:18:11Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394299", + "timestamp": "2026-05-29T19:48:19Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 41, + "duration_seconds": 42, "details": [ { "name": "Test 1 - Check Header Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071400#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394299#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071400#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394299#step:7:1" }, { "name": "Test 3 - Check Configuration or Linkage", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071400#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394299#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071400#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394299#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071400#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394299#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 41, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071400#step:11:1", + "duration_seconds": 42, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394299#step:11:1", "current_version": "0.12.0", "latest_version": "0.13.0", "next_installed_version": "0.13.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.365883+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.581717+00:00", "publish_state": "published" } } diff --git a/data/test-results/libpcap.json b/data/test-results/libpcap.json index b0ad20164c..e971ef9d57 100644 --- a/data/test-results/libpcap.json +++ b/data/test-results/libpcap.json @@ -5,10 +5,10 @@ "version": "1.10.4" }, "run": { - "id": "25877395502", + "id": "26658703674", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110099", - "timestamp": "2026-05-14T18:18:26Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433033", + "timestamp": "2026-05-29T19:48:34Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110099#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433033#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110099#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433033#step:7:1" }, { "name": "Test 3 - Check Help Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110099#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433033#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110099#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433033#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110099#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433033#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110099#step:11:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433033#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.366098+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.581906+00:00", "publish_state": "published" } } diff --git a/data/test-results/librecad.json b/data/test-results/librecad.json index e615639204..6a22f43c6c 100644 --- a/data/test-results/librecad.json +++ b/data/test-results/librecad.json @@ -5,10 +5,10 @@ "version": "2.2.1.1" }, "run": { - "id": "25877427741", + "id": "26658731236", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218978", - "timestamp": "2026-05-14T18:19:11Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529619", + "timestamp": "2026-05-29T19:49:14Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 26, + "duration_seconds": 22, "details": [ { "name": "Test 1 - Baseline package evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218978#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529619#step:7:1" }, { "name": "Test 2 - Baseline version and release alignment", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218978#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529619#step:8:1" }, { "name": "Test 3 - Package-specific source or docs evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218978#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529619#step:9:1" }, { "name": "Test 4 - Arm64 support gate", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218978#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529619#step:10:1" }, { "name": "Test 5 - Bounded package-specific smoke", "status": "passed", "duration_seconds": 5, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218978#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529619#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 26, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218978#step:12:1", + "duration_seconds": 22, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529619#step:12:1", "current_version": "2.2.1.1", "latest_version": "2.2.1.5", "next_installed_version": "2.2.1.5", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.366280+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.582082+00:00", "publish_state": "published" } } diff --git a/data/test-results/libreoffice.json b/data/test-results/libreoffice.json index 3dd57ac1b8..6e2f850cec 100644 --- a/data/test-results/libreoffice.json +++ b/data/test-results/libreoffice.json @@ -5,10 +5,10 @@ "version": "24.2.7.2" }, "run": { - "id": "25877383844", + "id": "26658692522", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071316", - "timestamp": "2026-05-14T18:18:11Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394705", + "timestamp": "2026-05-29T19:48:18Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check libreoffice binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071316#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394705#step:6:1" }, { "name": "Test 2 - Check libreoffice version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071316#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394705#step:7:1" }, { "name": "Test 3 - Check libreoffice help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071316#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394705#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071316#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394705#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071316#step:10:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394705#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071316#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394705#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.366461+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.582285+00:00", "publish_state": "published" } } diff --git a/data/test-results/librepcb.json b/data/test-results/librepcb.json index 248c160ff2..58cf66be85 100644 --- a/data/test-results/librepcb.json +++ b/data/test-results/librepcb.json @@ -2,13 +2,13 @@ "schema_version": "2.0", "package": { "name": "LibrePCB", - "version": "2.0.1-2" + "version": "2.1.0-1" }, "run": { - "id": "25877427741", + "id": "26658731236", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218935", - "timestamp": "2026-05-14T18:19:05Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529355", + "timestamp": "2026-05-29T19:49:14Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Package-manager install evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218935#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529355#step:6:1" }, { "name": "Test 2 - Installed Arm64 snap metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218935#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529355#step:7:1" }, { "name": "Test 3 - CLI version starts on Arm", "status": "passed", "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218935#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529355#step:8:1" }, { "name": "Test 4 - Arm64 runner gate", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218935#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529355#step:9:1" }, { "name": "Test 5 - Headless runtime smoke", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218935#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529355#step:10:1" }, { "name": "Test 6 - Regression validation applicability", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218935#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529355#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.366683+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.582471+00:00", "publish_state": "published" } } diff --git a/data/test-results/libunwind.json b/data/test-results/libunwind.json index c83e8b2585..3aa77dd703 100644 --- a/data/test-results/libunwind.json +++ b/data/test-results/libunwind.json @@ -5,10 +5,10 @@ "version": "1.6.2" }, "run": { - "id": "25877359516", + "id": "26658670904", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991025", - "timestamp": "2026-05-14T18:17:44Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321839", + "timestamp": "2026-05-29T19:47:53Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 30, + "duration_seconds": 10, "details": [ { "name": "Test 1 - Check Libunwind library exists", "status": "passed", - "duration_seconds": 26, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991025#step:6:1" + "duration_seconds": 8, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321839#step:6:1" }, { "name": "Test 2 - Check Libunwind header files", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991025#step:7:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321839#step:7:1" }, { "name": "Test 3 - Verify Architecture Linkage", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991025#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321839#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991025#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321839#step:9:1" }, { "name": "Test 5 - Functional Validation (C Compilation Test)", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991025#step:10:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321839#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991025#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321839#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.366922+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.582645+00:00", "publish_state": "published" } } diff --git a/data/test-results/libuv.json b/data/test-results/libuv.json index 316cbaa893..a0d2325ecb 100644 --- a/data/test-results/libuv.json +++ b/data/test-results/libuv.json @@ -5,10 +5,10 @@ "version": "1.48.0" }, "run": { - "id": "25877363365", + "id": "26658674448", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001013", - "timestamp": "2026-05-14T18:17:47Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334889", + "timestamp": "2026-05-29T19:47:56Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 2, + "duration_seconds": 1, "details": [ { "name": "Test 1 - Check libuv library exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001013#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334889#step:6:1" }, { "name": "Test 2 - Check libuv headers exist", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001013#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334889#step:7:1" }, { "name": "Test 3 - Check libuv pkg-config", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001013#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334889#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001013#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334889#step:9:1" }, { "name": "Test 5 - Functional Validation (Compile tiny program)", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001013#step:10:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334889#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001013#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334889#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.367122+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.582814+00:00", "publish_state": "published" } } diff --git a/data/test-results/libvirt.json b/data/test-results/libvirt.json index 040a246f63..aefc3f2fb9 100644 --- a/data/test-results/libvirt.json +++ b/data/test-results/libvirt.json @@ -5,10 +5,10 @@ "version": "10.0.0" }, "run": { - "id": "25877387746", + "id": "26658696365", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084441", - "timestamp": "2026-05-14T18:18:20Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407674", + "timestamp": "2026-05-29T19:48:25Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084441#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407674#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084441#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407674#step:7:1" }, { "name": "Test 3 - Check Help Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084441#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407674#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084441#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407674#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084441#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407674#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084441#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407674#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.367305+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.582982+00:00", "publish_state": "published" } } diff --git a/data/test-results/libvpx.json b/data/test-results/libvpx.json index 26ea1a2317..f5a400bffc 100644 --- a/data/test-results/libvpx.json +++ b/data/test-results/libvpx.json @@ -5,10 +5,10 @@ "version": "1.14.0" }, "run": { - "id": "25877403044", + "id": "26658710721", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140713", - "timestamp": "2026-05-14T18:18:37Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456084", + "timestamp": "2026-05-29T19:48:42Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140713#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456084#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140713#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456084#step:7:1" }, { "name": "Test 3 - Check Help Output or Configuration", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140713#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456084#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140713#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456084#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140713#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456084#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140713#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456084#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.367507+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.583148+00:00", "publish_state": "published" } } diff --git a/data/test-results/libx264.json b/data/test-results/libx264.json index 38e25492b4..22421bda01 100644 --- a/data/test-results/libx264.json +++ b/data/test-results/libx264.json @@ -5,10 +5,10 @@ "version": "0.164.3108" }, "run": { - "id": "25877367704", + "id": "26658677990", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026729", - "timestamp": "2026-05-14T18:17:55Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347557", + "timestamp": "2026-05-29T19:48:03Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check x264 binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026729#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347557#step:6:1" }, { "name": "Test 2 - Check x264 version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026729#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347557#step:7:1" }, { "name": "Test 3 - Check x264 help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026729#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347557#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026729#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347557#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026729#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347557#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026729#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347557#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.367686+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.583350+00:00", "publish_state": "published" } } diff --git a/data/test-results/libx265.json b/data/test-results/libx265.json index f27b2d6f13..520cb6ed14 100644 --- a/data/test-results/libx265.json +++ b/data/test-results/libx265.json @@ -5,10 +5,10 @@ "version": "3.6" }, "run": { - "id": "25877371674", + "id": "26658681575", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031039", - "timestamp": "2026-05-14T18:17:59Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357257", + "timestamp": "2026-05-29T19:48:07Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check x265 binary and headers", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031039#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357257#step:6:1" }, { "name": "Test 2 - Check x265 version output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031039#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357257#step:7:1" }, { "name": "Test 3 - Check x265 help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031039#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357257#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031039#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357257#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031039#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357257#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 38, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031039#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357257#step:11:1", "current_version": "3.6", "latest_version": "4.0", "next_installed_version": "4.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.367922+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.583532+00:00", "publish_state": "published" } } diff --git a/data/test-results/libxcb.json b/data/test-results/libxcb.json index e6303a61e1..a197d6f604 100644 --- a/data/test-results/libxcb.json +++ b/data/test-results/libxcb.json @@ -5,10 +5,10 @@ "version": "1.15" }, "run": { - "id": "25877419588", + "id": "26658724696", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192525", - "timestamp": "2026-05-14T18:18:59Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504080", + "timestamp": "2026-05-29T19:49:02Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 2, + "duration_seconds": 1, "details": [ { "name": "Test 1 - Check header installation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192525#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504080#step:6:1" }, { "name": "Test 2 - Check version metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192525#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504080#step:7:1" }, { "name": "Test 3 - Check pkg-config flags", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192525#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504080#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192525#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504080#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192525#step:10:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504080#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192525#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504080#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.368140+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.583720+00:00", "publish_state": "published" } } diff --git a/data/test-results/libxml2.json b/data/test-results/libxml2.json index 2d106bd463..beee4db606 100644 --- a/data/test-results/libxml2.json +++ b/data/test-results/libxml2.json @@ -5,10 +5,10 @@ "version": "2.9.14" }, "run": { - "id": "25877375677", + "id": "26658685142", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044731", - "timestamp": "2026-05-14T18:18:02Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370539", + "timestamp": "2026-05-29T19:48:11Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 2, + "duration_seconds": 1, "details": [ { "name": "Test 1 - Artifact Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044731#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370539#step:6:1" }, { "name": "Test 2 - Version Check", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044731#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370539#step:7:1" }, { "name": "Test 3 - Help Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044731#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370539#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044731#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370539#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044731#step:10:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370539#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044731#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370539#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.368348+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.583902+00:00", "publish_state": "published" } } diff --git a/data/test-results/liferay.json b/data/test-results/liferay.json index 456a90d477..552d1f7204 100644 --- a/data/test-results/liferay.json +++ b/data/test-results/liferay.json @@ -5,10 +5,10 @@ "version": "0.2.0" }, "run": { - "id": "25877415436", + "id": "26658721315", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179708", - "timestamp": "2026-05-14T18:18:50Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575490859", + "timestamp": "2026-05-29T19:48:55Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check liferay binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179708#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575490859#step:6:1" }, { "name": "Test 2 - Check version output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179708#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575490859#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179708#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575490859#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179708#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575490859#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179708#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575490859#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179708#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575490859#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.368550+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.584084+00:00", "publish_state": "published" } } diff --git a/data/test-results/lightgbm.json b/data/test-results/lightgbm.json index 60f042f0d1..31acc749f9 100644 --- a/data/test-results/lightgbm.json +++ b/data/test-results/lightgbm.json @@ -5,10 +5,10 @@ "version": "4.6.0" }, "run": { - "id": "25877371674", + "id": "26658681575", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031883", - "timestamp": "2026-05-14T18:17:58Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358608", + "timestamp": "2026-05-29T19:48:08Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -25,38 +25,38 @@ { "name": "Test 1 - Import LightGBM", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031883#step:6:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358608#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031883#step:7:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358608#step:7:1" }, { "name": "Test 3 - Check Module Help Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031883#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358608#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031883#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358608#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031883#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358608#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031883#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358608#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.368763+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.584271+00:00", "publish_state": "published" } } diff --git a/data/test-results/lighttpd.json b/data/test-results/lighttpd.json index 031ec70170..35f659cc43 100644 --- a/data/test-results/lighttpd.json +++ b/data/test-results/lighttpd.json @@ -5,10 +5,10 @@ "version": "1.4.74" }, "run": { - "id": "25877383844", + "id": "26658692522", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048070578", - "timestamp": "2026-05-14T18:18:13Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575393190", + "timestamp": "2026-05-29T19:48:20Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048070578#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575393190#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048070578#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575393190#step:7:1" }, { "name": "Test 3 - Check Help Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048070578#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575393190#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048070578#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575393190#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048070578#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575393190#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048070578#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575393190#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.368976+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.584460+00:00", "publish_state": "published" } } diff --git a/data/test-results/lima.json b/data/test-results/lima.json index 09213688a5..20f52f7d8c 100644 --- a/data/test-results/lima.json +++ b/data/test-results/lima.json @@ -5,10 +5,10 @@ "version": "0.1.1" }, "run": { - "id": "25877427741", + "id": "26658731236", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218846", - "timestamp": "2026-05-14T18:19:11Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529691", + "timestamp": "2026-05-29T19:49:12Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Baseline package evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218846#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529691#step:7:1" }, { "name": "Test 2 - Baseline version and release alignment", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218846#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529691#step:8:1" }, { "name": "Test 3 - Package-specific source or docs evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218846#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529691#step:9:1" }, { "name": "Test 4 - Arm64 support gate", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218846#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529691#step:10:1" }, { "name": "Test 5 - Bounded package-specific smoke", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218846#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529691#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218846#step:12:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529691#step:12:1", "current_version": "0.1.1", "latest_version": "2.1.1", "next_installed_version": "2.1.1", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.369182+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.584640+00:00", "publish_state": "published" } } diff --git a/data/test-results/lime.json b/data/test-results/lime.json index 9195fdcf24..236245db5a 100644 --- a/data/test-results/lime.json +++ b/data/test-results/lime.json @@ -5,10 +5,10 @@ "version": "0.1.1.1" }, "run": { - "id": "25877427741", + "id": "26658731236", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048219121", - "timestamp": "2026-05-14T18:19:12Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529563", + "timestamp": "2026-05-29T19:49:11Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 16, + "duration_seconds": 15, "details": [ { "name": "Test 1 - Package installed", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048219121#step:7:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529563#step:7:1" }, { "name": "Test 2 - Version metadata matches baseline", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048219121#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529563#step:8:1" }, { "name": "Test 3 - Installed files metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048219121#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529563#step:9:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048219121#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529563#step:10:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048219121#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529563#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 15, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048219121#step:12:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529563#step:12:1", "current_version": "0.1.1.1", "latest_version": "0.1.1.2", "next_installed_version": "0.1.1.2", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.369394+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.584832+00:00", "publish_state": "published" } } diff --git a/data/test-results/linkerd.json b/data/test-results/linkerd.json index e145352778..7d9359b1a9 100644 --- a/data/test-results/linkerd.json +++ b/data/test-results/linkerd.json @@ -5,10 +5,10 @@ "version": "stable-2.14.9" }, "run": { - "id": "25877406767", + "id": "26658714432", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154511", - "timestamp": "2026-05-14T18:18:44Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468594", + "timestamp": "2026-05-29T19:48:49Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Linkerd binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154511#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468594#step:6:1" }, { "name": "Test 2 - Check version output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154511#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468594#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154511#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468594#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154511#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468594#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154511#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468594#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154511#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468594#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.369685+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.585099+00:00", "publish_state": "published" } } diff --git a/data/test-results/linstor-server.json b/data/test-results/linstor-server.json index 10cbf9f617..a1efa1ad82 100644 --- a/data/test-results/linstor-server.json +++ b/data/test-results/linstor-server.json @@ -5,10 +5,10 @@ "version": "1.33.1-101-87a659de4" }, "run": { - "id": "25877387746", + "id": "26658696365", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083655", - "timestamp": "2026-05-14T18:18:15Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407841", + "timestamp": "2026-05-29T19:48:25Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,49 +20,49 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 97, + "duration_seconds": 103, "details": [ { "name": "Test 1 - Check recursive build artifacts", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083655#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407841#step:6:1" }, { "name": "Test 2 - Check exact version metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083655#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407841#step:7:1" }, { "name": "Test 3 - Check Controller distribution help", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083655#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407841#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083655#step:9:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407841#step:9:1" }, { "name": "Test 5 - Check Satellite distribution help", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083655#step:10:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407841#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 97, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083655#step:11:1", + "duration_seconds": 102, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407841#step:11:1", "current_version": "1.33.1-101-87a659de4", - "latest_version": "master-ff59f6933", - "next_installed_version": "1.33.1-183-ff59f6933", + "latest_version": "master-ca3970a6b", + "next_installed_version": "1.34.0-rc.1", "decision": "next_install_validated", "regression_result": "Next version installed successfully on Arm64", - "comparison": "Current LINSTOR baseline commit 87a659de4 passed Tests 1-5, and the next newer default-branch commit ff59f6933 built successfully with controller and satellite distributions on Arm64." + "comparison": "Current LINSTOR baseline commit 87a659de4 passed Tests 1-5, and the next newer default-branch commit ca3970a6b built successfully with controller and satellite distributions on Arm64." } ] }, @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.369916+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.585291+00:00", "publish_state": "published" } } diff --git a/data/test-results/linuxkit.json b/data/test-results/linuxkit.json index 89511ae54e..fd0207507d 100644 --- a/data/test-results/linuxkit.json +++ b/data/test-results/linuxkit.json @@ -5,10 +5,10 @@ "version": "1.5.3" }, "run": { - "id": "25877419588", + "id": "26658724696", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192423", - "timestamp": "2026-05-14T18:18:55Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504176", + "timestamp": "2026-05-29T19:49:01Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 13, + "duration_seconds": 18, "details": [ { "name": "Test 1 - Check linuxkit binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192423#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504176#step:6:1" }, { "name": "Test 2 - Check linuxkit version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192423#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504176#step:7:1" }, { "name": "Test 3 - Check linuxkit help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192423#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504176#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192423#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504176#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 12, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192423#step:10:1" + "duration_seconds": 17, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504176#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192423#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504176#step:11:1", "current_version": "1.5.3", "latest_version": "1.6.0", "next_installed_version": "1.6.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.370141+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.585494+00:00", "publish_state": "published" } } diff --git a/data/test-results/litespeed_openlitespeed.json b/data/test-results/litespeed_openlitespeed.json index 8e25de55e8..a12288b244 100644 --- a/data/test-results/litespeed_openlitespeed.json +++ b/data/test-results/litespeed_openlitespeed.json @@ -5,10 +5,10 @@ "version": "1.7.17" }, "run": { - "id": "25877411197", + "id": "26658717942", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175313", - "timestamp": "2026-05-14T18:18:52Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479791", + "timestamp": "2026-05-29T19:48:52Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 13, + "duration_seconds": 11, "details": [ { "name": "Test 1 - Check OpenLiteSpeed binaries exist", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175313#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479791#step:6:1" }, { "name": "Test 2 - Check version command", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175313#step:7:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479791#step:7:1" }, { "name": "Test 3 - Check configuration exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175313#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479791#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175313#step:9:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479791#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 6, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175313#step:10:1" + "duration_seconds": 3, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479791#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 7, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175313#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479791#step:11:1", "current_version": "1.7.17", "latest_version": "1.7.18", "next_installed_version": "1.7.18", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.370349+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.585693+00:00", "publish_state": "published" } } diff --git a/data/test-results/litex.json b/data/test-results/litex.json index f41970f3ea..7197715f0a 100644 --- a/data/test-results/litex.json +++ b/data/test-results/litex.json @@ -5,10 +5,10 @@ "version": "2022.12" }, "run": { - "id": "25877427741", + "id": "26658731236", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218880", - "timestamp": "2026-05-14T18:19:11Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529843", + "timestamp": "2026-05-29T19:49:10Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,40 +26,40 @@ "name": "Test 1 - Baseline package evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218880#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529843#step:7:1" }, { "name": "Test 2 - Baseline version and release alignment", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218880#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529843#step:8:1" }, { "name": "Test 3 - Package-specific source or docs evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218880#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529843#step:9:1" }, { "name": "Test 4 - Arm64 support gate", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218880#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529843#step:10:1" }, { "name": "Test 5 - Bounded package-specific smoke", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218880#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529843#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218880#step:12:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529843#step:12:1", "current_version": "2022.12", - "latest_version": "2025.12", - "next_installed_version": "2025.12", + "latest_version": "2026.04", + "next_installed_version": "2026.04", "decision": "limited_cpu_smoke_validated", "regression_result": "Arm preflight proof passed on Arm64", "comparison": "A bounded Arm64 CPU-side Python compile probe validated the next LiteX source checkout. This does not install LiteX or exercise FPGA toolchain flows." @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.370556+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.585871+00:00", "publish_state": "published" } } diff --git a/data/test-results/litmus.json b/data/test-results/litmus.json index e8524cb6c0..46dfad69fd 100644 --- a/data/test-results/litmus.json +++ b/data/test-results/litmus.json @@ -5,10 +5,10 @@ "version": "3.25.0" }, "run": { - "id": "25877419588", + "id": "26658724696", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192211", - "timestamp": "2026-05-14T18:18:57Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504114", + "timestamp": "2026-05-29T19:49:02Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check release manifest and image pulls", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192211#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504114#step:6:1" }, { "name": "Test 2 - Check chaos operator runtime probe", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192211#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504114#step:7:1" }, { "name": "Test 3 - Check chaos runner runtime probe", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192211#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504114#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192211#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504114#step:9:1" }, { "name": "Test 5 - Check portal image references and architecture", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192211#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504114#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192211#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504114#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.370763+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.586053+00:00", "publish_state": "published" } } diff --git a/data/test-results/llama-index.json b/data/test-results/llama-index.json index 56c7b365fb..5d4d8af55c 100644 --- a/data/test-results/llama-index.json +++ b/data/test-results/llama-index.json @@ -2,13 +2,13 @@ "schema_version": "2.0", "package": { "name": "LLama-Index", - "version": "0.14.21" + "version": "0.14.22" }, "run": { - "id": "25877403044", + "id": "26658710721", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140563", - "timestamp": "2026-05-14T18:18:40Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456197", + "timestamp": "2026-05-29T19:48:43Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -25,38 +25,38 @@ { "name": "Test 1 - Check module import", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140563#step:6:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456197#step:6:1" }, { "name": "Test 2 - Check version output", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140563#step:7:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456197#step:7:1" }, { "name": "Test 3 - Check API surface", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140563#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456197#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140563#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456197#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140563#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456197#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140563#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456197#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.370971+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.586233+00:00", "publish_state": "published" } } diff --git a/data/test-results/llamaindex.json b/data/test-results/llamaindex.json index bc4d5b71b3..41f74db478 100644 --- a/data/test-results/llamaindex.json +++ b/data/test-results/llamaindex.json @@ -2,13 +2,13 @@ "schema_version": "2.0", "package": { "name": "LlamaIndex Core", - "version": "0.14.21" + "version": "0.14.22" }, "run": { - "id": "25877367704", + "id": "26658677990", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026689", - "timestamp": "2026-05-14T18:17:55Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346917", + "timestamp": "2026-05-29T19:48:06Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check pip package metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026689#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346917#step:6:1" }, { "name": "Test 2 - Check core import and version", "status": "passed", "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026689#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346917#step:7:1" }, { "name": "Test 3 - Check core module import", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026689#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346917#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026689#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346917#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026689#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346917#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026689#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346917#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.371180+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.586437+00:00", "publish_state": "published" } } diff --git a/data/test-results/llm-d.json b/data/test-results/llm-d.json index b504d662e7..9cba6b6d51 100644 --- a/data/test-results/llm-d.json +++ b/data/test-results/llm-d.json @@ -5,10 +5,10 @@ "version": "0.3.1" }, "run": { - "id": "25877427741", + "id": "26658731236", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218738", - "timestamp": "2026-05-14T18:19:05Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529616", + "timestamp": "2026-05-29T19:49:14Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check package-specific baseline markers", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218738#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529616#step:7:1" }, { "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218738#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529616#step:8:1" }, { "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218738#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529616#step:9:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218738#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529616#step:10:1" }, { "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218738#step:11:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529616#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218738#step:12:1", + "duration_seconds": 2, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529616#step:12:1", "current_version": "0.3.1", "latest_version": "0.7.0", "next_installed_version": "0.7.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.371402+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.586617+00:00", "publish_state": "published" } } diff --git a/data/test-results/llvm.json b/data/test-results/llvm.json index 97f4e5d7f4..a900800b1a 100644 --- a/data/test-results/llvm.json +++ b/data/test-results/llvm.json @@ -5,10 +5,10 @@ "version": "18.1.3" }, "run": { - "id": "25877395502", + "id": "26658703674", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109507", - "timestamp": "2026-05-14T18:18:25Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432861", + "timestamp": "2026-05-29T19:48:34Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check llvm-config binary", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109507#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432861#step:6:1" }, { "name": "Test 2 - Check clang binary", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109507#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432861#step:7:1" }, { "name": "Test 3 - Compile simple C program", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109507#step:8:1" + "duration_seconds": 3, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432861#step:8:1" }, { "name": "Test 4 - Check llvm-as (assembler)", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109507#step:9:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432861#step:9:1" }, { "name": "Test 5 - Check llvm-dis (disassembler)", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109507#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432861#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109507#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432861#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.371599+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.586796+00:00", "publish_state": "published" } } diff --git a/data/test-results/llvm_flang.json b/data/test-results/llvm_flang.json index 50781ed059..b9afb0f4d3 100644 --- a/data/test-results/llvm_flang.json +++ b/data/test-results/llvm_flang.json @@ -5,10 +5,10 @@ "version": "19.1.1" }, "run": { - "id": "25877395502", + "id": "26658703674", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110026", - "timestamp": "2026-05-14T18:18:26Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433270", + "timestamp": "2026-05-29T19:48:34Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110026#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433270#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110026#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433270#step:7:1" }, { "name": "Test 3 - Check Help Output or Configuration", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110026#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433270#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110026#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433270#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110026#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433270#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110026#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433270#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.371822+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.586964+00:00", "publish_state": "published" } } diff --git a/data/test-results/lmbench.json b/data/test-results/lmbench.json index 2f27210966..3a945489ac 100644 --- a/data/test-results/lmbench.json +++ b/data/test-results/lmbench.json @@ -5,10 +5,10 @@ "version": "3.0-a9+debian.1-6build3" }, "run": { - "id": "25877379982", + "id": "26658688675", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057213", - "timestamp": "2026-05-14T18:18:05Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380869", + "timestamp": "2026-05-29T19:48:15Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 1, + "duration_seconds": 0, "details": [ { "name": "Test 1 - Check Benchmark Binaries", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057213#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380869#step:6:1" }, { "name": "Test 2 - Check Version Metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057213#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380869#step:7:1" }, { "name": "Test 3 - Check Suite Configuration", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057213#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380869#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057213#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380869#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057213#step:10:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380869#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057213#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380869#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.372052+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.587132+00:00", "publish_state": "published" } } diff --git a/data/test-results/log4cplus.json b/data/test-results/log4cplus.json index 18c1187028..9275a64521 100644 --- a/data/test-results/log4cplus.json +++ b/data/test-results/log4cplus.json @@ -5,10 +5,10 @@ "version": "2.1.1" }, "run": { - "id": "25877406767", + "id": "26658714432", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154580", - "timestamp": "2026-05-14T18:18:42Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468638", + "timestamp": "2026-05-29T19:48:49Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 41, + "duration_seconds": 40, "details": [ { "name": "Test 1 - Header and Library Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154580#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468638#step:6:1" }, { "name": "Test 2 - Version Check", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154580#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468638#step:7:1" }, { "name": "Test 3 - Configuration Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154580#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468638#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154580#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468638#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154580#step:10:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468638#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 41, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154580#step:11:1", + "duration_seconds": 39, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468638#step:11:1", "current_version": "2.1.1", "latest_version": "2.1.2", "next_installed_version": "2.1.2", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.372261+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.587325+00:00", "publish_state": "published" } } diff --git a/data/test-results/log4cpp.json b/data/test-results/log4cpp.json index 5321a0091a..b030f336a7 100644 --- a/data/test-results/log4cpp.json +++ b/data/test-results/log4cpp.json @@ -5,10 +5,10 @@ "version": "1.1.3-3.1" }, "run": { - "id": "25877403044", + "id": "26658710721", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140820", - "timestamp": "2026-05-14T18:18:40Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456106", + "timestamp": "2026-05-29T19:48:44Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 3, + "duration_seconds": 2, "details": [ { "name": "Test 1 - Check headers and library are present", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140820#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456106#step:6:1" }, { "name": "Test 2 - Check package version", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140820#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456106#step:7:1" }, { "name": "Test 3 - Check API surface", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140820#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456106#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140820#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456106#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 3, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140820#step:10:1" + "duration_seconds": 2, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456106#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140820#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456106#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.372458+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.587505+00:00", "publish_state": "published" } } diff --git a/data/test-results/logstash.json b/data/test-results/logstash.json index abc70dbd08..3dd956d0cf 100644 --- a/data/test-results/logstash.json +++ b/data/test-results/logstash.json @@ -5,10 +5,10 @@ "version": "8.19.12" }, "run": { - "id": "25877363365", + "id": "26658674448", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001133", - "timestamp": "2026-05-14T18:17:47Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334953", + "timestamp": "2026-05-29T19:47:57Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 17, + "duration_seconds": 16, "details": [ { "name": "Test 1 - Check Logstash binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001133#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334953#step:6:1" }, { "name": "Test 2 - Check Logstash version output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001133#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334953#step:7:1" }, { "name": "Test 3 - Check Logstash help output", "status": "passed", "duration_seconds": 8, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001133#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334953#step:8:1" }, { "name": "Test 4 - Check Logstash config test", "status": "passed", - "duration_seconds": 9, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001133#step:9:1" + "duration_seconds": 8, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334953#step:9:1" }, { "name": "Test 5 - Check package architecture", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001133#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334953#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 52, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001133#step:11:1", + "duration_seconds": 50, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334953#step:11:1", "current_version": "8.19.12", "latest_version": "8.19.13", "next_installed_version": "8.19.13", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.372667+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.587672+00:00", "publish_state": "published" } } diff --git a/data/test-results/logzio.json b/data/test-results/logzio.json index 8fccf3b0a8..d195fcad2f 100644 --- a/data/test-results/logzio.json +++ b/data/test-results/logzio.json @@ -5,10 +5,10 @@ "version": "4.1.9" }, "run": { - "id": "25877367704", + "id": "26658677990", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026731", - "timestamp": "2026-05-14T18:17:55Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347247", + "timestamp": "2026-05-29T19:48:03Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 0, + "duration_seconds": 1, "details": [ { "name": "Test 1 - Import Logzio handler module", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026731#step:6:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347247#step:6:1" }, { "name": "Test 2 - Format a LogRecord payload", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026731#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347247#step:7:1" }, { "name": "Test 3 - Emit through handler without network", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026731#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347247#step:8:1" }, { "name": "Test 4 - Preserve structured extra fields", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026731#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347247#step:9:1" }, { "name": "Test 5 - Flush handler sender", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026731#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347247#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026731#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347247#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.372932+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.587848+00:00", "publish_state": "published" } } diff --git a/data/test-results/longhorn.json b/data/test-results/longhorn.json index a7c1d40748..3e63d2d679 100644 --- a/data/test-results/longhorn.json +++ b/data/test-results/longhorn.json @@ -5,10 +5,10 @@ "version": "v1.9.0" }, "run": { - "id": "25877367704", + "id": "26658677990", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026932", - "timestamp": "2026-05-14T18:17:56Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347460", + "timestamp": "2026-05-29T19:48:02Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check longhornctl binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026932#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347460#step:6:1" }, { "name": "Test 2 - Check version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026932#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347460#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026932#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347460#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026932#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347460#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026932#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347460#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026932#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347460#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.373135+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.588027+00:00", "publish_state": "published" } } diff --git a/data/test-results/lsyncd.json b/data/test-results/lsyncd.json index 12cd3fb537..77ba71d0d2 100644 --- a/data/test-results/lsyncd.json +++ b/data/test-results/lsyncd.json @@ -5,10 +5,10 @@ "version": "2.3.0" }, "run": { - "id": "25877387746", + "id": "26658696365", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084517", - "timestamp": "2026-05-14T18:18:16Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407953", + "timestamp": "2026-05-29T19:48:24Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 21, + "duration_seconds": 22, "details": [ { "name": "Test 1 - Check lsyncd binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084517#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407953#step:6:1" }, { "name": "Test 2 - Check version output", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084517#step:7:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407953#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084517#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407953#step:8:1" }, { "name": "Test 4 - Architecture verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084517#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407953#step:9:1" }, { "name": "Test 5 - Functional validation", "status": "passed", "duration_seconds": 10, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084517#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407953#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 11, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084517#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407953#step:11:1", "current_version": "2.3.0", "latest_version": "2.3.1", "next_installed_version": "2.3.1", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.373318+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.588201+00:00", "publish_state": "published" } } diff --git a/data/test-results/lua.json b/data/test-results/lua.json index 7b753ae0c4..025e0c94a7 100644 --- a/data/test-results/lua.json +++ b/data/test-results/lua.json @@ -5,10 +5,10 @@ "version": "5.4.6" }, "run": { - "id": "25877399008", + "id": "26658707245", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125760", - "timestamp": "2026-05-14T18:18:31Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445453", + "timestamp": "2026-05-29T19:48:38Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check lua binary", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125760#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445453#step:6:1" }, { "name": "Test 2 - Check version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125760#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445453#step:7:1" }, { "name": "Test 3 - Run simple script", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125760#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445453#step:8:1" }, { "name": "Test 4 - Check math library", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125760#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445453#step:9:1" }, { "name": "Test 5 - Check interactive mode (dry run)", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125760#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445453#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125760#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445453#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.373524+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.588410+00:00", "publish_state": "published" } } diff --git a/data/test-results/luajit.json b/data/test-results/luajit.json index 17d9791067..a56873f322 100644 --- a/data/test-results/luajit.json +++ b/data/test-results/luajit.json @@ -5,10 +5,10 @@ "version": "2.1.1703358377" }, "run": { - "id": "25877395502", + "id": "26658703674", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109448", - "timestamp": "2026-05-14T18:18:26Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432893", + "timestamp": "2026-05-29T19:48:33Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check LuaJIT binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109448#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432893#step:6:1" }, { "name": "Test 2 - Check version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109448#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432893#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109448#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432893#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109448#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432893#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109448#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432893#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109448#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432893#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.373762+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.588597+00:00", "publish_state": "published" } } diff --git a/data/test-results/lucene.json b/data/test-results/lucene.json index 2bfdcb28bd..946e3111f9 100644 --- a/data/test-results/lucene.json +++ b/data/test-results/lucene.json @@ -5,10 +5,10 @@ "version": "10.2.2" }, "run": { - "id": "25877379982", + "id": "26658688675", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056565", - "timestamp": "2026-05-14T18:18:12Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575379728", + "timestamp": "2026-05-29T19:48:21Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 12, + "duration_seconds": 11, "details": [ { "name": "Test 1 - Artifact Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056565#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575379728#step:7:1" }, { "name": "Test 2 - Version Check", "status": "passed", - "duration_seconds": 3, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056565#step:8:1" + "duration_seconds": 4, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575379728#step:8:1" }, { "name": "Test 3 - Configuration Validation", "status": "passed", - "duration_seconds": 7, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056565#step:9:1" + "duration_seconds": 6, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575379728#step:9:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056565#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575379728#step:10:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056565#step:11:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575379728#step:11:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056565#step:12:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575379728#step:12:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.373973+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.588781+00:00", "publish_state": "published" } } diff --git a/data/test-results/luigi.json b/data/test-results/luigi.json index 7383d994ef..6cb5709e0b 100644 --- a/data/test-results/luigi.json +++ b/data/test-results/luigi.json @@ -5,10 +5,10 @@ "version": "1.0.0" }, "run": { - "id": "25877435852", + "id": "26658737633", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251745", - "timestamp": "2026-05-14T18:19:15Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550018", + "timestamp": "2026-05-29T19:49:21Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Download Luigi baseline source", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251745#step:5:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550018#step:5:1" }, { "name": "Test 2 - Verify expected source layout", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251745#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550018#step:6:1" }, { "name": "Test 3 - Check core package metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251745#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550018#step:7:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251745#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550018#step:8:1" }, { "name": "Test 5 - Search source/docs functional markers", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251745#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550018#step:9:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251745#step:10:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550018#step:10:1", "current_version": "1.0.0", "latest_version": "v2.29.0", "next_installed_version": "v2.29.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.374182+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.588965+00:00", "publish_state": "published" } } diff --git a/data/test-results/lxcfs.json b/data/test-results/lxcfs.json index ad1ad2ea77..8876be30c6 100644 --- a/data/test-results/lxcfs.json +++ b/data/test-results/lxcfs.json @@ -5,10 +5,10 @@ "version": "6.0.3" }, "run": { - "id": "25877415436", + "id": "26658721315", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180657", - "timestamp": "2026-05-14T18:18:50Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491897", + "timestamp": "2026-05-29T19:48:56Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 5, + "duration_seconds": 4, "details": [ { "name": "Test 1 - Check lxcfs binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180657#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491897#step:6:1" }, { "name": "Test 2 - Check version output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180657#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491897#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180657#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491897#step:8:1" }, { "name": "Test 4 - Architecture verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180657#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491897#step:9:1" }, { "name": "Test 5 - Functional validation", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180657#step:10:1" + "duration_seconds": 2, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491897#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 4, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180657#step:11:1", + "duration_seconds": 3, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491897#step:11:1", "current_version": "6.0.3", "latest_version": "6.0.4", "next_installed_version": "6.0.4", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.374395+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.589164+00:00", "publish_state": "published" } } diff --git a/data/test-results/lxd.json b/data/test-results/lxd.json index 2acbf14185..29001ec2d3 100644 --- a/data/test-results/lxd.json +++ b/data/test-results/lxd.json @@ -2,13 +2,13 @@ "schema_version": "2.0", "package": { "name": "Canonical LXD", - "version": "6.7" + "version": "6.8" }, "run": { - "id": "25877392111", + "id": "26658699892", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096584", - "timestamp": "2026-05-14T18:18:22Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420752", + "timestamp": "2026-05-29T19:48:30Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 1, + "duration_seconds": 0, "details": [ { "name": "Test 1 - Check Binaries Exist", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096584#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420752#step:6:1" }, { "name": "Test 2 - Check Version", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096584#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420752#step:7:1" }, { "name": "Test 3 - Initialize (Dry Run)", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096584#step:8:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420752#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096584#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420752#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096584#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420752#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096584#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420752#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.374690+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.589469+00:00", "publish_state": "published" } } diff --git a/data/test-results/lz4.json b/data/test-results/lz4.json index 5bf77505cb..ab294fc91b 100644 --- a/data/test-results/lz4.json +++ b/data/test-results/lz4.json @@ -5,10 +5,10 @@ "version": "1.9.4" }, "run": { - "id": "25877387746", + "id": "26658696365", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084953", - "timestamp": "2026-05-14T18:18:16Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407680", + "timestamp": "2026-05-29T19:48:26Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check lz4 binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084953#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407680#step:6:1" }, { "name": "Test 2 - Check version output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084953#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407680#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084953#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407680#step:8:1" }, { "name": "Test 4 - Architecture verification", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084953#step:9:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407680#step:9:1" }, { "name": "Test 5 - Functional validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084953#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407680#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 8, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084953#step:11:1", + "duration_seconds": 9, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407680#step:11:1", "current_version": "1.9.4", "latest_version": "1.10.0", "next_installed_version": "1.10.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.374925+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.589654+00:00", "publish_state": "published" } } diff --git a/data/test-results/lzip.json b/data/test-results/lzip.json index fe331e3896..cae185d354 100644 --- a/data/test-results/lzip.json +++ b/data/test-results/lzip.json @@ -5,10 +5,10 @@ "version": "1.15" }, "run": { - "id": "25877406767", + "id": "26658714432", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154529", - "timestamp": "2026-05-14T18:18:45Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469195", + "timestamp": "2026-05-29T19:48:49Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 5, + "duration_seconds": 3, "details": [ { "name": "Test 1 - Check lzip binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154529#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469195#step:6:1" }, { "name": "Test 2 - Check version output", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154529#step:7:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469195#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154529#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469195#step:8:1" }, { "name": "Test 4 - Architecture verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154529#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469195#step:9:1" }, { "name": "Test 5 - Functional validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154529#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469195#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 5, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154529#step:11:1", + "duration_seconds": 3, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469195#step:11:1", "current_version": "1.15", "latest_version": "1.26", "next_installed_version": "1.26", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.375139+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.589833+00:00", "publish_state": "published" } } diff --git a/data/test-results/m4.json b/data/test-results/m4.json index 36e518e564..8148f31b2e 100644 --- a/data/test-results/m4.json +++ b/data/test-results/m4.json @@ -5,10 +5,10 @@ "version": "1.4.19" }, "run": { - "id": "25877367704", + "id": "26658677990", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027050", - "timestamp": "2026-05-14T18:17:55Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347291", + "timestamp": "2026-05-29T19:48:02Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check m4 binary", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027050#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347291#step:6:1" }, { "name": "Test 2 - Check version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027050#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347291#step:7:1" }, { "name": "Test 3 - Check help command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027050#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347291#step:8:1" }, { "name": "Test 4 - Simple macro expansion", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027050#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347291#step:9:1" }, { "name": "Test 5 - Built-in macro (syscmd)", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027050#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347291#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027050#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347291#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.375350+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.590020+00:00", "publish_state": "published" } } diff --git a/data/test-results/maas.json b/data/test-results/maas.json index 69cb051833..10b0ddce54 100644 --- a/data/test-results/maas.json +++ b/data/test-results/maas.json @@ -5,10 +5,10 @@ "version": "0.6.8" }, "run": { - "id": "25877406767", + "id": "26658714432", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155432", - "timestamp": "2026-05-14T18:18:44Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469307", + "timestamp": "2026-05-29T19:48:49Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 2, + "duration_seconds": 1, "details": [ { "name": "Test 1 - Check MAAS CLI exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155432#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469307#step:6:1" }, { "name": "Test 2 - Check installed MAAS version metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155432#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469307#step:7:1" }, { "name": "Test 3 - Check MAAS help output", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155432#step:8:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469307#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155432#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469307#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155432#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469307#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155432#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469307#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.375549+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.590193+00:00", "publish_state": "published" } } diff --git a/data/test-results/macs2.json b/data/test-results/macs2.json index 84c3e044f3..df99177575 100644 --- a/data/test-results/macs2.json +++ b/data/test-results/macs2.json @@ -5,10 +5,10 @@ "version": "macs2 2.2.8" }, "run": { - "id": "25877392111", + "id": "26658699892", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096534", - "timestamp": "2026-05-14T18:18:32Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421065", + "timestamp": "2026-05-29T19:48:39Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096534#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421065#step:7:1" }, { "name": "Test 2 - Version Check", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096534#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421065#step:8:1" }, { "name": "Test 3 - Help Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096534#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421065#step:9:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096534#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421065#step:10:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096534#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421065#step:11:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096534#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421065#step:12:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.375735+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.590396+00:00", "publish_state": "published" } } diff --git a/data/test-results/madoguchi.json b/data/test-results/madoguchi.json index f636d49e09..64c6cb3720 100644 --- a/data/test-results/madoguchi.json +++ b/data/test-results/madoguchi.json @@ -5,10 +5,10 @@ "version": "v0.5.4" }, "run": { - "id": "25877359516", + "id": "26658670904", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991341", - "timestamp": "2026-05-14T18:18:25Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321788", + "timestamp": "2026-05-29T19:48:35Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 176, + "duration_seconds": 180, "details": [ { "name": "Test 1 - Check madoguchi binary", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991341#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321788#step:8:1" }, { "name": "Test 2 - Verify binary linkage", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991341#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321788#step:9:1" }, { "name": "Test 3 - Check source tree contents", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991341#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321788#step:10:1" }, { "name": "Test 4 - Start server briefly", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991341#step:11:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321788#step:11:1" }, { "name": "Test 5 - Functional validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991341#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321788#step:12:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 174, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991341#step:13:1", + "duration_seconds": 179, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321788#step:13:1", "current_version": "v0.5.4", "latest_version": "v0.6.0", "next_installed_version": "v0.6.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.375965+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.590579+00:00", "publish_state": "published" } } diff --git a/data/test-results/magento.json b/data/test-results/magento.json index 7d91097239..93005bda2e 100644 --- a/data/test-results/magento.json +++ b/data/test-results/magento.json @@ -5,10 +5,10 @@ "version": "2.4.7-p4" }, "run": { - "id": "25877387746", + "id": "26658696365", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084498", - "timestamp": "2026-05-14T18:18:15Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407275", + "timestamp": "2026-05-29T19:48:24Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 26, + "duration_seconds": 25, "details": [ { "name": "Test 1 - Check Magento source layout", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084498#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407275#step:6:1" }, { "name": "Test 2 - Check exact baseline version", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084498#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407275#step:7:1" }, { "name": "Test 3 - Check Magento CLI help", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084498#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407275#step:8:1" }, { "name": "Test 4 - Architecture verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084498#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407275#step:9:1" }, { "name": "Test 5 - Functional validation", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084498#step:10:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407275#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 25, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084498#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407275#step:11:1", "current_version": "2.4.7-p4", "latest_version": "2.4.8", "next_installed_version": "2.4.8", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.376180+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.590758+00:00", "publish_state": "published" } } diff --git a/data/test-results/magic.json b/data/test-results/magic.json index fd2004f797..cfc38e15bb 100644 --- a/data/test-results/magic.json +++ b/data/test-results/magic.json @@ -5,10 +5,10 @@ "version": "8.3.105+ds.1-1.1" }, "run": { - "id": "25877427741", + "id": "26658731236", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218438", - "timestamp": "2026-05-14T18:19:12Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529535", + "timestamp": "2026-05-29T19:49:11Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 0, + "duration_seconds": 1, "details": [ { "name": "Test 1 - Package-manager install evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218438#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529535#step:6:1" }, { "name": "Test 2 - Installed Arm64 package metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218438#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529535#step:7:1" }, { "name": "Test 3 - CLI version starts on Arm", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218438#step:8:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529535#step:8:1" }, { "name": "Test 4 - Arm64 runner gate", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218438#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529535#step:9:1" }, { "name": "Test 5 - Headless runtime smoke", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218438#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529535#step:10:1" }, { "name": "Test 6 - Regression validation applicability", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218438#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529535#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.376358+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.590931+00:00", "publish_state": "published" } } diff --git a/data/test-results/manipulapy.json b/data/test-results/manipulapy.json index e7c9174ef9..c01e2515ad 100644 --- a/data/test-results/manipulapy.json +++ b/data/test-results/manipulapy.json @@ -5,10 +5,10 @@ "version": "1.0.0" }, "run": { - "id": "25877427741", + "id": "26658731236", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218787", - "timestamp": "2026-05-14T18:19:09Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529720", + "timestamp": "2026-05-29T19:49:12Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Package installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218787#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529720#step:7:1" }, { "name": "Test 2 - Version metadata matches baseline", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218787#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529720#step:8:1" }, { "name": "Test 3 - Installed files metadata", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218787#step:9:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529720#step:9:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218787#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529720#step:10:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218787#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529720#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 18, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218787#step:12:1", + "duration_seconds": 17, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529720#step:12:1", "current_version": "1.0.0", "latest_version": "1.0.0.1", "next_installed_version": "1.0.0.1", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.376584+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.591100+00:00", "publish_state": "published" } } diff --git a/data/test-results/mariadb.json b/data/test-results/mariadb.json index 780d1a3fe0..bf912632d0 100644 --- a/data/test-results/mariadb.json +++ b/data/test-results/mariadb.json @@ -5,10 +5,10 @@ "version": "15.1" }, "run": { - "id": "25877395502", + "id": "26658703674", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110087", - "timestamp": "2026-05-14T18:18:25Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432901", + "timestamp": "2026-05-29T19:48:34Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check mariadb binary", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110087#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432901#step:6:1" }, { "name": "Test 2 - Check version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110087#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432901#step:7:1" }, { "name": "Test 3 - Check service status", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110087#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432901#step:8:1" }, { "name": "Test 4 - Connect and run query", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110087#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432901#step:9:1" }, { "name": "Test 5 - Create database", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110087#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432901#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110087#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432901#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.376801+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.591292+00:00", "publish_state": "published" } } diff --git a/data/test-results/mattermost.json b/data/test-results/mattermost.json index f9621a3899..a1c1b4ed7f 100644 --- a/data/test-results/mattermost.json +++ b/data/test-results/mattermost.json @@ -5,10 +5,10 @@ "version": "10.4.0" }, "run": { - "id": "25877392111", + "id": "26658699892", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096399", - "timestamp": "2026-05-14T18:18:23Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420644", + "timestamp": "2026-05-29T19:48:29Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 24, + "duration_seconds": 3, "details": [ { "name": "Test 1 - Check mattermost binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096399#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420644#step:6:1" }, { "name": "Test 2 - Check exact baseline version", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096399#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420644#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096399#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420644#step:8:1" }, { "name": "Test 4 - Architecture verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096399#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420644#step:9:1" }, { "name": "Test 5 - Functional validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096399#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420644#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 24, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096399#step:11:1", + "duration_seconds": 3, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420644#step:11:1", "current_version": "10.4.0", "latest_version": "10.4.1", "next_installed_version": "10.4.1", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.377016+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.591482+00:00", "publish_state": "published" } } diff --git a/data/test-results/maven.json b/data/test-results/maven.json index e2a7314651..2a094eb8bd 100644 --- a/data/test-results/maven.json +++ b/data/test-results/maven.json @@ -5,10 +5,10 @@ "version": "3.9.0" }, "run": { - "id": "25877406767", + "id": "26658714432", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155560", - "timestamp": "2026-05-14T18:18:45Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469223", + "timestamp": "2026-05-29T19:48:49Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 27, + "duration_seconds": 19, "details": [ { "name": "Test 1 - Check mvn binary", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155560#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469223#step:7:1" }, { "name": "Test 2 - Check version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155560#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469223#step:8:1" }, { "name": "Test 3 - Check help command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155560#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469223#step:9:1" }, { "name": "Test 4 - Create simple project (archetype)", "status": "passed", - "duration_seconds": 10, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155560#step:10:1" + "duration_seconds": 8, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469223#step:10:1" }, { "name": "Test 5 - Build project", "status": "passed", - "duration_seconds": 15, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155560#step:11:1" + "duration_seconds": 9, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469223#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155560#step:12:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469223#step:12:1", "current_version": "3.9.0", "latest_version": "3.9.1", "next_installed_version": "3.9.1", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.377219+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.591660+00:00", "publish_state": "published" } } diff --git a/data/test-results/mayastor.json b/data/test-results/mayastor.json index 6ead0633a4..e965360018 100644 --- a/data/test-results/mayastor.json +++ b/data/test-results/mayastor.json @@ -5,10 +5,10 @@ "version": "2.7.4" }, "run": { - "id": "25877403044", + "id": "26658710721", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140715", - "timestamp": "2026-05-14T18:18:37Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456313", + "timestamp": "2026-05-29T19:48:43Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check kubectl-mayastor binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140715#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456313#step:6:1" }, { "name": "Test 2 - Check help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140715#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456313#step:7:1" }, { "name": "Test 3 - Check embedded release tag provenance", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140715#step:8:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456313#step:8:1" }, { "name": "Test 4 - Architecture verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140715#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456313#step:9:1" }, { "name": "Test 5 - Functional validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140715#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456313#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140715#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456313#step:11:1", "current_version": "2.7.4", "latest_version": "2.7.5", "next_installed_version": "2.7.5", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.377424+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.591847+00:00", "publish_state": "published" } } diff --git a/data/test-results/mdl-sdk.json b/data/test-results/mdl-sdk.json index 35d725b2ea..24d54ad530 100644 --- a/data/test-results/mdl-sdk.json +++ b/data/test-results/mdl-sdk.json @@ -5,10 +5,10 @@ "version": "2021" }, "run": { - "id": "25877427741", + "id": "26658731236", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218649", - "timestamp": "2026-05-14T18:19:05Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529753", + "timestamp": "2026-05-29T19:49:11Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 15, + "duration_seconds": 13, "details": [ { "name": "Test 1 - Check package-specific baseline markers", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218649#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529753#step:7:1" }, { "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218649#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529753#step:8:1" }, { "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218649#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529753#step:9:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218649#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529753#step:10:1" }, { "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "duration_seconds": 5, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218649#step:11:1" + "duration_seconds": 2, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529753#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 10, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218649#step:12:1", + "duration_seconds": 11, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529753#step:12:1", "current_version": "2021", "latest_version": "2025.0.5", "next_installed_version": "2025.0.5", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.377626+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.592031+00:00", "publish_state": "published" } } diff --git a/data/test-results/mediamtx.json b/data/test-results/mediamtx.json index d4bb1f6446..74ced3eaa9 100644 --- a/data/test-results/mediamtx.json +++ b/data/test-results/mediamtx.json @@ -5,10 +5,10 @@ "version": "0.1.0" }, "run": { - "id": "25877427741", + "id": "26658731236", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218849", - "timestamp": "2026-05-14T18:19:04Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529228", + "timestamp": "2026-05-29T19:49:11Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,46 +20,46 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 3, + "duration_seconds": 4, "details": [ { "name": "Test 1 - Check package-specific baseline markers", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218849#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529228#step:7:1" }, { "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218849#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529228#step:8:1" }, { "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218849#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529228#step:9:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218849#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529228#step:10:1" }, { "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218849#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529228#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218849#step:12:1", + "duration_seconds": 3, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529228#step:12:1", "current_version": "0.1.0", - "latest_version": "1.18.1", - "next_installed_version": "1.18.1", + "latest_version": "1.18.2", + "next_installed_version": "1.18.2", "decision": "limited_cpu_smoke_validated", "regression_result": "Arm preflight proof passed on Arm64", "comparison": "Downloaded the next Arm64 MediaMTX release asset, started the server locally, and curled the RTSP endpoint on port 8554." @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.377844+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.592213+00:00", "publish_state": "published" } } diff --git a/data/test-results/mediawiki.json b/data/test-results/mediawiki.json index 0ec56efa65..c3bb99e5f5 100644 --- a/data/test-results/mediawiki.json +++ b/data/test-results/mediawiki.json @@ -5,10 +5,10 @@ "version": "1.43.2" }, "run": { - "id": "25877379982", + "id": "26658688675", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056564", - "timestamp": "2026-05-14T18:18:06Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575379780", + "timestamp": "2026-05-29T19:48:14Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Artifact Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056564#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575379780#step:6:1" }, { "name": "Test 2 - Version Check", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056564#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575379780#step:7:1" }, { "name": "Test 3 - Help Output Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056564#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575379780#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056564#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575379780#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 4, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056564#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575379780#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 6, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056564#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575379780#step:11:1", "current_version": "1.43.2", "latest_version": "1.43.3", "next_installed_version": "1.43.3", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.378026+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.592426+00:00", "publish_state": "published" } } diff --git a/data/test-results/megatron-core.json b/data/test-results/megatron-core.json index 4c66baa6b5..3f3fa71da4 100644 --- a/data/test-results/megatron-core.json +++ b/data/test-results/megatron-core.json @@ -5,10 +5,10 @@ "version": "0.11.0" }, "run": { - "id": "25877427741", + "id": "26658731236", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218664", - "timestamp": "2026-05-14T18:19:13Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529163", + "timestamp": "2026-05-29T19:49:23Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 42, + "duration_seconds": 51, "details": [ { "name": "Test 1 - Check package-specific baseline markers", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218664#step:8:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529163#step:8:1" }, { "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218664#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529163#step:9:1" }, { "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218664#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529163#step:10:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218664#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529163#step:11:1" }, { "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "duration_seconds": 22, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218664#step:12:1" + "duration_seconds": 28, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529163#step:12:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 20, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218664#step:13:1", + "duration_seconds": 22, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529163#step:13:1", "current_version": "0.11.0", "latest_version": "0.12.0", "next_installed_version": "0.12.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.378242+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.592608+00:00", "publish_state": "published" } } diff --git a/data/test-results/memcached.json b/data/test-results/memcached.json index c80d18bb8d..98660a7379 100644 --- a/data/test-results/memcached.json +++ b/data/test-results/memcached.json @@ -5,10 +5,10 @@ "version": "1.6.24" }, "run": { - "id": "25877355625", + "id": "26658667828", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047975675", - "timestamp": "2026-05-14T18:17:37Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308013", + "timestamp": "2026-05-29T19:47:52Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check memcached binary", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047975675#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308013#step:6:1" }, { "name": "Test 2 - Check help command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047975675#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308013#step:7:1" }, { "name": "Test 3 - Check service status", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047975675#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308013#step:8:1" }, { "name": "Test 4 - Set and Get value (using netcat)", "status": "passed", "duration_seconds": 6, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047975675#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308013#step:9:1" }, { "name": "Test 5 - Check stats", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047975675#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308013#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047975675#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308013#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.378427+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.592780+00:00", "publish_state": "published" } } diff --git a/data/test-results/memtester.json b/data/test-results/memtester.json index a29623f62c..5388dec7a1 100644 --- a/data/test-results/memtester.json +++ b/data/test-results/memtester.json @@ -5,10 +5,10 @@ "version": "4.6.0" }, "run": { - "id": "25877415436", + "id": "26658721315", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180762", - "timestamp": "2026-05-14T18:18:54Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491517", + "timestamp": "2026-05-29T19:48:56Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check memtester binary", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180762#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491517#step:6:1" }, { "name": "Test 2 - Check help/usage output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180762#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491517#step:7:1" }, { "name": "Test 3 - Run small memory test", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180762#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491517#step:8:1" }, { "name": "Test 4 - Check version output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180762#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491517#step:9:1" }, { "name": "Test 5 - Invalid argument check", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180762#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491517#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180762#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491517#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.378597+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.592945+00:00", "publish_state": "published" } } diff --git a/data/test-results/mesa.json b/data/test-results/mesa.json index 2c9e3d91a5..35b9624c10 100644 --- a/data/test-results/mesa.json +++ b/data/test-results/mesa.json @@ -5,10 +5,10 @@ "version": "9.0.0-2" }, "run": { - "id": "25877419588", + "id": "26658724696", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048191530", - "timestamp": "2026-05-14T18:19:06Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503360", + "timestamp": "2026-05-29T19:49:00Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check glxinfo binary", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048191530#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503360#step:6:1" }, { "name": "Test 2 - Check glxgears binary", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048191530#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503360#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048191530#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503360#step:8:1" }, { "name": "Test 4 - Run glxinfo (might fail without display)", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048191530#step:9:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503360#step:9:1" }, { "name": "Test 5 - Check package info", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048191530#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503360#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048191530#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503360#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.378788+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.593109+00:00", "publish_state": "published" } } diff --git a/data/test-results/mesh.json b/data/test-results/mesh.json index 87c1b0fb46..3e2d87e51e 100644 --- a/data/test-results/mesh.json +++ b/data/test-results/mesh.json @@ -5,10 +5,10 @@ "version": "v0.4" }, "run": { - "id": "25877367704", + "id": "26658677990", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026057", - "timestamp": "2026-05-14T18:17:55Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575345885", + "timestamp": "2026-05-29T19:48:03Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 5, "failed": 0, "skipped": 1, - "duration_seconds": 15, + "duration_seconds": 13, "details": [ { "name": "Test 1 - Check go.mod existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026057#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575345885#step:6:1" }, { "name": "Test 2 - Build package", "status": "passed", - "duration_seconds": 10, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026057#step:7:1" + "duration_seconds": 9, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575345885#step:7:1" }, { "name": "Test 3 - Run tests (short)", "status": "passed", - "duration_seconds": 5, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026057#step:8:1" + "duration_seconds": 4, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575345885#step:8:1" }, { "name": "Test 4 - Check for example/main", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026057#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575345885#step:9:1" }, { "name": "Test 5 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026057#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575345885#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "skipped", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026057#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575345885#step:11:1", "current_version": "v0.4", "latest_version": "v0.4", "next_installed_version": "v0.4", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "skipped", "regression_decision": "no_newer_stable_available", - "production_refreshed_at": "2026-05-14T19:37:17.379012+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.593292+00:00", "publish_state": "published" } } diff --git a/data/test-results/metaflow.json b/data/test-results/metaflow.json index d263e14f23..7f36478a2e 100644 --- a/data/test-results/metaflow.json +++ b/data/test-results/metaflow.json @@ -5,10 +5,10 @@ "version": "2.0.0" }, "run": { - "id": "25877427741", + "id": "26658731236", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218907", - "timestamp": "2026-05-14T18:19:09Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529320", + "timestamp": "2026-05-29T19:49:13Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 8, + "duration_seconds": 7, "details": [ { "name": "Test 1 - Package installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218907#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529320#step:7:1" }, { "name": "Test 2 - Version metadata matches baseline", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218907#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529320#step:8:1" }, { "name": "Test 3 - Installed files metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218907#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529320#step:9:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218907#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529320#step:10:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218907#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529320#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 8, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218907#step:12:1", + "duration_seconds": 7, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529320#step:12:1", "current_version": "2.0.0", "latest_version": "2.0.1", "next_installed_version": "2.0.1", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.379217+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.593467+00:00", "publish_state": "published" } } diff --git a/data/test-results/metricbeat.json b/data/test-results/metricbeat.json index 612b12e2dd..c25bb3725b 100644 --- a/data/test-results/metricbeat.json +++ b/data/test-results/metricbeat.json @@ -5,10 +5,10 @@ "version": "9.0.4" }, "run": { - "id": "25877392111", + "id": "26658699892", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096530", - "timestamp": "2026-05-14T18:18:23Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420756", + "timestamp": "2026-05-29T19:48:32Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 3, + "duration_seconds": 7, "details": [ { "name": "Test 1 - Check Metricbeat binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096530#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420756#step:6:1" }, { "name": "Test 2 - Check Metricbeat version output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096530#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420756#step:7:1" }, { "name": "Test 3 - Check Metricbeat help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096530#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420756#step:8:1" }, { "name": "Test 4 - Check Metricbeat configuration", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096530#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420756#step:9:1" }, { "name": "Test 5 - List modules and verify architecture", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096530#step:10:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420756#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096530#step:11:1", + "duration_seconds": 7, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420756#step:11:1", "current_version": "9.0.4", "latest_version": "9.0.5", "next_installed_version": "9.0.5", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.379508+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.593740+00:00", "publish_state": "published" } } diff --git a/data/test-results/mezmo.json b/data/test-results/mezmo.json index 65275ebe57..76cbff2d18 100644 --- a/data/test-results/mezmo.json +++ b/data/test-results/mezmo.json @@ -5,10 +5,10 @@ "version": "3.11.2" }, "run": { - "id": "25877403044", + "id": "26658710721", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140803", - "timestamp": "2026-05-14T18:18:40Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456130", + "timestamp": "2026-05-29T19:48:43Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140803#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456130#step:6:1" }, { "name": "Test 2 - Version Check", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140803#step:7:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456130#step:7:1" }, { "name": "Test 3 - Help Output Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140803#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456130#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140803#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456130#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140803#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456130#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140803#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456130#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.379716+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.593937+00:00", "publish_state": "published" } } diff --git a/data/test-results/microcloud.json b/data/test-results/microcloud.json index edd5dde5e4..32fcf3780f 100644 --- a/data/test-results/microcloud.json +++ b/data/test-results/microcloud.json @@ -5,10 +5,10 @@ "version": "2.1.0" }, "run": { - "id": "25877427741", + "id": "26658731236", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218555", - "timestamp": "2026-05-14T18:19:11Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529340", + "timestamp": "2026-05-29T19:49:14Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 12, + "duration_seconds": 17, "details": [ { "name": "Test 1 - Check package-specific baseline markers", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218555#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529340#step:7:1" }, { "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218555#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529340#step:8:1" }, { "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218555#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529340#step:9:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218555#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529340#step:10:1" }, { "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "duration_seconds": 6, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218555#step:11:1" + "duration_seconds": 9, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529340#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 6, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218555#step:12:1", + "duration_seconds": 8, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529340#step:12:1", "current_version": "2.1.0", "latest_version": "3.2", "next_installed_version": "3.2", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.379941+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.594126+00:00", "publish_state": "published" } } diff --git a/data/test-results/microk8s.json b/data/test-results/microk8s.json index de20e5b1ca..a664bce537 100644 --- a/data/test-results/microk8s.json +++ b/data/test-results/microk8s.json @@ -2,13 +2,13 @@ "schema_version": "2.0", "package": { "name": "MicroK8s", - "version": "v1.34.6" + "version": "v1.35.3" }, "run": { - "id": "25877383844", + "id": "26658692522", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071463", - "timestamp": "2026-05-14T18:18:12Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394294", + "timestamp": "2026-05-29T19:48:22Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check microk8s binary", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071463#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394294#step:6:1" }, { "name": "Test 2 - Check status command", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071463#step:7:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394294#step:7:1" }, { "name": "Test 3 - Check kubectl command", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071463#step:8:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394294#step:8:1" }, { "name": "Test 4 - Check inspect command", "status": "passed", "duration_seconds": 3, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071463#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394294#step:9:1" }, { "name": "Test 5 - Check services and architecture", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071463#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394294#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071463#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394294#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.380151+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.594339+00:00", "publish_state": "published" } } diff --git a/data/test-results/mig-parted.json b/data/test-results/mig-parted.json index c6400d26c4..1316f4f918 100644 --- a/data/test-results/mig-parted.json +++ b/data/test-results/mig-parted.json @@ -5,10 +5,10 @@ "version": "0.9.0" }, "run": { - "id": "25877431862", + "id": "26658734615", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265209", - "timestamp": "2026-05-14T18:19:27Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537224", + "timestamp": "2026-05-29T19:49:13Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,46 +20,46 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 12, + "duration_seconds": 11, "details": [ { "name": "Test 1 - Check package-specific baseline markers", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265209#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537224#step:7:1" }, { "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265209#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537224#step:8:1" }, { "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265209#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537224#step:9:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265209#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537224#step:10:1" }, { "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", "duration_seconds": 5, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265209#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537224#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 7, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265209#step:12:1", + "duration_seconds": 6, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537224#step:12:1", "current_version": "0.9.0", - "latest_version": "0.14.1", - "next_installed_version": "0.14.1", + "latest_version": "0.14.2", + "next_installed_version": "0.14.2", "decision": "limited_cpu_smoke_validated", "regression_result": "Arm preflight proof passed on Arm64", "comparison": "Test 6 reran the scoped MIG-Parted Arm preflight against the next stable source tag: Go CLI package discovery plus MIG config and command source validation. Full MIG mutation validation requires NVIDIA GPU hardware, drivers, and privileged host/runtime access." @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.380375+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.594524+00:00", "publish_state": "published" } } diff --git a/data/test-results/migen.json b/data/test-results/migen.json index 8fd06d7e22..6169b9c8a3 100644 --- a/data/test-results/migen.json +++ b/data/test-results/migen.json @@ -5,10 +5,10 @@ "version": "0.9.1" }, "run": { - "id": "25877431862", + "id": "26658734615", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265710", - "timestamp": "2026-05-14T18:19:31Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537333", + "timestamp": "2026-05-29T19:49:29Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check package-specific baseline markers", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265710#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537333#step:8:1" }, { "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265710#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537333#step:9:1" }, { "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265710#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537333#step:10:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265710#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537333#step:11:1" }, { "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265710#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537333#step:12:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265710#step:13:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537333#step:13:1", "current_version": "0.9.1", "latest_version": "0.9.2", "next_installed_version": "0.9.2", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.380585+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.594707+00:00", "publish_state": "published" } } diff --git a/data/test-results/milvus.json b/data/test-results/milvus.json index d8718f7cab..816c774e96 100644 --- a/data/test-results/milvus.json +++ b/data/test-results/milvus.json @@ -5,10 +5,10 @@ "version": "2.5.6" }, "run": { - "id": "25877423406", + "id": "26658727918", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210260", - "timestamp": "2026-05-14T18:19:06Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515822", + "timestamp": "2026-05-29T19:49:05Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 79, + "duration_seconds": 66, "details": [ { "name": "Test 1 - Check standalone compose asset", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210260#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515822#step:7:1" }, { "name": "Test 2 - Validate standalone compose configuration", "status": "passed", - "duration_seconds": 12, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210260#step:8:1" + "duration_seconds": 3, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515822#step:8:1" }, { "name": "Test 3 - Pull baseline standalone image and verify architecture", "status": "passed", "duration_seconds": 24, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210260#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515822#step:9:1" }, { "name": "Test 4 - Start baseline standalone stack and wait for health", "status": "passed", - "duration_seconds": 12, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210260#step:10:1" + "duration_seconds": 13, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515822#step:10:1" }, { "name": "Test 5 - Validate running standalone container and clean up baseline", "status": "passed", - "duration_seconds": 6, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210260#step:11:1" + "duration_seconds": 5, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515822#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 32, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210260#step:12:1", + "duration_seconds": 28, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515822#step:12:1", "current_version": "2.5.6", "latest_version": "2.5.7", "next_installed_version": "2.5.7", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.380828+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.594884+00:00", "publish_state": "published" } } diff --git a/data/test-results/mindspore.json b/data/test-results/mindspore.json index 0395ac9cb3..1bdb374cfb 100644 --- a/data/test-results/mindspore.json +++ b/data/test-results/mindspore.json @@ -5,10 +5,10 @@ "version": "2.7.2" }, "run": { - "id": "25877431862", + "id": "26658734615", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265175", - "timestamp": "2026-05-14T18:19:22Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537323", + "timestamp": "2026-05-29T19:49:17Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 107, + "duration_seconds": 70, "details": [ { "name": "Test 1 - Check package-specific baseline markers", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265175#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537323#step:7:1" }, { "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265175#step:8:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537323#step:8:1" }, { "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265175#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537323#step:9:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265175#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537323#step:10:1" }, { "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "duration_seconds": 42, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265175#step:11:1" + "duration_seconds": 36, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537323#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 65, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265175#step:12:1", + "duration_seconds": 34, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537323#step:12:1", "current_version": "2.7.2", "latest_version": "2.8.0", "next_installed_version": "2.8.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.381022+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.595061+00:00", "publish_state": "published" } } diff --git a/data/test-results/miniasm.json b/data/test-results/miniasm.json index bf46775feb..219e79f8ec 100644 --- a/data/test-results/miniasm.json +++ b/data/test-results/miniasm.json @@ -5,10 +5,10 @@ "version": "v0.2" }, "run": { - "id": "25877363365", + "id": "26658674448", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000831", - "timestamp": "2026-05-14T18:17:48Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334989", + "timestamp": "2026-05-29T19:47:56Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check miniasm binary", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000831#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334989#step:6:1" }, { "name": "Test 2 - Check source tree contents", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000831#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334989#step:7:1" }, { "name": "Test 3 - Check version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000831#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334989#step:8:1" }, { "name": "Test 4 - Architecture verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000831#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334989#step:9:1" }, { "name": "Test 5 - Functional validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000831#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334989#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000831#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334989#step:11:1", "current_version": "v0.2", "latest_version": "v0.3", "next_installed_version": "v0.3", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.381249+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.595237+00:00", "publish_state": "published" } } diff --git a/data/test-results/miniforge.json b/data/test-results/miniforge.json index 439661e08c..c96193c749 100644 --- a/data/test-results/miniforge.json +++ b/data/test-results/miniforge.json @@ -5,10 +5,10 @@ "version": "24.11.3-0" }, "run": { - "id": "25877427741", + "id": "26658731236", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217694", - "timestamp": "2026-05-14T18:19:10Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575528408", + "timestamp": "2026-05-29T19:49:11Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check conda binary", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217694#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575528408#step:6:1" }, { "name": "Test 2 - Check version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217694#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575528408#step:7:1" }, { "name": "Test 3 - Check info command", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217694#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575528408#step:8:1" }, { "name": "Test 4 - Check list command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217694#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575528408#step:9:1" }, { "name": "Test 5 - Create test environment", "status": "passed", "duration_seconds": 20, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217694#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575528408#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217694#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575528408#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.381430+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.595453+00:00", "publish_state": "published" } } diff --git a/data/test-results/minikube.json b/data/test-results/minikube.json index 91df40ffbd..209612b8b2 100644 --- a/data/test-results/minikube.json +++ b/data/test-results/minikube.json @@ -5,10 +5,10 @@ "version": "v1.34.0" }, "run": { - "id": "25877395502", + "id": "26658703674", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109994", - "timestamp": "2026-05-14T18:18:25Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433074", + "timestamp": "2026-05-29T19:48:33Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -25,38 +25,38 @@ { "name": "Test 1 - Check minikube binary", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109994#step:6:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433074#step:6:1" }, { "name": "Test 2 - Check version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109994#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433074#step:7:1" }, { "name": "Test 3 - Check help command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109994#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433074#step:8:1" }, { "name": "Test 4 - Check config command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109994#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433074#step:9:1" }, { "name": "Test 5 - Check completion command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109994#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433074#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109994#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433074#step:11:1", "current_version": "v1.34.0", "latest_version": "v1.35.0", "next_installed_version": "v1.35.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "validated_next_release", - "production_refreshed_at": "2026-05-14T19:37:17.381604+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.595642+00:00", "publish_state": "published" } } diff --git a/data/test-results/minimap.json b/data/test-results/minimap.json index 67a9b5d2b5..a11a156f50 100644 --- a/data/test-results/minimap.json +++ b/data/test-results/minimap.json @@ -5,10 +5,10 @@ "version": "2.26-r1175" }, "run": { - "id": "25877383844", + "id": "26658692522", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048070637", - "timestamp": "2026-05-14T18:18:11Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575393160", + "timestamp": "2026-05-29T19:48:19Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048070637#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575393160#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048070637#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575393160#step:7:1" }, { "name": "Test 3 - Check Help Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048070637#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575393160#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048070637#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575393160#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048070637#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575393160#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048070637#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575393160#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.381861+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.595828+00:00", "publish_state": "published" } } diff --git a/data/test-results/minio-mc.json b/data/test-results/minio-mc.json index c95c95c6af..becf32320a 100644 --- a/data/test-results/minio-mc.json +++ b/data/test-results/minio-mc.json @@ -5,10 +5,10 @@ "version": "2017-02-02T22:38:48Z" }, "run": { - "id": "25877379982", + "id": "26658688675", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056580", - "timestamp": "2026-05-14T18:18:06Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380606", + "timestamp": "2026-05-29T19:48:14Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check mc binary exists and architecture", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056580#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380606#step:6:1" }, { "name": "Test 2 - Check mc version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056580#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380606#step:7:1" }, { "name": "Test 3 - Check mc help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056580#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380606#step:8:1" }, { "name": "Test 4 - Check mc config host add/list", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056580#step:9:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380606#step:9:1" }, { "name": "Test 5 - Check ls help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056580#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380606#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056580#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380606#step:11:1", "current_version": "2017-02-02T22:38:48Z", "latest_version": "2017-02-06T20:16:19Z", "next_installed_version": "2017-02-06T20:16:19Z", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.382062+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.596003+00:00", "publish_state": "published" } } diff --git a/data/test-results/minio-os.json b/data/test-results/minio-os.json index bb60455d81..a6d39015d2 100644 --- a/data/test-results/minio-os.json +++ b/data/test-results/minio-os.json @@ -5,10 +5,10 @@ "version": "RELEASE.2025-09-07T16-13-09Z" }, "run": { - "id": "25877403044", + "id": "26658710721", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048141156", - "timestamp": "2026-05-14T18:18:36Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456186", + "timestamp": "2026-05-29T19:48:44Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check binary exists and architecture", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048141156#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456186#step:6:1" }, { "name": "Test 2 - Check version output", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048141156#step:7:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456186#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048141156#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456186#step:8:1" }, { "name": "Test 4 - Check server subcommand help", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048141156#step:9:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456186#step:9:1" }, { "name": "Test 5 - Functional validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048141156#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456186#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048141156#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456186#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.382268+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.596187+00:00", "publish_state": "published" } } diff --git a/data/test-results/mlflow.json b/data/test-results/mlflow.json index 626f0e9212..51450551f0 100644 --- a/data/test-results/mlflow.json +++ b/data/test-results/mlflow.json @@ -5,10 +5,10 @@ "version": "2.4.0" }, "run": { - "id": "25877431862", + "id": "26658734615", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265101", - "timestamp": "2026-05-14T18:19:30Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537215", + "timestamp": "2026-05-29T19:49:23Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 62, + "duration_seconds": 56, "details": [ { "name": "Test 1 - Check package-specific baseline markers", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265101#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537215#step:8:1" }, { "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265101#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537215#step:9:1" }, { "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265101#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537215#step:10:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265101#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537215#step:11:1" }, { "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "duration_seconds": 90, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265101#step:12:1" + "duration_seconds": 95, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537215#step:12:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 62, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265101#step:13:1", + "duration_seconds": 56, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537215#step:13:1", "current_version": "2.4.0", "latest_version": "3.12.0", "next_installed_version": "3.12.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.382447+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.596394+00:00", "publish_state": "published" } } diff --git a/data/test-results/mlnet.json b/data/test-results/mlnet.json index 33f67d7b68..3117d10fcc 100644 --- a/data/test-results/mlnet.json +++ b/data/test-results/mlnet.json @@ -5,10 +5,10 @@ "version": "1.6.0" }, "run": { - "id": "25877431862", + "id": "26658734615", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265052", - "timestamp": "2026-05-14T18:19:22Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537187", + "timestamp": "2026-05-29T19:49:21Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check package-specific baseline markers", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265052#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537187#step:7:1" }, { "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265052#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537187#step:8:1" }, { "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265052#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537187#step:9:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265052#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537187#step:10:1" }, { "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265052#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537187#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 5, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265052#step:12:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537187#step:12:1", "current_version": "1.6.0", "latest_version": "5.0.0", "next_installed_version": "5.0.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.382654+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.596580+00:00", "publish_state": "published" } } diff --git a/data/test-results/mlrun.json b/data/test-results/mlrun.json index ce33ca261c..a20b58af66 100644 --- a/data/test-results/mlrun.json +++ b/data/test-results/mlrun.json @@ -5,10 +5,10 @@ "version": "1.5.2" }, "run": { - "id": "25877406767", + "id": "26658714432", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155404", - "timestamp": "2026-05-14T18:18:43Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469213", + "timestamp": "2026-05-29T19:48:49Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check mlrun CLI exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155404#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469213#step:7:1" }, { "name": "Test 2 - Check exact package version", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155404#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469213#step:8:1" }, { "name": "Test 3 - Check help command", "status": "passed", - "duration_seconds": 3, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155404#step:9:1" + "duration_seconds": 2, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469213#step:9:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155404#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469213#step:10:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 3, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155404#step:11:1" + "duration_seconds": 4, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469213#step:11:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155404#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469213#step:12:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.382861+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.596753+00:00", "publish_state": "published" } } diff --git a/data/test-results/mojo.json b/data/test-results/mojo.json index 1747d8d346..5f8097813f 100644 --- a/data/test-results/mojo.json +++ b/data/test-results/mojo.json @@ -5,10 +5,10 @@ "version": "0.25.7.0" }, "run": { - "id": "25877423406", + "id": "26658727918", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210165", - "timestamp": "2026-05-14T18:19:06Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516094", + "timestamp": "2026-05-29T19:49:05Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210165#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516094#step:6:1" }, { "name": "Test 2 - Version Check", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210165#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516094#step:7:1" }, { "name": "Test 3 - Help Output Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210165#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516094#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210165#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516094#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210165#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516094#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210165#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516094#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.383057+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.596925+00:00", "publish_state": "published" } } diff --git a/data/test-results/mongodb-c-driver.json b/data/test-results/mongodb-c-driver.json index 226db0929c..21610f330a 100644 --- a/data/test-results/mongodb-c-driver.json +++ b/data/test-results/mongodb-c-driver.json @@ -5,10 +5,10 @@ "version": "1.26.0" }, "run": { - "id": "25877363365", + "id": "26658674448", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001128", - "timestamp": "2026-05-14T18:17:47Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334526", + "timestamp": "2026-05-29T19:47:56Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 5, + "duration_seconds": 1, "details": [ { "name": "Test 1 - Check pkg-config", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001128#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334526#step:6:1" }, { "name": "Test 2 - Compile simple C program", "status": "passed", - "duration_seconds": 5, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001128#step:7:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334526#step:7:1" }, { "name": "Test 3 - Run compiled program", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001128#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334526#step:8:1" }, { "name": "Test 4 - Check header files", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001128#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334526#step:9:1" }, { "name": "Test 5 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001128#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334526#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001128#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334526#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.383273+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.597099+00:00", "publish_state": "published" } } diff --git a/data/test-results/mongodb.json b/data/test-results/mongodb.json index 3035f05daa..503892f76e 100644 --- a/data/test-results/mongodb.json +++ b/data/test-results/mongodb.json @@ -5,10 +5,10 @@ "version": "7.0.31" }, "run": { - "id": "25877355625", + "id": "26658667828", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047975638", - "timestamp": "2026-05-14T18:17:37Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308055", + "timestamp": "2026-05-29T19:47:49Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Binary Existence and Architecture", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047975638#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308055#step:6:1" }, { "name": "Test 2 - Version Check", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047975638#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308055#step:7:1" }, { "name": "Test 3 - Help Output Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047975638#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308055#step:8:1" }, { "name": "Test 4 - Functional Validation (Ping)", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047975638#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308055#step:9:1" }, { "name": "Test 5 - Functional Validation (Insert and Find)", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047975638#step:10:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308055#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 3, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047975638#step:11:1", + "duration_seconds": 4, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308055#step:11:1", "current_version": "7.0.31", "latest_version": "7.0.32", "next_installed_version": "7.0.32", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.383477+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.597283+00:00", "publish_state": "published" } } diff --git a/data/test-results/mongoose.json b/data/test-results/mongoose.json index 625de86294..9c96692486 100644 --- a/data/test-results/mongoose.json +++ b/data/test-results/mongoose.json @@ -5,10 +5,10 @@ "version": "8.4.1" }, "run": { - "id": "25877399008", + "id": "26658707245", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125673", - "timestamp": "2026-05-14T18:18:37Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445554", + "timestamp": "2026-05-29T19:48:42Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 0, + "duration_seconds": 1, "details": [ { "name": "Test 1 - Check Module Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125673#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445554#step:7:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125673#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445554#step:8:1" }, { "name": "Test 3 - Check Help Output or Configuration", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125673#step:9:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445554#step:9:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125673#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445554#step:10:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125673#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445554#step:11:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125673#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445554#step:12:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.383702+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.597494+00:00", "publish_state": "published" } } diff --git a/data/test-results/monkey.json b/data/test-results/monkey.json index 910511a202..23a0ff73bd 100644 --- a/data/test-results/monkey.json +++ b/data/test-results/monkey.json @@ -5,10 +5,10 @@ "version": "1.8.3" }, "run": { - "id": "25877371674", + "id": "26658681575", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031010", - "timestamp": "2026-05-14T18:17:58Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357276", + "timestamp": "2026-05-29T19:48:06Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031010#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357276#step:6:1" }, { "name": "Test 2 - Version Check", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031010#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357276#step:7:1" }, { "name": "Test 3 - Help Output Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031010#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357276#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031010#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357276#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 3, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031010#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357276#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 3, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031010#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357276#step:11:1", "current_version": "1.8.3", "latest_version": "1.8.4", "next_installed_version": "1.8.4", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.383923+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.597675+00:00", "publish_state": "published" } } diff --git a/data/test-results/moosefs.json b/data/test-results/moosefs.json index 16a27da8bf..ed99374918 100644 --- a/data/test-results/moosefs.json +++ b/data/test-results/moosefs.json @@ -5,10 +5,10 @@ "version": "3.0.117-1" }, "run": { - "id": "25877392111", + "id": "26658699892", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096546", - "timestamp": "2026-05-14T18:18:22Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421108", + "timestamp": "2026-05-29T19:48:30Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096546#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421108#step:6:1" }, { "name": "Test 2 - Version Check", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096546#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421108#step:7:1" }, { "name": "Test 3 - Help Output Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096546#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421108#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096546#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421108#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096546#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421108#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096546#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421108#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.384161+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.597862+00:00", "publish_state": "published" } } diff --git a/data/test-results/mopac.json b/data/test-results/mopac.json index 4c22d6f9c5..d7243f1b81 100644 --- a/data/test-results/mopac.json +++ b/data/test-results/mopac.json @@ -5,10 +5,10 @@ "version": "22.0.6+dfsg-1" }, "run": { - "id": "25877411197", + "id": "26658717942", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175709", - "timestamp": "2026-05-14T18:18:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478602", + "timestamp": "2026-05-29T19:48:50Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 1, + "duration_seconds": 0, "details": [ { "name": "Test 1 - Check mopac binary", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175709#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478602#step:6:1" }, { "name": "Test 2 - Check help/usage (if available)", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175709#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478602#step:7:1" }, { "name": "Test 3 - Run simple calculation", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175709#step:8:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478602#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175709#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478602#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175709#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478602#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175709#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478602#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.384474+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.598125+00:00", "publish_state": "published" } } diff --git a/data/test-results/mosquitto.json b/data/test-results/mosquitto.json index 62ea572947..2f71a0cc6a 100644 --- a/data/test-results/mosquitto.json +++ b/data/test-results/mosquitto.json @@ -5,10 +5,10 @@ "version": "2.0.18" }, "run": { - "id": "25877419588", + "id": "26658724696", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192473", - "timestamp": "2026-05-14T18:19:01Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504007", + "timestamp": "2026-05-29T19:49:02Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check broker and client binaries", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192473#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504007#step:6:1" }, { "name": "Test 2 - Check version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192473#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504007#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192473#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504007#step:8:1" }, { "name": "Test 4 - Verify architecture", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192473#step:9:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504007#step:9:1" }, { "name": "Test 5 - Functional publish and subscribe", "status": "passed", "duration_seconds": 3, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192473#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504007#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192473#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504007#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.384690+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.598327+00:00", "publish_state": "published" } } diff --git a/data/test-results/mpfr.json b/data/test-results/mpfr.json index b41bcba27c..ff7956346a 100644 --- a/data/test-results/mpfr.json +++ b/data/test-results/mpfr.json @@ -5,10 +5,10 @@ "version": "4.2.1" }, "run": { - "id": "25877363365", + "id": "26658674448", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000056", - "timestamp": "2026-05-14T18:17:48Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333830", + "timestamp": "2026-05-29T19:47:55Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 5, + "duration_seconds": 1, "details": [ { "name": "Test 1 - Check mpfr.h exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000056#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333830#step:6:1" }, { "name": "Test 2 - Compile simple C program", "status": "passed", - "duration_seconds": 5, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000056#step:7:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333830#step:7:1" }, { "name": "Test 3 - Run compiled program", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000056#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333830#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000056#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333830#step:9:1" }, { "name": "Test 5 - Library linkage check", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000056#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333830#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000056#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333830#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.384918+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.598505+00:00", "publish_state": "published" } } diff --git a/data/test-results/ms-openjdk.json b/data/test-results/ms-openjdk.json index 7fdbfb881a..c5f50f18eb 100644 --- a/data/test-results/ms-openjdk.json +++ b/data/test-results/ms-openjdk.json @@ -5,10 +5,10 @@ "version": "11.0.12" }, "run": { - "id": "25877431862", + "id": "26658734615", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265172", - "timestamp": "2026-05-14T18:19:22Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537184", + "timestamp": "2026-05-29T19:49:16Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 0, + "duration_seconds": 1, "details": [ { "name": "Test 1 - Check package-specific baseline markers", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265172#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537184#step:7:1" }, { "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265172#step:8:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537184#step:8:1" }, { "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265172#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537184#step:9:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265172#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537184#step:10:1" }, { "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265172#step:11:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537184#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265172#step:12:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537184#step:12:1", "current_version": "11.0.12", "latest_version": "11.0.28", "next_installed_version": "11.0.28", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "validated_next_release", - "production_refreshed_at": "2026-05-14T19:37:17.385126+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.598677+00:00", "publish_state": "published" } } diff --git a/data/test-results/msquic.json b/data/test-results/msquic.json index a2ea1abdf1..46c4255957 100644 --- a/data/test-results/msquic.json +++ b/data/test-results/msquic.json @@ -5,10 +5,10 @@ "version": "2.1.1" }, "run": { - "id": "25877431862", + "id": "26658734615", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265895", - "timestamp": "2026-05-14T18:19:25Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537352", + "timestamp": "2026-05-29T19:49:13Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 1, + "duration_seconds": 2, "details": [ { "name": "Test 1 - Check package-specific baseline markers", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265895#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537352#step:7:1" }, { "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265895#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537352#step:8:1" }, { "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265895#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537352#step:9:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265895#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537352#step:10:1" }, { "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265895#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537352#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265895#step:12:1", + "duration_seconds": 2, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537352#step:12:1", "current_version": "2.1.1", "latest_version": "2.5.8", "next_installed_version": "2.5.8", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.385316+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.598850+00:00", "publish_state": "published" } } diff --git a/data/test-results/multipass.json b/data/test-results/multipass.json index 4b64c4fbcb..005a56972f 100644 --- a/data/test-results/multipass.json +++ b/data/test-results/multipass.json @@ -2,13 +2,13 @@ "schema_version": "2.0", "package": { "name": "Multipass", - "version": "1.16.2" + "version": "1.16.3" }, "run": { - "id": "25877371674", + "id": "26658681575", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031612", - "timestamp": "2026-05-14T18:18:00Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358467", + "timestamp": "2026-05-29T19:48:07Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check multipass binary", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031612#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358467#step:6:1" }, { "name": "Test 2 - Check version command", "status": "passed", "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031612#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358467#step:7:1" }, { "name": "Test 3 - Check help command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031612#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358467#step:8:1" }, { "name": "Test 4 - List available images (find)", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031612#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358467#step:9:1" }, { "name": "Test 5 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031612#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358467#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031612#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358467#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.385522+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.599035+00:00", "publish_state": "published" } } diff --git a/data/test-results/mummer.json b/data/test-results/mummer.json index 21fe9dd362..1c3d2e8aa3 100644 --- a/data/test-results/mummer.json +++ b/data/test-results/mummer.json @@ -5,10 +5,10 @@ "version": "3.23+dfsg-8" }, "run": { - "id": "25877411197", + "id": "26658717942", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175289", - "timestamp": "2026-05-14T18:18:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480068", + "timestamp": "2026-05-29T19:48:53Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175289#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480068#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175289#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480068#step:7:1" }, { "name": "Test 3 - Check Help Output or Configuration", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175289#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480068#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175289#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480068#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175289#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480068#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175289#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480068#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.385732+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.599216+00:00", "publish_state": "published" } } diff --git a/data/test-results/munge.json b/data/test-results/munge.json index 288981879c..0c4fc7d2bc 100644 --- a/data/test-results/munge.json +++ b/data/test-results/munge.json @@ -5,10 +5,10 @@ "version": "0.5.15" }, "run": { - "id": "25877419588", + "id": "26658724696", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192446", - "timestamp": "2026-05-14T18:18:55Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504032", + "timestamp": "2026-05-29T19:49:03Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check client and daemon binaries", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192446#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504032#step:6:1" }, { "name": "Test 2 - Check version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192446#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504032#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192446#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504032#step:8:1" }, { "name": "Test 4 - Verify architecture", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192446#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504032#step:9:1" }, { "name": "Test 5 - Functional credential encode and decode", "status": "passed", "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192446#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504032#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192446#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504032#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.385982+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.599423+00:00", "publish_state": "published" } } diff --git a/data/test-results/murmurhash.json b/data/test-results/murmurhash.json index 309bf00acb..92e6f36fbb 100644 --- a/data/test-results/murmurhash.json +++ b/data/test-results/murmurhash.json @@ -5,10 +5,10 @@ "version": "1.0.15" }, "run": { - "id": "25877363365", + "id": "26658674448", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001015", - "timestamp": "2026-05-14T18:17:48Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334572", + "timestamp": "2026-05-29T19:47:58Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Import hash extension", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001015#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334572#step:6:1" }, { "name": "Test 2 - Hash unicode and bytes consistently", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001015#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334572#step:7:1" }, { "name": "Test 3 - Check module API surface", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001015#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334572#step:8:1" }, { "name": "Test 4 - Seeded hash changes output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001015#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334572#step:9:1" }, { "name": "Test 5 - Functional import and hash", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001015#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334572#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001015#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334572#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.386185+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.599597+00:00", "publish_state": "published" } } diff --git a/data/test-results/muscle.json b/data/test-results/muscle.json index d8d444c100..4932fcd846 100644 --- a/data/test-results/muscle.json +++ b/data/test-results/muscle.json @@ -5,10 +5,10 @@ "version": "v5.2" }, "run": { - "id": "25877411197", + "id": "26658717942", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175267", - "timestamp": "2026-05-14T18:18:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479939", + "timestamp": "2026-05-29T19:48:52Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 174, + "duration_seconds": 168, "details": [ { "name": "Test 1 - Check MUSCLE binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175267#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479939#step:6:1" }, { "name": "Test 2 - Check source tag metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175267#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479939#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175267#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479939#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175267#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479939#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175267#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479939#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 174, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175267#step:11:1", + "duration_seconds": 168, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479939#step:11:1", "current_version": "v5.2", "latest_version": "v5.3", "next_installed_version": "v5.3", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.386399+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.599780+00:00", "publish_state": "published" } } diff --git a/data/test-results/musl.json b/data/test-results/musl.json index 1eebb15ef4..dd22e4a329 100644 --- a/data/test-results/musl.json +++ b/data/test-results/musl.json @@ -5,10 +5,10 @@ "version": "1.2.4-2" }, "run": { - "id": "25877406767", + "id": "26658714432", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154581", - "timestamp": "2026-05-14T18:18:42Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468543", + "timestamp": "2026-05-29T19:48:49Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check musl-gcc binary", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154581#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468543#step:6:1" }, { "name": "Test 2 - Check version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154581#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468543#step:7:1" }, { "name": "Test 3 - Check toolchain configuration", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154581#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468543#step:8:1" }, { "name": "Test 4 - Verify architecture", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154581#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468543#step:9:1" }, { "name": "Test 5 - Functional compile and run", "status": "passed", "duration_seconds": 3, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154581#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468543#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154581#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468543#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.386595+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.599966+00:00", "publish_state": "published" } } diff --git a/data/test-results/myhdl.json b/data/test-results/myhdl.json index a905df9d7f..30194418ca 100644 --- a/data/test-results/myhdl.json +++ b/data/test-results/myhdl.json @@ -5,10 +5,10 @@ "version": "0.8" }, "run": { - "id": "25877431862", + "id": "26658734615", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265671", - "timestamp": "2026-05-14T18:19:36Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537301", + "timestamp": "2026-05-29T19:49:22Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 12, + "duration_seconds": 11, "details": [ { "name": "Test 1 - Check package-specific baseline markers", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265671#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537301#step:8:1" }, { "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265671#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537301#step:9:1" }, { "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265671#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537301#step:10:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265671#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537301#step:11:1" }, { "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265671#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537301#step:12:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 12, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265671#step:13:1", + "duration_seconds": 11, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537301#step:13:1", "current_version": "0.8", "latest_version": "0.11", "next_installed_version": "0.11", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.386832+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.600150+00:00", "publish_state": "published" } } diff --git a/data/test-results/mysql.json b/data/test-results/mysql.json index 9c32a43228..6de22091b2 100644 --- a/data/test-results/mysql.json +++ b/data/test-results/mysql.json @@ -5,10 +5,10 @@ "version": "Linux" }, "run": { - "id": "25877355625", + "id": "26658667828", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047975649", - "timestamp": "2026-05-14T18:17:37Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575307962", + "timestamp": "2026-05-29T19:47:49Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check mysql client binary", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047975649#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575307962#step:6:1" }, { "name": "Test 2 - Check mysqld binary", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047975649#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575307962#step:7:1" }, { "name": "Test 3 - Check help command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047975649#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575307962#step:8:1" }, { "name": "Test 4 - Check service status", "status": "passed", "duration_seconds": 8, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047975649#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575307962#step:9:1" }, { "name": "Test 5 - Simple connection check", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047975649#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575307962#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047975649#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575307962#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.387039+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.600352+00:00", "publish_state": "published" } } diff --git a/data/test-results/nacos.json b/data/test-results/nacos.json index ee5c254a5c..2c20ad95fe 100644 --- a/data/test-results/nacos.json +++ b/data/test-results/nacos.json @@ -5,10 +5,10 @@ "version": "2.5.0" }, "run": { - "id": "25877399008", + "id": "26658707245", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125334", - "timestamp": "2026-05-14T18:18:31Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575444541", + "timestamp": "2026-05-29T19:48:39Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 17, + "duration_seconds": 13, "details": [ { "name": "Test 1 - Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125334#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575444541#step:6:1" }, { "name": "Test 2 - Version Check", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125334#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575444541#step:7:1" }, { "name": "Test 3 - Help Output or Configuration Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125334#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575444541#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125334#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575444541#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 15, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125334#step:10:1" + "duration_seconds": 11, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575444541#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125334#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575444541#step:11:1", "current_version": "2.5.0", "latest_version": "2.5.1", "next_installed_version": "2.5.1", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.387215+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.600544+00:00", "publish_state": "published" } } diff --git a/data/test-results/nagioscore.json b/data/test-results/nagioscore.json index 05083a2c08..077377324c 100644 --- a/data/test-results/nagioscore.json +++ b/data/test-results/nagioscore.json @@ -5,10 +5,10 @@ "version": "4.5.8" }, "run": { - "id": "25877383844", + "id": "26658692522", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071670", - "timestamp": "2026-05-14T18:18:12Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394954", + "timestamp": "2026-05-29T19:48:20Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071670#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394954#step:6:1" }, { "name": "Test 2 - Version Check", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071670#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394954#step:7:1" }, { "name": "Test 3 - Configuration Parsing", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071670#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394954#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071670#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394954#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 5, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071670#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394954#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 37, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071670#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394954#step:11:1", "current_version": "4.5.8", "latest_version": "4.5.9", "next_installed_version": "4.5.9", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.387388+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.600732+00:00", "publish_state": "published" } } diff --git a/data/test-results/nats.json b/data/test-results/nats.json index 793db231b7..19f8022061 100644 --- a/data/test-results/nats.json +++ b/data/test-results/nats.json @@ -5,10 +5,10 @@ "version": "2.10.26" }, "run": { - "id": "25877363365", + "id": "26658674448", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000997", - "timestamp": "2026-05-14T18:17:46Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334459", + "timestamp": "2026-05-29T19:47:57Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000997#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334459#step:6:1" }, { "name": "Test 2 - Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000997#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334459#step:7:1" }, { "name": "Test 3 - Help Output Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000997#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334459#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000997#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334459#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 3, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000997#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334459#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000997#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334459#step:11:1", "current_version": "2.10.26", "latest_version": "2.10.27", "next_installed_version": "2.10.27", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.387612+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.600918+00:00", "publish_state": "published" } } diff --git a/data/test-results/nebula_graph.json b/data/test-results/nebula_graph.json index fa3838677e..21af0ef908 100644 --- a/data/test-results/nebula_graph.json +++ b/data/test-results/nebula_graph.json @@ -5,10 +5,10 @@ "version": "v3.6.0" }, "run": { - "id": "25877427741", + "id": "26658731236", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218419", - "timestamp": "2026-05-14T18:19:05Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529548", + "timestamp": "2026-05-29T19:49:21Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218419#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529548#step:6:1" }, { "name": "Test 2 - Release Mapping Check", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218419#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529548#step:7:1" }, { "name": "Test 3 - Help Output Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218419#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529548#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218419#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529548#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218419#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529548#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218419#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529548#step:11:1", "current_version": "v3.6.0", "latest_version": "v3.8.0", "next_installed_version": "v3.8.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.387816+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.601097+00:00", "publish_state": "published" } } diff --git a/data/test-results/nemo-agent-toolkit.json b/data/test-results/nemo-agent-toolkit.json index f1419bca91..19b5e07780 100644 --- a/data/test-results/nemo-agent-toolkit.json +++ b/data/test-results/nemo-agent-toolkit.json @@ -5,10 +5,10 @@ "version": "1.1.0" }, "run": { - "id": "25877431862", + "id": "26658734615", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265855", - "timestamp": "2026-05-14T18:19:22Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538277", + "timestamp": "2026-05-29T19:49:17Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 85, + "duration_seconds": 86, "details": [ { "name": "Test 1 - Check package-specific baseline markers", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265855#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538277#step:7:1" }, { "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265855#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538277#step:8:1" }, { "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265855#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538277#step:9:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265855#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538277#step:10:1" }, { "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", "duration_seconds": 39, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265855#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538277#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 46, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265855#step:12:1", + "duration_seconds": 47, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538277#step:12:1", "current_version": "1.1.0", "latest_version": "1.4.3", "next_installed_version": "1.4.3", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.388031+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.601294+00:00", "publish_state": "published" } } diff --git a/data/test-results/nemo.json b/data/test-results/nemo.json index 081b00c5f0..07b1a5ce19 100644 --- a/data/test-results/nemo.json +++ b/data/test-results/nemo.json @@ -5,10 +5,10 @@ "version": "1.21.0" }, "run": { - "id": "25877423406", + "id": "26658727918", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210257", - "timestamp": "2026-05-14T18:19:19Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515862", + "timestamp": "2026-05-29T19:49:18Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check module import", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210257#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515862#step:7:1" }, { "name": "Test 2 - Check exact version", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210257#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515862#step:8:1" }, { "name": "Test 3 - Check package API surface", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210257#step:9:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515862#step:9:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210257#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515862#step:10:1" }, { "name": "Test 5 - Functional validation", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210257#step:11:1" + "duration_seconds": 2, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515862#step:11:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210257#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515862#step:12:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.388217+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.601481+00:00", "publish_state": "published" } } diff --git a/data/test-results/neo4j.json b/data/test-results/neo4j.json index 1bc58c6549..c4853b0702 100644 --- a/data/test-results/neo4j.json +++ b/data/test-results/neo4j.json @@ -5,10 +5,10 @@ "version": "5.26.22" }, "run": { - "id": "25877423406", + "id": "26658727918", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209705", - "timestamp": "2026-05-14T18:19:12Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515988", + "timestamp": "2026-05-29T19:49:08Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Artifact Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209705#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515988#step:6:1" }, { "name": "Test 2 - Version Check", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209705#step:7:1" + "duration_seconds": 2, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515988#step:7:1" }, { "name": "Test 3 - Help Output Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209705#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515988#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209705#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515988#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 14, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209705#step:10:1" + "duration_seconds": 12, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515988#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209705#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515988#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.388443+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.601652+00:00", "publish_state": "published" } } diff --git a/data/test-results/netbsd.json b/data/test-results/netbsd.json index 7fa7054c02..0036b37e8b 100644 --- a/data/test-results/netbsd.json +++ b/data/test-results/netbsd.json @@ -5,10 +5,10 @@ "version": "10.0" }, "run": { - "id": "25877383844", + "id": "26658692522", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071583", - "timestamp": "2026-05-14T18:18:12Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394494", + "timestamp": "2026-05-29T19:48:20Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 105, + "duration_seconds": 104, "details": [ { "name": "Test 1 - Check image archive exists", "status": "passed", "duration_seconds": 7, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071583#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394494#step:6:1" }, { "name": "Test 2 - Check image format", "status": "passed", - "duration_seconds": 8, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071583#step:7:1" + "duration_seconds": 7, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394494#step:7:1" }, { "name": "Test 3 - Check QEMU boot prerequisites", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071583#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394494#step:8:1" }, { "name": "Test 4 - Architecture verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071583#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394494#step:9:1" }, { "name": "Test 5 - Boot baseline image", "status": "passed", "duration_seconds": 90, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071583#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394494#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 111, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071583#step:11:1", + "duration_seconds": 115, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394494#step:11:1", "current_version": "10.0", "latest_version": "10.1", "next_installed_version": "10.1", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.388645+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.601822+00:00", "publish_state": "published" } } diff --git a/data/test-results/netcdf.json b/data/test-results/netcdf.json index 64c49ec881..f32ec0665a 100644 --- a/data/test-results/netcdf.json +++ b/data/test-results/netcdf.json @@ -5,10 +5,10 @@ "version": "4.9.2" }, "run": { - "id": "25877415436", + "id": "26658721315", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180752", - "timestamp": "2026-05-14T18:18:54Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491725", + "timestamp": "2026-05-29T19:48:57Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180752#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491725#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180752#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491725#step:7:1" }, { "name": "Test 3 - Check Help Output or Configuration", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180752#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491725#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180752#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491725#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180752#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491725#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180752#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491725#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.388868+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.602000+00:00", "publish_state": "published" } } diff --git a/data/test-results/netdata.json b/data/test-results/netdata.json index 46ae8cd0e9..83a54e1d75 100644 --- a/data/test-results/netdata.json +++ b/data/test-results/netdata.json @@ -5,10 +5,10 @@ "version": "2.2.6" }, "run": { - "id": "25877367704", + "id": "26658677990", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027157", - "timestamp": "2026-05-14T18:17:55Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347354", + "timestamp": "2026-05-29T19:48:02Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 1, + "duration_seconds": 2, "details": [ { "name": "Test 1 - Check netdata binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027157#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347354#step:6:1" }, { "name": "Test 2 - Check version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027157#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347354#step:7:1" }, { "name": "Test 3 - Check help command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027157#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347354#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027157#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347354#step:9:1" }, { "name": "Test 5 - Functional validation", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027157#step:10:1" + "duration_seconds": 2, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347354#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027157#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347354#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.389048+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.602172+00:00", "publish_state": "published" } } diff --git a/data/test-results/netplan.json b/data/test-results/netplan.json index 1cdef6bcca..3ddfce223c 100644 --- a/data/test-results/netplan.json +++ b/data/test-results/netplan.json @@ -5,10 +5,10 @@ "version": "1.1.2-8ubuntu1~24.04.2" }, "run": { - "id": "25877379982", + "id": "26658688675", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057206", - "timestamp": "2026-05-14T18:18:06Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380533", + "timestamp": "2026-05-29T19:48:15Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057206#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380533#step:6:1" }, { "name": "Test 2 - Check Version Metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057206#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380533#step:7:1" }, { "name": "Test 3 - Check Help Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057206#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380533#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057206#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380533#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057206#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380533#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057206#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380533#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.389342+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.602476+00:00", "publish_state": "published" } } diff --git a/data/test-results/nettle.json b/data/test-results/nettle.json index 5e6f23e6b0..a59f6044ac 100644 --- a/data/test-results/nettle.json +++ b/data/test-results/nettle.json @@ -5,10 +5,10 @@ "version": "3.9" }, "run": { - "id": "25877406767", + "id": "26658714432", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155475", - "timestamp": "2026-05-14T18:18:43Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469202", + "timestamp": "2026-05-29T19:48:48Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 3, + "duration_seconds": 1, "details": [ { "name": "Test 1 - Check nettle-hash binary", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155475#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469202#step:6:1" }, { "name": "Test 2 - Perform SHA256 hash", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155475#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469202#step:7:1" }, { "name": "Test 3 - Check pkg-config flags", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155475#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469202#step:8:1" }, { "name": "Test 4 - Verify architecture", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155475#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469202#step:9:1" }, { "name": "Test 5 - Hash data and compile a program", "status": "passed", - "duration_seconds": 3, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155475#step:10:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469202#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155475#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469202#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.389547+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.602659+00:00", "publish_state": "published" } } diff --git a/data/test-results/netty.json b/data/test-results/netty.json index e4bae352dd..a96b76bcc5 100644 --- a/data/test-results/netty.json +++ b/data/test-results/netty.json @@ -5,10 +5,10 @@ "version": "4.1.100.Final" }, "run": { - "id": "25877359516", + "id": "26658670904", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991510", - "timestamp": "2026-05-14T18:17:44Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321900", + "timestamp": "2026-05-29T19:47:53Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 30, + "duration_seconds": 29, "details": [ { "name": "Test 1 - Check Java and Maven binaries", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991510#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321900#step:6:1" }, { "name": "Test 2 - Check version commands", "status": "passed", - "duration_seconds": 4, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991510#step:7:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321900#step:7:1" }, { "name": "Test 3 - Check Maven help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991510#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321900#step:8:1" }, { "name": "Test 4 - Verify architecture", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991510#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321900#step:9:1" }, { "name": "Test 5 - Functional compile and run", "status": "passed", - "duration_seconds": 26, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991510#step:10:1" + "duration_seconds": 28, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321900#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991510#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321900#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.389787+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.602843+00:00", "publish_state": "published" } } diff --git a/data/test-results/neuralforecast.json b/data/test-results/neuralforecast.json index 0abc99b72a..6099a3af72 100644 --- a/data/test-results/neuralforecast.json +++ b/data/test-results/neuralforecast.json @@ -5,10 +5,10 @@ "version": "0.0.2" }, "run": { - "id": "25877431862", + "id": "26658734615", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265178", - "timestamp": "2026-05-14T18:19:28Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538345", + "timestamp": "2026-05-29T19:49:17Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 96, + "duration_seconds": 98, "details": [ { "name": "Test 1 - Package installed", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265178#step:7:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538345#step:7:1" }, { "name": "Test 2 - Version metadata matches baseline", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265178#step:8:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538345#step:8:1" }, { "name": "Test 3 - Installed files metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265178#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538345#step:9:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265178#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538345#step:10:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265178#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538345#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 95, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265178#step:12:1", + "duration_seconds": 97, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538345#step:12:1", "current_version": "0.0.2", "latest_version": "0.0.3", "next_installed_version": "0.0.3", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.390016+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.603026+00:00", "publish_state": "published" } } diff --git a/data/test-results/neuvector.json b/data/test-results/neuvector.json index 68a6f4c4f9..e2a0f33481 100644 --- a/data/test-results/neuvector.json +++ b/data/test-results/neuvector.json @@ -5,10 +5,10 @@ "version": "5.4.3" }, "run": { - "id": "25877367704", + "id": "26658677990", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027161", - "timestamp": "2026-05-14T18:17:55Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346879", + "timestamp": "2026-05-29T19:48:02Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 7, + "duration_seconds": 8, "details": [ { "name": "Test 1 - Artifact Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027161#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346879#step:6:1" }, { "name": "Test 2 - Version Check", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027161#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346879#step:7:1" }, { "name": "Test 3 - Configuration Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027161#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346879#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027161#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346879#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027161#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346879#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 6, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027161#step:11:1", + "duration_seconds": 7, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346879#step:11:1", "current_version": "5.4.3", "latest_version": "5.4.4", "next_installed_version": "5.4.4", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.390225+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.603212+00:00", "publish_state": "published" } } diff --git a/data/test-results/new-relic.json b/data/test-results/new-relic.json index 3012529e47..b5058bd8bf 100644 --- a/data/test-results/new-relic.json +++ b/data/test-results/new-relic.json @@ -5,10 +5,10 @@ "version": "1.63.0" }, "run": { - "id": "25877387746", + "id": "26658696365", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083590", - "timestamp": "2026-05-14T18:18:14Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575406608", + "timestamp": "2026-05-29T19:48:26Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,43 +26,43 @@ "name": "Test 1 - Check Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083590#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575406608#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083590#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575406608#step:7:1" }, { "name": "Test 3 - Check Help Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083590#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575406608#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083590#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575406608#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083590#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575406608#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083590#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575406608#step:11:1", "current_version": "1.63.0", - "latest_version": "1.74.4", - "next_installed_version": "1.74.4", + "latest_version": "1.76.0", + "next_installed_version": "1.76.0", "decision": "next_install_validated", "regression_result": "Next version installed successfully on Arm64", - "comparison": "Current pinned New Relic version 1.63.0 passed smoke tests in this run. Regression validation downloaded and extracted the candidate Arm64 artifact from https://github.com/newrelic/infrastructure-agent/releases/download/1.74.4/newrelic-infra_linux_1.74.4_arm64.tar.gz successfully, the candidate bundle resolved to executable Arm64 binaries, and the main binary executed on Arm64 while resolving candidate version 1.74.4." + "comparison": "Current pinned New Relic version 1.63.0 passed smoke tests in this run. Regression validation downloaded and extracted the candidate Arm64 artifact from https://github.com/newrelic/infrastructure-agent/releases/download/1.76.0/newrelic-infra_linux_1.76.0_arm64.tar.gz successfully, the candidate bundle resolved to executable Arm64 binaries, and the main binary executed on Arm64 while resolving candidate version 1.76.0." } ] }, @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.390445+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.603422+00:00", "publish_state": "published" } } diff --git a/data/test-results/nextflow.json b/data/test-results/nextflow.json index 00684b5c41..9ae4b41fb6 100644 --- a/data/test-results/nextflow.json +++ b/data/test-results/nextflow.json @@ -5,10 +5,10 @@ "version": "24.10.5" }, "run": { - "id": "25877359516", + "id": "26658670904", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991459", - "timestamp": "2026-05-14T18:17:43Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321869", + "timestamp": "2026-05-29T19:47:53Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 9, + "duration_seconds": 8, "details": [ { "name": "Test 1 - Check nextflow binary", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991459#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321869#step:6:1" }, { "name": "Test 2 - Check version command", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991459#step:7:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321869#step:7:1" }, { "name": "Test 3 - Check help command", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991459#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321869#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991459#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321869#step:9:1" }, { "name": "Test 5 - Run Hello World pipeline", "status": "passed", "duration_seconds": 7, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991459#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321869#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991459#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321869#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.390661+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.603614+00:00", "publish_state": "published" } } diff --git a/data/test-results/nextjs.json b/data/test-results/nextjs.json index 7288a620eb..a94779ba3f 100644 --- a/data/test-results/nextjs.json +++ b/data/test-results/nextjs.json @@ -5,10 +5,10 @@ "version": "16.2.6" }, "run": { - "id": "25877423406", + "id": "26658727918", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209437", - "timestamp": "2026-05-14T18:19:14Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515909", + "timestamp": "2026-05-29T19:49:12Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Package Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209437#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515909#step:7:1" }, { "name": "Test 2 - Version Check", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209437#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515909#step:8:1" }, { "name": "Test 3 - Help Output Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209437#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515909#step:9:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209437#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515909#step:10:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 4, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209437#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515909#step:11:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209437#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515909#step:12:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.390896+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.603785+00:00", "publish_state": "published" } } diff --git a/data/test-results/nfcore.json b/data/test-results/nfcore.json index a6f5a39a67..13072b4a22 100644 --- a/data/test-results/nfcore.json +++ b/data/test-results/nfcore.json @@ -5,10 +5,10 @@ "version": "4.0.2" }, "run": { - "id": "25877371674", + "id": "26658681575", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031606", - "timestamp": "2026-05-14T18:18:06Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358041", + "timestamp": "2026-05-29T19:48:15Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 5, + "duration_seconds": 4, "details": [ { "name": "Test 1 - Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031606#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358041#step:7:1" }, { "name": "Test 2 - Version Check", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031606#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358041#step:8:1" }, { "name": "Test 3 - Configuration Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031606#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358041#step:9:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031606#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358041#step:10:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 3, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031606#step:11:1" + "duration_seconds": 2, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358041#step:11:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031606#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358041#step:12:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.391102+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.603955+00:00", "publish_state": "published" } } diff --git a/data/test-results/nfs.json b/data/test-results/nfs.json index b5ca7c9aae..19eafcc3e5 100644 --- a/data/test-results/nfs.json +++ b/data/test-results/nfs.json @@ -5,10 +5,10 @@ "version": "1:2.6.4" }, "run": { - "id": "25877423406", + "id": "26658727918", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210264", - "timestamp": "2026-05-14T18:19:05Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515914", + "timestamp": "2026-05-29T19:49:08Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 6, + "duration_seconds": 5, "details": [ { "name": "Test 1 - Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210264#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515914#step:6:1" }, { "name": "Test 2 - Version Check", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210264#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515914#step:7:1" }, { "name": "Test 3 - Help Output Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210264#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515914#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210264#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515914#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 6, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210264#step:10:1" + "duration_seconds": 5, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515914#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210264#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515914#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.391282+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.604122+00:00", "publish_state": "published" } } diff --git a/data/test-results/nginx.json b/data/test-results/nginx.json index 7df51ac599..17a6311095 100644 --- a/data/test-results/nginx.json +++ b/data/test-results/nginx.json @@ -5,10 +5,10 @@ "version": "1.20.1" }, "run": { - "id": "25877355625", + "id": "26658667828", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047975640", - "timestamp": "2026-05-14T18:17:37Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575307946", + "timestamp": "2026-05-29T19:47:49Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,49 +20,49 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 11, + "duration_seconds": 12, "details": [ { "name": "Test 1 - Check nginx binary", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047975640#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575307946#step:6:1" }, { "name": "Test 2 - Check version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047975640#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575307946#step:7:1" }, { "name": "Test 3 - Check help command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047975640#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575307946#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047975640#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575307946#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047975640#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575307946#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 11, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047975640#step:11:1", + "duration_seconds": 12, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575307946#step:11:1", "current_version": "1.20.1", - "latest_version": "1.30.1", - "next_installed_version": "1.30.1", + "latest_version": "1.30.2", + "next_installed_version": "1.30.2", "decision": "next_install_validated", "regression_result": "Next version installed successfully on Arm64", - "comparison": "Current pinned NGINX version 1.20.1 passed smoke tests in this run. Regression validation built and installed candidate version 1.30.1 on Arm64, and the candidate binary reported version 1.30.1." + "comparison": "Current pinned NGINX version 1.20.1 passed smoke tests in this run. Regression validation built and installed candidate version 1.30.2 on Arm64, and the candidate binary reported version 1.30.2." } ] }, @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.391473+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.604308+00:00", "publish_state": "published" } } diff --git a/data/test-results/ngspice.json b/data/test-results/ngspice.json index 1b7b89da8a..bb72b4221f 100644 --- a/data/test-results/ngspice.json +++ b/data/test-results/ngspice.json @@ -5,10 +5,10 @@ "version": "42+ds-3build1" }, "run": { - "id": "25877431862", + "id": "26658734615", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265128", - "timestamp": "2026-05-14T18:19:21Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537316", + "timestamp": "2026-05-29T19:49:14Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check ngspice binary", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265128#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537316#step:7:1" }, { "name": "Test 2 - Check ngspice version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265128#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537316#step:8:1" }, { "name": "Test 3 - Check ngspice help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265128#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537316#step:9:1" }, { "name": "Test 4 - Run empty batch netlist", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265128#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537316#step:10:1" }, { "name": "Test 5 - Solve a minimal resistor circuit", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265128#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537316#step:11:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265128#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537316#step:12:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.391660+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.604483+00:00", "publish_state": "published" } } diff --git a/data/test-results/nifi.json b/data/test-results/nifi.json index d3ff56042d..9a26f9b076 100644 --- a/data/test-results/nifi.json +++ b/data/test-results/nifi.json @@ -5,10 +5,10 @@ "version": "2.9.0" }, "run": { - "id": "25877355625", + "id": "26658667828", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976507", - "timestamp": "2026-05-14T18:17:47Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308946", + "timestamp": "2026-05-29T19:47:55Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 5, "failed": 0, "skipped": 1, - "duration_seconds": 12, + "duration_seconds": 11, "details": [ { "name": "Test 1 - Check launcher script", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976507#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308946#step:11:1" }, { "name": "Test 2 - Check exact version metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976507#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308946#step:12:1" }, { "name": "Test 3 - Check help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976507#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308946#step:13:1" }, { "name": "Test 4 - Architecture verification", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976507#step:14:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308946#step:14:1" }, { "name": "Test 5 - Functional validation", "status": "passed", - "duration_seconds": 12, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976507#step:15:1" + "duration_seconds": 11, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308946#step:15:1" }, { "name": "Test 6 - Regression Validation", "status": "skipped", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976507#step:16:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308946#step:16:1", "current_version": "2.9.0", "latest_version": "2.9.0", "next_installed_version": "not_installed", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "skipped", "regression_decision": "current_is_latest_stable", - "production_refreshed_at": "2026-05-14T19:37:17.391885+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.604663+00:00", "publish_state": "published" } } diff --git a/data/test-results/nmap.json b/data/test-results/nmap.json index 8d49414430..3bd1b53b88 100644 --- a/data/test-results/nmap.json +++ b/data/test-results/nmap.json @@ -5,10 +5,10 @@ "version": "7.94SVN" }, "run": { - "id": "25877423406", + "id": "26658727918", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209426", - "timestamp": "2026-05-14T18:19:09Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516236", + "timestamp": "2026-05-29T19:49:08Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 0, + "duration_seconds": 1, "details": [ { "name": "Test 1 - Check nmap binary", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209426#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516236#step:6:1" }, { "name": "Test 2 - Check version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209426#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516236#step:7:1" }, { "name": "Test 3 - Check help command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209426#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516236#step:8:1" }, { "name": "Test 4 - Scan localhost", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209426#step:9:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516236#step:9:1" }, { "name": "Test 5 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209426#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516236#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209426#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516236#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.392078+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.604846+00:00", "publish_state": "published" } } diff --git a/data/test-results/nmon.json b/data/test-results/nmon.json index 5eb19d8c75..dbb4b89b0d 100644 --- a/data/test-results/nmon.json +++ b/data/test-results/nmon.json @@ -5,10 +5,10 @@ "version": "16p" }, "run": { - "id": "25877423406", + "id": "26658727918", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210085", - "timestamp": "2026-05-14T18:19:05Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516034", + "timestamp": "2026-05-29T19:49:06Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check nmon binary", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210085#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516034#step:6:1" }, { "name": "Test 2 - Check version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210085#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516034#step:7:1" }, { "name": "Test 3 - Check help command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210085#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516034#step:8:1" }, { "name": "Test 4 - Run nmon in recording mode", "status": "passed", "duration_seconds": 3, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210085#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516034#step:9:1" }, { "name": "Test 5 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210085#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516034#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210085#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516034#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.392249+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.605025+00:00", "publish_state": "published" } } diff --git a/data/test-results/nodejs.json b/data/test-results/nodejs.json index 7e78d5de8c..8a994dbd53 100644 --- a/data/test-results/nodejs.json +++ b/data/test-results/nodejs.json @@ -5,10 +5,10 @@ "version": "v20.20.0" }, "run": { - "id": "25877363365", + "id": "26658674448", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001016", - "timestamp": "2026-05-14T18:17:48Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334823", + "timestamp": "2026-05-29T19:47:57Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 3, + "duration_seconds": 10, "details": [ { "name": "Test 1 - Check Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001016#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334823#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001016#step:7:1" + "duration_seconds": 5, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334823#step:7:1" }, { "name": "Test 3 - Check Help Output", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001016#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334823#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001016#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334823#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001016#step:10:1" + "duration_seconds": 4, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334823#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001016#step:11:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334823#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.392437+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.605195+00:00", "publish_state": "published" } } diff --git a/data/test-results/nomad-open-source.json b/data/test-results/nomad-open-source.json index f979e288b0..6a184314cc 100644 --- a/data/test-results/nomad-open-source.json +++ b/data/test-results/nomad-open-source.json @@ -5,10 +5,10 @@ "version": "1.6.1" }, "run": { - "id": "25877399008", + "id": "26658707245", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125582", - "timestamp": "2026-05-14T18:18:32Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445721", + "timestamp": "2026-05-29T19:48:39Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,49 +20,49 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 2, + "duration_seconds": 3, "details": [ { "name": "Test 1 - Check binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125582#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445721#step:6:1" }, { "name": "Test 2 - Check exact version", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125582#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445721#step:7:1" }, { "name": "Test 3 - Check help command", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125582#step:8:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445721#step:8:1" }, { "name": "Test 4 - Architecture verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125582#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445721#step:9:1" }, { "name": "Test 5 - Functional validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125582#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445721#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125582#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445721#step:11:1", "current_version": "1.6.1", - "latest_version": "2.0.1", - "next_installed_version": "2.0.1", + "latest_version": "2.0.2", + "next_installed_version": "2.0.2", "decision": "next_install_validated", "regression_result": "Next version installed successfully on Arm64", - "comparison": "Current pinned Nomad version 1.6.1 passed smoke tests in this run. Regression validation installed candidate version 2.0.1 on Arm64, and the staged binary reported version 2.0.1." + "comparison": "Current pinned Nomad version 1.6.1 passed smoke tests in this run. Regression validation installed candidate version 2.0.2 on Arm64, and the staged binary reported version 2.0.2." } ] }, @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.392633+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.605409+00:00", "publish_state": "published" } } diff --git a/data/test-results/notary.json b/data/test-results/notary.json index a7b76bb7be..7c5dfdf0dc 100644 --- a/data/test-results/notary.json +++ b/data/test-results/notary.json @@ -5,10 +5,10 @@ "version": "1.22.2" }, "run": { - "id": "25877406767", + "id": "26658714432", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155774", - "timestamp": "2026-05-14T18:18:43Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469175", + "timestamp": "2026-05-29T19:48:50Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check notary binary", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155774#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469175#step:6:1" }, { "name": "Test 2 - Check version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155774#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469175#step:7:1" }, { "name": "Test 3 - Check help command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155774#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469175#step:8:1" }, { "name": "Test 4 - List keys (empty)", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155774#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469175#step:9:1" }, { "name": "Test 5 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155774#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469175#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155774#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469175#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.392863+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.605597+00:00", "publish_state": "published" } } diff --git a/data/test-results/notebook.json b/data/test-results/notebook.json index 6109eadede..ccc4da288d 100644 --- a/data/test-results/notebook.json +++ b/data/test-results/notebook.json @@ -5,10 +5,10 @@ "version": "4.0.0" }, "run": { - "id": "25877431862", + "id": "26658734615", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265808", - "timestamp": "2026-05-14T18:19:25Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537293", + "timestamp": "2026-05-29T19:49:15Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 16, + "duration_seconds": 17, "details": [ { "name": "Test 1 - Package installed", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265808#step:7:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537293#step:7:1" }, { "name": "Test 2 - Version metadata matches baseline", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265808#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537293#step:8:1" }, { "name": "Test 3 - Installed files metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265808#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537293#step:9:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265808#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537293#step:10:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265808#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537293#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 16, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265808#step:12:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537293#step:12:1", "current_version": "4.0.0", "latest_version": "4.0.1", "next_installed_version": "4.0.1", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.393065+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.605778+00:00", "publish_state": "published" } } diff --git a/data/test-results/nova.json b/data/test-results/nova.json index 27ee658837..cebfa75907 100644 --- a/data/test-results/nova.json +++ b/data/test-results/nova.json @@ -5,10 +5,10 @@ "version": "29.2.0" }, "run": { - "id": "25877359516", + "id": "26658670904", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991071", - "timestamp": "2026-05-14T18:17:44Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321824", + "timestamp": "2026-05-29T19:47:53Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991071#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321824#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991071#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321824#step:7:1" }, { "name": "Test 3 - Check Help Output", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991071#step:8:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321824#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991071#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321824#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991071#step:10:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321824#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991071#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321824#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.393283+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.605960+00:00", "publish_state": "published" } } diff --git a/data/test-results/npm.json b/data/test-results/npm.json index fec56866a1..c39bb184b2 100644 --- a/data/test-results/npm.json +++ b/data/test-results/npm.json @@ -5,10 +5,10 @@ "version": "10.8.2" }, "run": { - "id": "25877415436", + "id": "26658721315", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180710", - "timestamp": "2026-05-14T18:18:50Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491825", + "timestamp": "2026-05-29T19:48:56Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 4, + "duration_seconds": 5, "details": [ { "name": "Test 1 - Check npm binary", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180710#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491825#step:6:1" }, { "name": "Test 2 - Check version command", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180710#step:7:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491825#step:7:1" }, { "name": "Test 3 - Check registry configuration", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180710#step:8:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491825#step:8:1" }, { "name": "Test 4 - Verify architecture", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180710#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491825#step:9:1" }, { "name": "Test 5 - Install and execute a package", "status": "passed", - "duration_seconds": 3, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180710#step:10:1" + "duration_seconds": 4, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491825#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180710#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491825#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.393464+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.606144+00:00", "publish_state": "published" } } diff --git a/data/test-results/nsq.json b/data/test-results/nsq.json index 56cae35b6f..5baece67df 100644 --- a/data/test-results/nsq.json +++ b/data/test-results/nsq.json @@ -5,10 +5,10 @@ "version": "1.2.1" }, "run": { - "id": "25877427741", + "id": "26658731236", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218895", - "timestamp": "2026-05-14T18:19:11Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529159", + "timestamp": "2026-05-29T19:49:11Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 2, + "duration_seconds": 1, "details": [ { "name": "Test 1 - Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218895#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529159#step:6:1" }, { "name": "Test 2 - Version Check", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218895#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529159#step:7:1" }, { "name": "Test 3 - Help Output Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218895#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529159#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218895#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529159#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218895#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529159#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218895#step:11:1", + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529159#step:11:1", "current_version": "1.2.1", "latest_version": "1.3.0", "next_installed_version": "1.3.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.393635+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.606354+00:00", "publish_state": "published" } } diff --git a/data/test-results/numpy.json b/data/test-results/numpy.json index 35031388b1..f1d75ae24b 100644 --- a/data/test-results/numpy.json +++ b/data/test-results/numpy.json @@ -2,13 +2,13 @@ "schema_version": "2.0", "package": { "name": "NumPy", - "version": "2.4.4" + "version": "2.4.6" }, "run": { - "id": "25877419588", + "id": "26658724696", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192492", - "timestamp": "2026-05-14T18:19:05Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504202", + "timestamp": "2026-05-29T19:49:01Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Import NumPy", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192492#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504202#step:6:1" }, { "name": "Test 2 - Check installed version", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192492#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504202#step:7:1" }, { "name": "Test 3 - Check f2py help", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192492#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504202#step:8:1" }, { "name": "Test 4 - Verify architecture", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192492#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504202#step:9:1" }, { "name": "Test 5 - Run array operations", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192492#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504202#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192492#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504202#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.393871+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.606556+00:00", "publish_state": "published" } } diff --git a/data/test-results/nvidia-container-toolkit.json b/data/test-results/nvidia-container-toolkit.json index a7a3146adf..3e9a3974e0 100644 --- a/data/test-results/nvidia-container-toolkit.json +++ b/data/test-results/nvidia-container-toolkit.json @@ -5,10 +5,10 @@ "version": "1.6.0" }, "run": { - "id": "25877431862", + "id": "26658734615", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265978", - "timestamp": "2026-05-14T18:19:22Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537961", + "timestamp": "2026-05-29T19:49:17Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 6, + "duration_seconds": 3, "details": [ { "name": "Test 1 - Check package-specific baseline markers", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265978#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537961#step:8:1" }, { "name": "Test 2 - Check published package metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265978#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537961#step:9:1" }, { "name": "Test 3 - Check package-specific docs and manifests", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265978#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537961#step:10:1" }, { "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265978#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537961#step:11:1" }, { "name": "Test 5 - Run scoped Arm preflight proof", "status": "passed", - "duration_seconds": 5, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265978#step:12:1" + "duration_seconds": 2, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537961#step:12:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265978#step:13:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537961#step:13:1", "current_version": "1.6.0", "latest_version": "1.9.0", "next_installed_version": "1.9.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.394178+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.606822+00:00", "publish_state": "published" } } diff --git a/data/test-results/nvidia-gpu-driver-container.json b/data/test-results/nvidia-gpu-driver-container.json index 8ae4add946..7da0b9ad00 100644 --- a/data/test-results/nvidia-gpu-driver-container.json +++ b/data/test-results/nvidia-gpu-driver-container.json @@ -5,10 +5,10 @@ "version": "535.288.01" }, "run": { - "id": "25877431862", + "id": "26658734615", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265800", - "timestamp": "2026-05-14T18:19:23Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538001", + "timestamp": "2026-05-29T19:49:18Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 1, + "duration_seconds": 2, "details": [ { "name": "Test 1 - Check package-specific baseline markers", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265800#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538001#step:8:1" }, { "name": "Test 2 - Check published package metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265800#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538001#step:9:1" }, { "name": "Test 3 - Check package-specific docs and manifests", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265800#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538001#step:10:1" }, { "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265800#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538001#step:11:1" }, { "name": "Test 5 - Run scoped Arm preflight proof", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265800#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538001#step:12:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265800#step:13:1", + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538001#step:13:1", "current_version": "535.288.01", "latest_version": "595.71.05", "next_installed_version": "595.71.05-ubuntu22.04", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.394388+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.607013+00:00", "publish_state": "published" } } diff --git a/data/test-results/nvidia-gpu-operator.json b/data/test-results/nvidia-gpu-operator.json index 726c16a604..9bf2aa5749 100644 --- a/data/test-results/nvidia-gpu-operator.json +++ b/data/test-results/nvidia-gpu-operator.json @@ -5,10 +5,10 @@ "version": "1.11.0" }, "run": { - "id": "25877431862", + "id": "26658734615", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265764", - "timestamp": "2026-05-14T18:19:22Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538427", + "timestamp": "2026-05-29T19:49:17Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 5, + "duration_seconds": 4, "details": [ { "name": "Test 1 - Check package-specific baseline markers", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265764#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538427#step:8:1" }, { "name": "Test 2 - Check published package metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265764#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538427#step:9:1" }, { "name": "Test 3 - Check package-specific docs and manifests", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265764#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538427#step:10:1" }, { "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265764#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538427#step:11:1" }, { "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265764#step:12:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538427#step:12:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 3, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265764#step:13:1", + "duration_seconds": 4, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538427#step:13:1", "current_version": "1.11.0", "latest_version": "26.3.0", "next_installed_version": "26.3.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.394600+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.607199+00:00", "publish_state": "published" } } diff --git a/data/test-results/nvimagecodec.json b/data/test-results/nvimagecodec.json index 60d3090421..8db9a37048 100644 --- a/data/test-results/nvimagecodec.json +++ b/data/test-results/nvimagecodec.json @@ -5,10 +5,10 @@ "version": "0.2.0" }, "run": { - "id": "25877431862", + "id": "26658734615", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265913", - "timestamp": "2026-05-14T18:19:23Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538129", + "timestamp": "2026-05-29T19:49:17Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 58, + "duration_seconds": 52, "details": [ { "name": "Test 1 - Check package-specific baseline markers", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265913#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538129#step:8:1" }, { "name": "Test 2 - Check published package metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265913#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538129#step:9:1" }, { "name": "Test 3 - Check package-specific docs and manifests", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265913#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538129#step:10:1" }, { "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265913#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538129#step:11:1" }, { "name": "Test 5 - Run scoped Arm preflight proof", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265913#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538129#step:12:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 58, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265913#step:13:1", + "duration_seconds": 52, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538129#step:13:1", "current_version": "0.2.0", "latest_version": "0.8.0", "next_installed_version": "0.8.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.394827+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.607435+00:00", "publish_state": "published" } } diff --git a/data/test-results/nvsentinel.json b/data/test-results/nvsentinel.json index 91f77b5c02..6b6aa98995 100644 --- a/data/test-results/nvsentinel.json +++ b/data/test-results/nvsentinel.json @@ -5,10 +5,10 @@ "version": "0.3.0" }, "run": { - "id": "25877431862", + "id": "26658734615", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048266074", - "timestamp": "2026-05-14T18:19:23Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537892", + "timestamp": "2026-05-29T19:49:13Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check package-specific baseline markers", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048266074#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537892#step:8:1" }, { "name": "Test 2 - Check published package metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048266074#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537892#step:9:1" }, { "name": "Test 3 - Check package-specific docs and manifests", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048266074#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537892#step:10:1" }, { "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048266074#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537892#step:11:1" }, { "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "duration_seconds": 3, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048266074#step:12:1" + "duration_seconds": 2, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537892#step:12:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048266074#step:13:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537892#step:13:1", "current_version": "0.3.0", "latest_version": "1.1.0", "next_installed_version": "1.1.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.395043+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.607620+00:00", "publish_state": "published" } } diff --git a/data/test-results/nvshmem.json b/data/test-results/nvshmem.json index 9c7e5331e4..546de3b246 100644 --- a/data/test-results/nvshmem.json +++ b/data/test-results/nvshmem.json @@ -5,10 +5,10 @@ "version": "2.10.1" }, "run": { - "id": "25877431862", + "id": "26658734615", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265986", - "timestamp": "2026-05-14T18:19:22Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538395", + "timestamp": "2026-05-29T19:49:21Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 3, + "duration_seconds": 2, "details": [ { "name": "Test 1 - Check package-specific baseline markers", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265986#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538395#step:8:1" }, { "name": "Test 2 - Check published package metadata", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265986#step:9:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538395#step:9:1" }, { "name": "Test 3 - Check package-specific docs and manifests", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265986#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538395#step:10:1" }, { "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265986#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538395#step:11:1" }, { "name": "Test 5 - Run scoped Arm preflight proof", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265986#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538395#step:12:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 3, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265986#step:13:1", + "duration_seconds": 2, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538395#step:13:1", "current_version": "2.10.1", "latest_version": "3.6.5-0", "next_installed_version": "3.6.5-0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.395228+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.607797+00:00", "publish_state": "published" } } diff --git a/data/test-results/nwchem.json b/data/test-results/nwchem.json index ad3e01b9ed..900ea312fc 100644 --- a/data/test-results/nwchem.json +++ b/data/test-results/nwchem.json @@ -5,10 +5,10 @@ "version": "7.2.2-1build3" }, "run": { - "id": "25877395502", + "id": "26658703674", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109917", - "timestamp": "2026-05-14T18:18:26Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433146", + "timestamp": "2026-05-29T19:48:33Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check nwchem binary", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109917#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433146#step:6:1" }, { "name": "Test 2 - Check Installed Package Version", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109917#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433146#step:7:1" }, { "name": "Test 3 - Check Example Input Availability", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109917#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433146#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109917#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433146#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109917#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433146#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109917#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433146#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.395428+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.607975+00:00", "publish_state": "published" } } diff --git a/data/test-results/nx-cugraph.json b/data/test-results/nx-cugraph.json index 31f01b77f4..2dbf0c6ef6 100644 --- a/data/test-results/nx-cugraph.json +++ b/data/test-results/nx-cugraph.json @@ -5,10 +5,10 @@ "version": "25.06.00" }, "run": { - "id": "25877431862", + "id": "26658734615", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265689", - "timestamp": "2026-05-14T18:19:21Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538196", + "timestamp": "2026-05-29T19:49:18Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check package-specific baseline markers", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265689#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538196#step:8:1" }, { "name": "Test 2 - Check published package metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265689#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538196#step:9:1" }, { "name": "Test 3 - Check package-specific docs and manifests", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265689#step:10:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538196#step:10:1" }, { "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265689#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538196#step:11:1" }, { "name": "Test 5 - Run scoped Arm preflight proof", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265689#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538196#step:12:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265689#step:13:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538196#step:13:1", "current_version": "25.06.00", "latest_version": "26.04.00", "next_installed_version": "26.04.00", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.395636+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.608150+00:00", "publish_state": "published" } } diff --git a/data/test-results/obs.json b/data/test-results/obs.json index 7cb8a3bf84..0d6637dd0c 100644 --- a/data/test-results/obs.json +++ b/data/test-results/obs.json @@ -5,10 +5,10 @@ "version": "0.169.1" }, "run": { - "id": "25877367704", + "id": "26658677990", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027176", - "timestamp": "2026-05-14T18:17:55Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347511", + "timestamp": "2026-05-29T19:48:03Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 1, + "duration_seconds": 0, "details": [ { "name": "Test 1 - Check osc binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027176#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347511#step:6:1" }, { "name": "Test 2 - Check version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027176#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347511#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027176#step:8:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347511#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027176#step:9:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347511#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027176#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347511#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027176#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347511#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.395866+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.608351+00:00", "publish_state": "published" } } diff --git a/data/test-results/ocaml.json b/data/test-results/ocaml.json index 23f55f2806..512db9bce6 100644 --- a/data/test-results/ocaml.json +++ b/data/test-results/ocaml.json @@ -5,10 +5,10 @@ "version": "4.14.1" }, "run": { - "id": "25877395502", + "id": "26658703674", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110057", - "timestamp": "2026-05-14T18:18:25Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432840", + "timestamp": "2026-05-29T19:48:34Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check interpreter and compiler binaries", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110057#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432840#step:6:1" }, { "name": "Test 2 - Check version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110057#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432840#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110057#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432840#step:8:1" }, { "name": "Test 4 - Verify architecture", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110057#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432840#step:9:1" }, { "name": "Test 5 - Functional compile and run", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110057#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432840#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110057#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432840#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.396054+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.608533+00:00", "publish_state": "published" } } diff --git a/data/test-results/oceanbase.json b/data/test-results/oceanbase.json index 36315b43f1..6fbc7f26b2 100644 --- a/data/test-results/oceanbase.json +++ b/data/test-results/oceanbase.json @@ -5,10 +5,10 @@ "version": "4.2.5.1" }, "run": { - "id": "25877395502", + "id": "26658703674", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109519", - "timestamp": "2026-05-14T18:18:26Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432530", + "timestamp": "2026-05-29T19:48:35Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -25,38 +25,38 @@ { "name": "Test 1 - Check observer binary exists", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109519#step:6:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432530#step:6:1" }, { "name": "Test 2 - Check exact baseline version", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109519#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432530#step:7:1" }, { "name": "Test 3 - Check binary architecture", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109519#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432530#step:8:1" }, { "name": "Test 4 - Check runtime dependencies", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109519#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432530#step:9:1" }, { "name": "Test 5 - Functional validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109519#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432530#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 6, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109519#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432530#step:11:1", "current_version": "4.2.5.1", "latest_version": "4.2.5.2", "next_installed_version": "4.2.5.2", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.396263+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.608703+00:00", "publish_state": "published" } } diff --git a/data/test-results/ocm.json b/data/test-results/ocm.json index 856fc296d4..a6a80908e3 100644 --- a/data/test-results/ocm.json +++ b/data/test-results/ocm.json @@ -5,10 +5,10 @@ "version": "0.1.0" }, "run": { - "id": "25877431862", + "id": "26658734615", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265943", - "timestamp": "2026-05-14T18:19:23Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538082", + "timestamp": "2026-05-29T19:49:14Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,46 +20,46 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 16, + "duration_seconds": 14, "details": [ { "name": "Test 1 - Check package-specific baseline markers", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265943#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538082#step:8:1" }, { "name": "Test 2 - Check published package metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265943#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538082#step:9:1" }, { "name": "Test 3 - Check package-specific docs and manifests", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265943#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538082#step:10:1" }, { "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265943#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538082#step:11:1" }, { "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "duration_seconds": 14, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265943#step:12:1" + "duration_seconds": 13, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538082#step:12:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265943#step:13:1", + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538082#step:13:1", "current_version": "0.1.0", - "latest_version": "0.42", - "next_installed_version": "0.42", + "latest_version": "0.43", + "next_installed_version": "0.43", "decision": "limited_cpu_smoke_validated", "regression_result": "Arm preflight proof passed on Arm64", "comparison": "A bounded Arm64 CPU-side source probe validated the next OCM candidate checkout and module identity. This does not build or run the OCM CLI." @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.396447+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.608875+00:00", "publish_state": "published" } } diff --git a/data/test-results/ollama.json b/data/test-results/ollama.json index 6a56e592c6..86d4f9ecee 100644 --- a/data/test-results/ollama.json +++ b/data/test-results/ollama.json @@ -5,10 +5,10 @@ "version": "0.1.0" }, "run": { - "id": "25877431862", + "id": "26658734615", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265742", - "timestamp": "2026-05-14T18:19:23Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538411", + "timestamp": "2026-05-29T19:49:17Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,49 +20,49 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 75, + "duration_seconds": 65, "details": [ { "name": "Test 1 - Check package-specific baseline markers", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265742#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538411#step:8:1" }, { "name": "Test 2 - Check published package metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265742#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538411#step:9:1" }, { "name": "Test 3 - Check package-specific docs and manifests", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265742#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538411#step:10:1" }, { "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265742#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538411#step:11:1" }, { "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "duration_seconds": 52, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265742#step:12:1" + "duration_seconds": 50, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538411#step:12:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 75, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265742#step:13:1", + "duration_seconds": 65, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538411#step:13:1", "current_version": "0.1.0", - "latest_version": "0.23.4", - "next_installed_version": "0.23.4", + "latest_version": "0.24.0", + "next_installed_version": "0.24.0", "decision": "limited_cpu_smoke_validated", "regression_result": "Arm preflight proof passed on Arm64", - "comparison": "The newer stable Ollama 0.23.4 Linux Arm64 binary was downloaded, architecture-checked, started as a local server, and probed through /api/version, /api/tags, and ollama list. No LLM generation is claimed without model weights." + "comparison": "The newer stable Ollama 0.24.0 Linux Arm64 binary was downloaded, architecture-checked, started as a local server, and probed through /api/version, /api/tags, and ollama list. No LLM generation is claimed without model weights." } ] }, @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.396662+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.609045+00:00", "publish_state": "published" } } diff --git a/data/test-results/onednn.json b/data/test-results/onednn.json index 2542086dcb..fa7a2ad6d7 100644 --- a/data/test-results/onednn.json +++ b/data/test-results/onednn.json @@ -5,10 +5,10 @@ "version": "3.1.1" }, "run": { - "id": "25877403044", + "id": "26658710721", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140630", - "timestamp": "2026-05-14T18:18:39Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456346", + "timestamp": "2026-05-29T19:48:43Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Library Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140630#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456346#step:6:1" }, { "name": "Test 2 - Version Check", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140630#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456346#step:7:1" }, { "name": "Test 3 - Configuration Discovery", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140630#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456346#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140630#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456346#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140630#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456346#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140630#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456346#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.396930+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.609211+00:00", "publish_state": "published" } } diff --git a/data/test-results/onnx.json b/data/test-results/onnx.json index 4e1930aa9d..3d2361ee12 100644 --- a/data/test-results/onnx.json +++ b/data/test-results/onnx.json @@ -5,10 +5,10 @@ "version": "1.21.0" }, "run": { - "id": "25877359516", + "id": "26658670904", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991087", - "timestamp": "2026-05-14T18:17:45Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321486", + "timestamp": "2026-05-29T19:47:51Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Import ONNX", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991087#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321486#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991087#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321486#step:7:1" }, { "name": "Test 3 - Check Module Help Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991087#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321486#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991087#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321486#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991087#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321486#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991087#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321486#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.397124+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.609420+00:00", "publish_state": "published" } } diff --git a/data/test-results/open-webui.json b/data/test-results/open-webui.json index e807672f84..0844759bed 100644 --- a/data/test-results/open-webui.json +++ b/data/test-results/open-webui.json @@ -5,10 +5,10 @@ "version": "0.1.124" }, "run": { - "id": "25877431862", + "id": "26658734615", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265709", - "timestamp": "2026-05-14T18:19:24Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538203", + "timestamp": "2026-05-29T19:49:13Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 153, + "duration_seconds": 157, "details": [ { "name": "Test 1 - Package installed", "status": "passed", "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265709#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538203#step:7:1" }, { "name": "Test 2 - Version metadata matches baseline", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265709#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538203#step:8:1" }, { "name": "Test 3 - Installed files metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265709#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538203#step:9:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265709#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538203#step:10:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265709#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538203#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 151, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265709#step:12:1", + "duration_seconds": 155, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538203#step:12:1", "current_version": "0.1.124", "latest_version": "0.1.125", "next_installed_version": "0.1.125", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.397349+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.609597+00:00", "publish_state": "published" } } diff --git a/data/test-results/openHPC.json b/data/test-results/openHPC.json index 12b3118bc1..90d7d780ae 100644 --- a/data/test-results/openHPC.json +++ b/data/test-results/openHPC.json @@ -5,10 +5,10 @@ "version": "v3.2.1.GA" }, "run": { - "id": "25877423406", + "id": "26658727918", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209755", - "timestamp": "2026-05-14T18:19:01Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516289", + "timestamp": "2026-05-29T19:49:08Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 3, + "duration_seconds": 1, "details": [ { "name": "Test 1 - Check release RPM download", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209755#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516289#step:6:1" }, { "name": "Test 2 - Check release tag exists", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209755#step:7:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516289#step:7:1" }, { "name": "Test 3 - Check OpenHPC repo file", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209755#step:8:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516289#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209755#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516289#step:9:1" }, { "name": "Test 5 - Validate Arm repo metadata", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209755#step:10:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516289#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209755#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516289#step:11:1", "current_version": "v3.2.1.GA", "latest_version": "v3.3.GA", "next_installed_version": "v3.3.GA", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.397556+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.609771+00:00", "publish_state": "published" } } diff --git a/data/test-results/openblas.json b/data/test-results/openblas.json index 1978270713..9fc888cbc1 100644 --- a/data/test-results/openblas.json +++ b/data/test-results/openblas.json @@ -5,10 +5,10 @@ "version": "0.3.26" }, "run": { - "id": "25877367704", + "id": "26658677990", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026063", - "timestamp": "2026-05-14T18:17:53Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347203", + "timestamp": "2026-05-29T19:48:02Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check pkg-config", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026063#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347203#step:6:1" }, { "name": "Test 2 - Check header file", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026063#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347203#step:7:1" }, { "name": "Test 3 - Compile and Link Simple Program", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026063#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347203#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026063#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347203#step:9:1" }, { "name": "Test 5 - Functional Validation (Python)", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026063#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347203#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026063#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347203#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.397777+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.609943+00:00", "publish_state": "published" } } diff --git a/data/test-results/opencart.json b/data/test-results/opencart.json index 03314589ab..e9211eaf40 100644 --- a/data/test-results/opencart.json +++ b/data/test-results/opencart.json @@ -5,10 +5,10 @@ "version": "4.1.0.0" }, "run": { - "id": "25877383844", + "id": "26658692522", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071599", - "timestamp": "2026-05-14T18:18:15Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394932", + "timestamp": "2026-05-29T19:48:20Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 2, + "duration_seconds": 3, "details": [ { "name": "Test 1 - Check store front files", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071599#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394932#step:6:1" }, { "name": "Test 2 - Check admin files", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071599#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394932#step:7:1" }, { "name": "Test 3 - Check PHP syntax", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071599#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394932#step:8:1" }, { "name": "Test 4 - Architecture verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071599#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394932#step:9:1" }, { "name": "Test 5 - Functional validation", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071599#step:10:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394932#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071599#step:11:1", + "duration_seconds": 3, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394932#step:11:1", "current_version": "4.1.0.0", "latest_version": "4.1.0.1", "next_installed_version": "4.1.0.1", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.397985+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.610110+00:00", "publish_state": "published" } } diff --git a/data/test-results/opencas.json b/data/test-results/opencas.json index bb4314ca9f..93d6b05e54 100644 --- a/data/test-results/opencas.json +++ b/data/test-results/opencas.json @@ -5,10 +5,10 @@ "version": "24.09.0.0000" }, "run": { - "id": "25877411197", + "id": "26658717942", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175273", - "timestamp": "2026-05-14T18:18:48Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479775", + "timestamp": "2026-05-29T19:48:52Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 110, + "duration_seconds": 112, "details": [ { "name": "Test 1 - Check Open CAS binaries exist", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175273#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479775#step:6:1" }, { "name": "Test 2 - Check version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175273#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479775#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", "duration_seconds": 30, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175273#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479775#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175273#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479775#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 30, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175273#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479775#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 50, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175273#step:11:1", + "duration_seconds": 52, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479775#step:11:1", "current_version": "24.09.0.0000", "latest_version": "25.03", "next_installed_version": "25.03.0.0000", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.398193+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.610295+00:00", "publish_state": "published" } } diff --git a/data/test-results/opencascade.json b/data/test-results/opencascade.json index e9e696e3a2..ec8ea10160 100644 --- a/data/test-results/opencascade.json +++ b/data/test-results/opencascade.json @@ -5,10 +5,10 @@ "version": "7.6.3" }, "run": { - "id": "25877379982", + "id": "26658688675", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057424", - "timestamp": "2026-05-14T18:18:05Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380474", + "timestamp": "2026-05-29T19:48:15Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 5, + "duration_seconds": 2, "details": [ { "name": "Test 1 - Check header files", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057424#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380474#step:6:1" }, { "name": "Test 2 - Check Version Header", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057424#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380474#step:7:1" }, { "name": "Test 3 - Check Linkable Kernel Library", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057424#step:8:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380474#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057424#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380474#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 5, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057424#step:10:1" + "duration_seconds": 2, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380474#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057424#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380474#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.398396+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.610481+00:00", "publish_state": "published" } } diff --git a/data/test-results/opencv.json b/data/test-results/opencv.json index 8ddc1c7033..e15dac1a82 100644 --- a/data/test-results/opencv.json +++ b/data/test-results/opencv.json @@ -5,10 +5,10 @@ "version": "4.13.0.92" }, "run": { - "id": "25877411197", + "id": "26658717942", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175376", - "timestamp": "2026-05-14T18:18:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479432", + "timestamp": "2026-05-29T19:48:52Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -25,38 +25,38 @@ { "name": "Test 1 - Import OpenCV", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175376#step:6:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479432#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175376#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479432#step:7:1" }, { "name": "Test 3 - Check Module Help Output", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175376#step:8:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479432#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175376#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479432#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175376#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479432#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175376#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479432#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.398581+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.610645+00:00", "publish_state": "published" } } diff --git a/data/test-results/openembedded.json b/data/test-results/openembedded.json index cd4d608027..d4cf397a89 100644 --- a/data/test-results/openembedded.json +++ b/data/test-results/openembedded.json @@ -5,10 +5,10 @@ "version": "4.0.33" }, "run": { - "id": "25877392111", + "id": "26658699892", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096569", - "timestamp": "2026-05-14T18:18:23Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421158", + "timestamp": "2026-05-29T19:48:29Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check oe-init-build-env and sibling bitbake", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096569#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421158#step:6:1" }, { "name": "Test 2 - Check BitBake version on baseline", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096569#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421158#step:7:1" }, { "name": "Test 3 - Check layer registration on baseline", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096569#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421158#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096569#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421158#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 18, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096569#step:10:1" + "duration_seconds": 19, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421158#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 25, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096569#step:11:1", + "duration_seconds": 24, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421158#step:11:1", "current_version": "4.0.33", "latest_version": "5.0.17", "next_installed_version": "5.0.17", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.398793+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.610810+00:00", "publish_state": "published" } } diff --git a/data/test-results/openeuler.json b/data/test-results/openeuler.json index c74a2796a2..3b10a592ed 100644 --- a/data/test-results/openeuler.json +++ b/data/test-results/openeuler.json @@ -5,10 +5,10 @@ "version": "24.03-lts-sp2" }, "run": { - "id": "25877419588", + "id": "26658724696", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048191456", - "timestamp": "2026-05-14T18:18:58Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503336", + "timestamp": "2026-05-29T19:49:02Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 9, + "duration_seconds": 8, "details": [ { "name": "Test 1 - Check OpenEuler image exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048191456#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503336#step:6:1" }, { "name": "Test 2 - Check OpenEuler version output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048191456#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503336#step:7:1" }, { "name": "Test 3 - Check dnf help output", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048191456#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503336#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048191456#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503336#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048191456#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503336#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 7, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048191456#step:11:1", + "duration_seconds": 6, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503336#step:11:1", "current_version": "24.03-lts-sp2", "latest_version": "24.03-lts-sp3", "next_installed_version": "24.03-lts-sp3", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.399118+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.611084+00:00", "publish_state": "published" } } diff --git a/data/test-results/openfalcon.json b/data/test-results/openfalcon.json index bab7cb8306..cf0147419d 100644 --- a/data/test-results/openfalcon.json +++ b/data/test-results/openfalcon.json @@ -5,10 +5,10 @@ "version": "0.2.1" }, "run": { - "id": "25877395502", + "id": "26658703674", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110124", - "timestamp": "2026-05-14T18:18:26Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433186", + "timestamp": "2026-05-29T19:48:35Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 12, + "duration_seconds": 13, "details": [ { "name": "Test 1 - Check Open-falcon binaries exist", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110124#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433186#step:6:1" }, { "name": "Test 2 - Check version output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110124#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433186#step:7:1" }, { "name": "Test 3 - Check wrapper help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110124#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433186#step:8:1" }, { "name": "Test 4 - Architecture verification", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110124#step:9:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433186#step:9:1" }, { "name": "Test 5 - Functional dispatcher validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110124#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433186#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 12, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110124#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433186#step:11:1", "current_version": "0.2.1", "latest_version": "0.3", "next_installed_version": "0.3", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.399311+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.611308+00:00", "publish_state": "published" } } diff --git a/data/test-results/openfeature_go.json b/data/test-results/openfeature_go.json index 72e7dad0b2..d3cd8cf968 100644 --- a/data/test-results/openfeature_go.json +++ b/data/test-results/openfeature_go.json @@ -5,10 +5,10 @@ "version": "v1.17.1" }, "run": { - "id": "25877371674", + "id": "26658681575", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031767", - "timestamp": "2026-05-14T18:18:00Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358530", + "timestamp": "2026-05-29T19:48:06Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 5, + "duration_seconds": 6, "details": [ { "name": "Test 1 - Check Module Availability", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031767#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358530#step:7:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031767#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358530#step:8:1" }, { "name": "Test 3 - Check Package Inspection", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031767#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358530#step:9:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031767#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358530#step:10:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 4, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031767#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358530#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031767#step:12:1", + "duration_seconds": 2, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358530#step:12:1", "current_version": "v1.17.1", "latest_version": "v1.17.2", "next_installed_version": "v1.17.2", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.399520+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.611502+00:00", "publish_state": "published" } } diff --git a/data/test-results/openfeature_java.json b/data/test-results/openfeature_java.json index 3a8db98d9a..78d21ef46c 100644 --- a/data/test-results/openfeature_java.json +++ b/data/test-results/openfeature_java.json @@ -5,10 +5,10 @@ "version": "1.14.0" }, "run": { - "id": "25877419588", + "id": "26658724696", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192771", - "timestamp": "2026-05-14T18:18:57Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504184", + "timestamp": "2026-05-29T19:49:01Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 26, + "duration_seconds": 31, "details": [ { "name": "Test 1 - Check Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192771#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504184#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192771#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504184#step:7:1" }, { "name": "Test 3 - Check Dependency Resolution", "status": "passed", - "duration_seconds": 19, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192771#step:8:1" + "duration_seconds": 23, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504184#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192771#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504184#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 6, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192771#step:10:1" + "duration_seconds": 7, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504184#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192771#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504184#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.399734+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.611679+00:00", "publish_state": "published" } } diff --git a/data/test-results/openfeature_python.json b/data/test-results/openfeature_python.json index a1cb6f6acf..f1e5161da4 100644 --- a/data/test-results/openfeature_python.json +++ b/data/test-results/openfeature_python.json @@ -5,10 +5,10 @@ "version": "0.9.0" }, "run": { - "id": "25877403044", + "id": "26658710721", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140036", - "timestamp": "2026-05-14T18:18:39Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455611", + "timestamp": "2026-05-29T19:48:42Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 0, + "duration_seconds": 1, "details": [ { "name": "Test 1 - Import SDK", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140036#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455611#step:6:1" }, { "name": "Test 2 - Evaluate flag details", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140036#step:7:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455611#step:7:1" }, { "name": "Test 3 - Configure evaluation context", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140036#step:8:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455611#step:8:1" }, { "name": "Test 4 - Evaluate numeric and object defaults", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140036#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455611#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140036#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455611#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140036#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455611#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.399974+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.611851+00:00", "publish_state": "published" } } diff --git a/data/test-results/openfoam.json b/data/test-results/openfoam.json index c337e3c648..e0dd0b9053 100644 --- a/data/test-results/openfoam.json +++ b/data/test-results/openfoam.json @@ -5,10 +5,10 @@ "version": "1912.200626-2build3" }, "run": { - "id": "25877427741", + "id": "26658731236", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218528", - "timestamp": "2026-05-14T18:19:05Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529207", + "timestamp": "2026-05-29T19:49:14Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 0, + "duration_seconds": 1, "details": [ { "name": "Test 1 - Check icoFoam binary", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218528#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529207#step:6:1" }, { "name": "Test 2 - Check blockMesh binary", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218528#step:7:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529207#step:7:1" }, { "name": "Test 3 - Run Help Command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218528#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529207#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218528#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529207#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218528#step:10:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529207#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218528#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529207#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.400161+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.612017+00:00", "publish_state": "published" } } diff --git a/data/test-results/openfpgaloader.json b/data/test-results/openfpgaloader.json index 2c1630802f..8b13ddb539 100644 --- a/data/test-results/openfpgaloader.json +++ b/data/test-results/openfpgaloader.json @@ -5,10 +5,10 @@ "version": "0.12.0-1" }, "run": { - "id": "25877431862", + "id": "26658734615", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265896", - "timestamp": "2026-05-14T18:19:22Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538004", + "timestamp": "2026-05-29T19:49:14Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check openFPGALoader binary", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265896#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538004#step:7:1" }, { "name": "Test 2 - Check openFPGALoader help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265896#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538004#step:8:1" }, { "name": "Test 3 - List supported boards", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265896#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538004#step:9:1" }, { "name": "Test 4 - List supported cables", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265896#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538004#step:10:1" }, { "name": "Test 5 - List supported FPGA parts", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265896#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538004#step:11:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265896#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538004#step:12:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.400354+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.612184+00:00", "publish_state": "published" } } diff --git a/data/test-results/opengauss.json b/data/test-results/opengauss.json index ba3181b124..cb1f9d7caa 100644 --- a/data/test-results/opengauss.json +++ b/data/test-results/opengauss.json @@ -5,10 +5,10 @@ "version": "7.0.0-RC2.B014" }, "run": { - "id": "25877383844", + "id": "26658692522", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071460", - "timestamp": "2026-05-14T18:18:12Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394310", + "timestamp": "2026-05-29T19:48:19Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check baseline client tooling", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071460#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394310#step:6:1" }, { "name": "Test 2 - Check SQL version query", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071460#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394310#step:7:1" }, { "name": "Test 3 - Check gsql help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071460#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394310#step:8:1" }, { "name": "Test 4 - Architecture verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071460#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394310#step:9:1" }, { "name": "Test 5 - Functional database validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071460#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394310#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "skipped", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071460#step:11:1", + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394310#step:11:1", "current_version": "7.0.0-RC2.B014", "latest_version": "7.0.0-RC2.B015", "next_installed_version": "not_validated", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "skipped", "regression_decision": "no_newer_stable_available", - "production_refreshed_at": "2026-05-14T19:37:17.400550+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.612388+00:00", "publish_state": "published" } } diff --git a/data/test-results/openj9.json b/data/test-results/openj9.json index 3d2c3849d9..ff038f44d9 100644 --- a/data/test-results/openj9.json +++ b/data/test-results/openj9.json @@ -5,10 +5,10 @@ "version": "17.0.17" }, "run": { - "id": "25877399008", + "id": "26658707245", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125728", - "timestamp": "2026-05-14T18:18:32Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445805", + "timestamp": "2026-05-29T19:48:38Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 6, + "duration_seconds": 5, "details": [ { "name": "Test 1 - Check Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125728#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445805#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125728#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445805#step:7:1" }, { "name": "Test 3 - Check Help Output or Configuration", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125728#step:8:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445805#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125728#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445805#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125728#step:10:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445805#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 5, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125728#step:11:1", + "duration_seconds": 4, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445805#step:11:1", "current_version": "17.0.17", "latest_version": "17.0.18.1", "next_installed_version": "17.0.18", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.400758+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.612574+00:00", "publish_state": "published" } } diff --git a/data/test-results/openkruise.json b/data/test-results/openkruise.json index 5a2e85f693..67a08fee8e 100644 --- a/data/test-results/openkruise.json +++ b/data/test-results/openkruise.json @@ -5,10 +5,10 @@ "version": "1.8.0" }, "run": { - "id": "25877392111", + "id": "26658699892", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096552", - "timestamp": "2026-05-14T18:18:25Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421145", + "timestamp": "2026-05-29T19:48:30Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Artifact Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096552#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421145#step:6:1" }, { "name": "Test 2 - Version Check", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096552#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421145#step:7:1" }, { "name": "Test 3 - Help Output Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096552#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421145#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096552#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421145#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096552#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421145#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096552#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421145#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.400954+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.612755+00:00", "publish_state": "published" } } diff --git a/data/test-results/openlane.json b/data/test-results/openlane.json index 47fa3be4e7..62bb4c8d94 100644 --- a/data/test-results/openlane.json +++ b/data/test-results/openlane.json @@ -5,10 +5,10 @@ "version": "2022.05.22_02.07.28" }, "run": { - "id": "25877431862", + "id": "26658734615", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265878", - "timestamp": "2026-05-14T18:19:25Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537956", + "timestamp": "2026-05-29T19:49:16Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 11, + "duration_seconds": 8, "details": [ { "name": "Test 1 - Check package-specific baseline markers", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265878#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537956#step:8:1" }, { "name": "Test 2 - Check published package metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265878#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537956#step:9:1" }, { "name": "Test 3 - Check package-specific docs and manifests", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265878#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537956#step:10:1" }, { "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265878#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537956#step:11:1" }, { "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", "duration_seconds": 3, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265878#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537956#step:12:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 8, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265878#step:13:1", + "duration_seconds": 5, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537956#step:13:1", "current_version": "2022.05.22_02.07.28", "latest_version": "0.23", "next_installed_version": "0.23", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.401131+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.612924+00:00", "publish_state": "published" } } diff --git a/data/test-results/openldap.json b/data/test-results/openldap.json index 991aa2d44a..317a89a072 100644 --- a/data/test-results/openldap.json +++ b/data/test-results/openldap.json @@ -5,10 +5,10 @@ "version": "2.6.10+dfsg-0ubuntu0.24.04.1" }, "run": { - "id": "25877427741", + "id": "26658731236", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218857", - "timestamp": "2026-05-14T18:19:05Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529406", + "timestamp": "2026-05-29T19:49:14Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check server and client binaries", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218857#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529406#step:6:1" }, { "name": "Test 2 - Check version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218857#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529406#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218857#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529406#step:8:1" }, { "name": "Test 4 - Verify architecture", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218857#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529406#step:9:1" }, { "name": "Test 5 - Functional service start and query", "status": "passed", "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218857#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529406#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218857#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529406#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.401310+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.613097+00:00", "publish_state": "published" } } diff --git a/data/test-results/openmcp-control-plane-operator.json b/data/test-results/openmcp-control-plane-operator.json index db3a4aec88..f2a532263e 100644 --- a/data/test-results/openmcp-control-plane-operator.json +++ b/data/test-results/openmcp-control-plane-operator.json @@ -5,10 +5,10 @@ "version": "0.1.6" }, "run": { - "id": "25877435852", + "id": "26658737633", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251801", - "timestamp": "2026-05-14T18:19:15Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550166", + "timestamp": "2026-05-29T19:49:23Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 15, + "duration_seconds": 14, "details": [ { "name": "Test 1 - Download baseline source tag", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251801#step:5:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550166#step:5:1" }, { "name": "Test 2 - Verify expected source layout", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251801#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550166#step:6:1" }, { "name": "Test 3 - Validate Arm64 image manifest", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251801#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550166#step:7:1" }, { "name": "Test 4 - Pull baseline Arm64 image", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251801#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550166#step:8:1" }, { "name": "Test 5 - Inspect baseline image on Arm64", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251801#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550166#step:9:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251801#step:10:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550166#step:10:1", "current_version": "0.1.6", "latest_version": "0.1.19", "next_installed_version": "0.1.19", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.401539+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.613291+00:00", "publish_state": "published" } } diff --git a/data/test-results/openmetrics.json b/data/test-results/openmetrics.json index 3bfa91c299..126a04b48a 100644 --- a/data/test-results/openmetrics.json +++ b/data/test-results/openmetrics.json @@ -5,10 +5,10 @@ "version": "0.25.0" }, "run": { - "id": "25877399008", + "id": "26658707245", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126114", - "timestamp": "2026-05-14T18:18:32Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445244", + "timestamp": "2026-05-29T19:48:40Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Import Library", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126114#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445244#step:6:1" }, { "name": "Test 2 - Check Installed Version", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126114#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445244#step:7:1" }, { "name": "Test 3 - Render API Documentation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126114#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445244#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126114#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445244#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126114#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445244#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126114#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445244#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.401738+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.613487+00:00", "publish_state": "published" } } diff --git a/data/test-results/openmfp-portal.json b/data/test-results/openmfp-portal.json index 046ec4bab1..716280807d 100644 --- a/data/test-results/openmfp-portal.json +++ b/data/test-results/openmfp-portal.json @@ -5,10 +5,10 @@ "version": "0.39.0" }, "run": { - "id": "25877435852", + "id": "26658737633", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251950", - "timestamp": "2026-05-14T18:19:19Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550222", + "timestamp": "2026-05-29T19:49:23Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Download baseline source tag", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251950#step:5:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550222#step:5:1" }, { "name": "Test 2 - Verify expected source layout", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251950#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550222#step:6:1" }, { "name": "Test 3 - Validate Arm64 image manifest", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251950#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550222#step:7:1" }, { "name": "Test 4 - Pull baseline Arm64 image", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251950#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550222#step:8:1" }, { "name": "Test 5 - Inspect baseline image on Arm64", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251950#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550222#step:9:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251950#step:10:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550222#step:10:1", "current_version": "0.39.0", "latest_version": "0.377.209", "next_installed_version": "0.377.209", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.401976+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.613666+00:00", "publish_state": "published" } } diff --git a/data/test-results/openmpi.json b/data/test-results/openmpi.json index 02bf4ded28..09656d16a1 100644 --- a/data/test-results/openmpi.json +++ b/data/test-results/openmpi.json @@ -5,10 +5,10 @@ "version": "4.1.6" }, "run": { - "id": "25877379982", + "id": "26658688675", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056492", - "timestamp": "2026-05-14T18:18:07Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575379805", + "timestamp": "2026-05-29T19:48:15Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check mpirun binary", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056492#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575379805#step:6:1" }, { "name": "Test 2 - Check OpenMPI version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056492#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575379805#step:7:1" }, { "name": "Test 3 - Check MPI compiler configuration", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056492#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575379805#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056492#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575379805#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056492#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575379805#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056492#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575379805#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.402184+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.613847+00:00", "publish_state": "published" } } diff --git a/data/test-results/opennow.json b/data/test-results/opennow.json index 17795acffb..56159e6396 100644 --- a/data/test-results/opennow.json +++ b/data/test-results/opennow.json @@ -5,10 +5,10 @@ "version": "0.0.21" }, "run": { - "id": "25877431862", + "id": "26658734615", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265741", - "timestamp": "2026-05-14T18:19:22Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538063", + "timestamp": "2026-05-29T19:49:16Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check package-specific baseline markers", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265741#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538063#step:8:1" }, { "name": "Test 2 - Check published package metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265741#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538063#step:9:1" }, { "name": "Test 3 - Check package-specific docs and manifests", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265741#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538063#step:10:1" }, { "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265741#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538063#step:11:1" }, { "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "duration_seconds": 17, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265741#step:12:1" + "duration_seconds": 12, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538063#step:12:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 28, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265741#step:13:1", + "duration_seconds": 29, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538063#step:13:1", "current_version": "0.0.21", "latest_version": "1.3.5", "next_installed_version": "1.3.5", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.402383+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.614018+00:00", "publish_state": "published" } } diff --git a/data/test-results/openresty.json b/data/test-results/openresty.json index de9af11a31..b3849a5358 100644 --- a/data/test-results/openresty.json +++ b/data/test-results/openresty.json @@ -5,10 +5,10 @@ "version": "1.27.1.1" }, "run": { - "id": "25877403044", + "id": "26658710721", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140953", - "timestamp": "2026-05-14T18:18:38Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456231", + "timestamp": "2026-05-29T19:48:44Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 60, + "duration_seconds": 61, "details": [ { "name": "Test 1 - Check Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140953#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456231#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140953#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456231#step:7:1" }, { "name": "Test 3 - Check Configuration", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140953#step:8:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456231#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140953#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456231#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140953#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456231#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 60, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140953#step:11:1", + "duration_seconds": 61, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456231#step:11:1", "current_version": "1.27.1.1", "latest_version": "1.27.1.2", "next_installed_version": "1.27.1.2", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.402590+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.614203+00:00", "publish_state": "published" } } diff --git a/data/test-results/openscenegraph.json b/data/test-results/openscenegraph.json index 7b25430635..99959b85f3 100644 --- a/data/test-results/openscenegraph.json +++ b/data/test-results/openscenegraph.json @@ -5,10 +5,10 @@ "version": "3.6.5" }, "run": { - "id": "25877415436", + "id": "26658721315", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181092", - "timestamp": "2026-05-14T18:18:54Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491589", + "timestamp": "2026-05-29T19:48:57Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 7, + "duration_seconds": 2, "details": [ { "name": "Test 1 - Check osgversion binary", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181092#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491589#step:6:1" }, { "name": "Test 2 - Check pkg-config", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181092#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491589#step:7:1" }, { "name": "Test 3 - Compile Simple OSG Program", "status": "passed", - "duration_seconds": 7, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181092#step:8:1" + "duration_seconds": 2, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491589#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181092#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491589#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181092#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491589#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181092#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491589#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.402816+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.614413+00:00", "publish_state": "published" } } diff --git a/data/test-results/opensearch-benchmark.json b/data/test-results/opensearch-benchmark.json index 860add7906..1901452e1c 100644 --- a/data/test-results/opensearch-benchmark.json +++ b/data/test-results/opensearch-benchmark.json @@ -5,10 +5,10 @@ "version": "2.3.0" }, "run": { - "id": "25877387746", + "id": "26658696365", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084572", - "timestamp": "2026-05-14T18:18:16Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407863", + "timestamp": "2026-05-29T19:48:24Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 4, + "duration_seconds": 3, "details": [ { "name": "Test 1 - Check Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084572#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407863#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084572#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407863#step:7:1" }, { "name": "Test 3 - Check Help Output", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084572#step:8:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407863#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084572#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407863#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084572#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407863#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084572#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407863#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.403029+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.614588+00:00", "publish_state": "published" } } diff --git a/data/test-results/opensearch-cli.json b/data/test-results/opensearch-cli.json index 231cdd5103..57d195db97 100644 --- a/data/test-results/opensearch-cli.json +++ b/data/test-results/opensearch-cli.json @@ -5,10 +5,10 @@ "version": "1.1.0" }, "run": { - "id": "25877375677", + "id": "26658685142", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044586", - "timestamp": "2026-05-14T18:18:02Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370852", + "timestamp": "2026-05-29T19:48:11Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044586#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370852#step:6:1" }, { "name": "Test 2 - Version Check", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044586#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370852#step:7:1" }, { "name": "Test 3 - Configuration Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044586#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370852#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044586#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370852#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044586#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370852#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044586#step:11:1", + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370852#step:11:1", "current_version": "1.1.0", "latest_version": "1.2.0", "next_installed_version": "1.2.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.403215+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.614758+00:00", "publish_state": "published" } } diff --git a/data/test-results/opensearch-dashboard.json b/data/test-results/opensearch-dashboard.json index df6e43627b..6707fd0d02 100644 --- a/data/test-results/opensearch-dashboard.json +++ b/data/test-results/opensearch-dashboard.json @@ -5,10 +5,10 @@ "version": "2.19.0" }, "run": { - "id": "25877415436", + "id": "26658721315", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179839", - "timestamp": "2026-05-14T18:18:50Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575490806", + "timestamp": "2026-05-29T19:48:55Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 2, + "duration_seconds": 1, "details": [ { "name": "Test 1 - Check binary existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179839#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575490806#step:6:1" }, { "name": "Test 2 - Check configuration file", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179839#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575490806#step:7:1" }, { "name": "Test 3 - Check plugin utility", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179839#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575490806#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179839#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575490806#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179839#step:10:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575490806#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179839#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575490806#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.403400+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.614925+00:00", "publish_state": "published" } } diff --git a/data/test-results/opensearch-data-prepper.json b/data/test-results/opensearch-data-prepper.json index 86653c0d44..9166ee82fa 100644 --- a/data/test-results/opensearch-data-prepper.json +++ b/data/test-results/opensearch-data-prepper.json @@ -5,10 +5,10 @@ "version": "2.14.0" }, "run": { - "id": "25877367704", + "id": "26658677990", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027200", - "timestamp": "2026-05-14T18:17:55Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347576", + "timestamp": "2026-05-29T19:48:03Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 29, + "duration_seconds": 30, "details": [ { "name": "Test 1 - Artifact Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027200#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347576#step:6:1" }, { "name": "Test 2 - Version Check", "status": "passed", "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027200#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347576#step:7:1" }, { "name": "Test 3 - Configuration Validation", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027200#step:8:1" + "duration_seconds": 3, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347576#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027200#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347576#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 20, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027200#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347576#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 5, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027200#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347576#step:11:1", "current_version": "2.14.0", "latest_version": "2.14.1", "next_installed_version": "2.14.1", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.403617+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.615088+00:00", "publish_state": "published" } } diff --git a/data/test-results/opensearch.json b/data/test-results/opensearch.json index 7fb72c51cd..daa004085a 100644 --- a/data/test-results/opensearch.json +++ b/data/test-results/opensearch.json @@ -5,10 +5,10 @@ "version": "2.19.0" }, "run": { - "id": "25877363365", + "id": "26658674448", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000760", - "timestamp": "2026-05-14T18:17:47Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334439", + "timestamp": "2026-05-29T19:47:57Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check binary existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000760#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334439#step:6:1" }, { "name": "Test 2 - Check config directory", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000760#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334439#step:7:1" }, { "name": "Test 3 - Check plugin script", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000760#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334439#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000760#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334439#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 5, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000760#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334439#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 11, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000760#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334439#step:11:1", "current_version": "2.19.0", "latest_version": "2.19.1", "next_installed_version": "2.19.1", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.404006+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.615439+00:00", "publish_state": "published" } } diff --git a/data/test-results/openshift.json b/data/test-results/openshift.json index 948992e597..f27f4a1011 100644 --- a/data/test-results/openshift.json +++ b/data/test-results/openshift.json @@ -5,10 +5,10 @@ "version": "4.14.0" }, "run": { - "id": "25877415436", + "id": "26658721315", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180622", - "timestamp": "2026-05-14T18:18:50Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491498", + "timestamp": "2026-05-29T19:48:57Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,49 +20,49 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 4, + "duration_seconds": 2, "details": [ { "name": "Test 1 - Check oc binary", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180622#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491498#step:6:1" }, { "name": "Test 2 - Check kubectl binary", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180622#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491498#step:7:1" }, { "name": "Test 3 - Check client version output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180622#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491498#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180622#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491498#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180622#step:10:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491498#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 3, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180622#step:11:1", + "duration_seconds": 2, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491498#step:11:1", "current_version": "4.14.0", - "latest_version": "4.21.15", - "next_installed_version": "4.21.15", + "latest_version": "4.21.16", + "next_installed_version": "4.21.16", "decision": "next_install_validated", "regression_result": "Next version installed successfully on Arm64", - "comparison": "Current pinned OpenShift Client version 4.14.0 passed smoke tests in this run. Regression validation installed candidate version 4.21.15 on Arm64, and the extracted client binaries reported version 4.21.15 while passing help, completion, and kubectl client checks." + "comparison": "Current pinned OpenShift Client version 4.14.0 passed smoke tests in this run. Regression validation installed candidate version 4.21.16 on Arm64, and the extracted client binaries reported version 4.21.16 while passing help, completion, and kubectl client checks." } ] }, @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.404236+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.615641+00:00", "publish_state": "published" } } diff --git a/data/test-results/openssh.json b/data/test-results/openssh.json index 640a0ac1bf..593bdf1bec 100644 --- a/data/test-results/openssh.json +++ b/data/test-results/openssh.json @@ -5,10 +5,10 @@ "version": "9.6p1 Ubuntu-3ubuntu13.16" }, "run": { - "id": "25877415436", + "id": "26658721315", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181110", - "timestamp": "2026-05-14T18:18:50Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491937", + "timestamp": "2026-05-29T19:48:57Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181110#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491937#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181110#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491937#step:7:1" }, { "name": "Test 3 - Check Help Output or Configuration", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181110#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491937#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181110#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491937#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181110#step:10:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491937#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181110#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491937#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.404424+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.615822+00:00", "publish_state": "published" } } diff --git a/data/test-results/openssl.json b/data/test-results/openssl.json index 7ff03d628f..6d1c4fe23d 100644 --- a/data/test-results/openssl.json +++ b/data/test-results/openssl.json @@ -5,10 +5,10 @@ "version": "3.0.13" }, "run": { - "id": "25877419588", + "id": "26658724696", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192445", - "timestamp": "2026-05-14T18:18:54Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503979", + "timestamp": "2026-05-29T19:49:01Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check openssl binary", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192445#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503979#step:6:1" }, { "name": "Test 2 - Check version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192445#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503979#step:7:1" }, { "name": "Test 3 - List supported ciphers", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192445#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503979#step:8:1" }, { "name": "Test 4 - Verify architecture", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192445#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503979#step:9:1" }, { "name": "Test 5 - Generate and inspect a certificate", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192445#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503979#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192445#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503979#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.404628+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.616003+00:00", "publish_state": "published" } } diff --git a/data/test-results/openstack-masakari.json b/data/test-results/openstack-masakari.json index 83185176d9..5736b5c82d 100644 --- a/data/test-results/openstack-masakari.json +++ b/data/test-results/openstack-masakari.json @@ -5,10 +5,10 @@ "version": "21.0.0" }, "run": { - "id": "25877367704", + "id": "26658677990", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026090", - "timestamp": "2026-05-14T18:17:54Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346006", + "timestamp": "2026-05-29T19:48:03Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 2, + "duration_seconds": 1, "details": [ { "name": "Test 1 - Check masakari-api binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026090#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346006#step:6:1" }, { "name": "Test 2 - Check version command", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026090#step:7:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346006#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026090#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346006#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026090#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346006#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026090#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346006#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026090#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346006#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.404854+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.616183+00:00", "publish_state": "published" } } diff --git a/data/test-results/opensuse-leap.json b/data/test-results/opensuse-leap.json index dd60788536..f36838e6ca 100644 --- a/data/test-results/opensuse-leap.json +++ b/data/test-results/opensuse-leap.json @@ -5,10 +5,10 @@ "version": "15.6" }, "run": { - "id": "25877383844", + "id": "26658692522", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071405", - "timestamp": "2026-05-14T18:18:12Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394901", + "timestamp": "2026-05-29T19:48:21Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 73, + "duration_seconds": 83, "details": [ { "name": "Test 1 - Check Image Availability", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071405#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394901#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071405#step:7:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394901#step:7:1" }, { "name": "Test 3 - Check Help Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071405#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394901#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071405#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394901#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 51, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071405#step:10:1" + "duration_seconds": 64, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394901#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 21, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071405#step:11:1", + "duration_seconds": 19, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394901#step:11:1", "current_version": "15.6", "latest_version": "16.0", "next_installed_version": "16.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.405044+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.616406+00:00", "publish_state": "published" } } diff --git a/data/test-results/opensuse-tumbleweed.json b/data/test-results/opensuse-tumbleweed.json index 17e0f2be3e..6697c5a199 100644 --- a/data/test-results/opensuse-tumbleweed.json +++ b/data/test-results/opensuse-tumbleweed.json @@ -2,13 +2,13 @@ "schema_version": "2.0", "package": { "name": "OpenSUSE Tumbleweed", - "version": "20260512" + "version": "20260527" }, "run": { - "id": "25877387746", + "id": "26658696365", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083618", - "timestamp": "2026-05-14T18:18:15Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407458", + "timestamp": "2026-05-29T19:48:24Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 19, + "duration_seconds": 14, "details": [ { "name": "Test 1 - Check Image Availability", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083618#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407458#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083618#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407458#step:7:1" }, { "name": "Test 3 - Check Help Output", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083618#step:8:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407458#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083618#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407458#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 18, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083618#step:10:1" + "duration_seconds": 15, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407458#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083618#step:11:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407458#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.405227+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.616608+00:00", "publish_state": "published" } } diff --git a/data/test-results/opentelemetry-cpp.json b/data/test-results/opentelemetry-cpp.json index 1188954266..f62b44b41d 100644 --- a/data/test-results/opentelemetry-cpp.json +++ b/data/test-results/opentelemetry-cpp.json @@ -5,10 +5,10 @@ "version": "1.19.0" }, "run": { - "id": "25877395502", + "id": "26658703674", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109971", - "timestamp": "2026-05-14T18:18:26Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432962", + "timestamp": "2026-05-29T19:48:33Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 40, + "duration_seconds": 41, "details": [ { "name": "Test 1 - Header and Library Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109971#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432962#step:6:1" }, { "name": "Test 2 - Version Check", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109971#step:7:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432962#step:7:1" }, { "name": "Test 3 - Configuration Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109971#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432962#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109971#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432962#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109971#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432962#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 39, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109971#step:11:1", + "duration_seconds": 40, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432962#step:11:1", "current_version": "1.19.0", "latest_version": "1.20.0", "next_installed_version": "1.20.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.405443+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.616793+00:00", "publish_state": "published" } } diff --git a/data/test-results/opentelemetry-go.json b/data/test-results/opentelemetry-go.json index 062b3e474f..bfcf24ed0c 100644 --- a/data/test-results/opentelemetry-go.json +++ b/data/test-results/opentelemetry-go.json @@ -2,13 +2,13 @@ "schema_version": "2.0", "package": { "name": "OpenTelemetry Go", - "version": "v1.43.0" + "version": "v1.44.0" }, "run": { - "id": "25877379982", + "id": "26658688675", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057487", - "timestamp": "2026-05-14T18:18:05Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380723", + "timestamp": "2026-05-29T19:48:15Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Go environment", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057487#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380723#step:6:1" }, { "name": "Test 2 - Check Module Version", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057487#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380723#step:7:1" }, { "name": "Test 3 - Check Package Documentation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057487#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380723#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057487#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380723#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 11, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057487#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380723#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057487#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380723#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.405644+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.616969+00:00", "publish_state": "published" } } diff --git a/data/test-results/opentelemetry-python.json b/data/test-results/opentelemetry-python.json index a241a8fcd0..edf5a604b8 100644 --- a/data/test-results/opentelemetry-python.json +++ b/data/test-results/opentelemetry-python.json @@ -2,13 +2,13 @@ "schema_version": "2.0", "package": { "name": "OpenTelemetry Python", - "version": "1.41.1" + "version": "1.42.1" }, "run": { - "id": "25877392111", + "id": "26658699892", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096501", - "timestamp": "2026-05-14T18:18:24Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421220", + "timestamp": "2026-05-29T19:48:30Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 0, + "duration_seconds": 1, "details": [ { "name": "Test 1 - Check Import", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096501#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421220#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096501#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421220#step:7:1" }, { "name": "Test 3 - Check Module Help Output", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096501#step:8:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421220#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096501#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421220#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096501#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421220#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096501#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421220#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.405869+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.617149+00:00", "publish_state": "published" } } diff --git a/data/test-results/openvvc.json b/data/test-results/openvvc.json index 0a47eafa34..f521a4120a 100644 --- a/data/test-results/openvvc.json +++ b/data/test-results/openvvc.json @@ -5,10 +5,10 @@ "version": "1.0.0" }, "run": { - "id": "25877415436", + "id": "26658721315", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179869", - "timestamp": "2026-05-14T18:18:51Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575490912", + "timestamp": "2026-05-29T19:48:56Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 5, "failed": 0, "skipped": 1, - "duration_seconds": 3, + "duration_seconds": 4, "details": [ { "name": "Test 1 - Check Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179869#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575490912#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179869#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575490912#step:7:1" }, { "name": "Test 3 - Check Help Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179869#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575490912#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179869#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575490912#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 3, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179869#step:10:1" + "duration_seconds": 4, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575490912#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "skipped", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179869#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575490912#step:11:1", "current_version": "1.0.0", "latest_version": "1.0.0", "next_installed_version": "1.0.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "skipped", "regression_decision": "no_newer_stable_available", - "production_refreshed_at": "2026-05-14T19:37:17.406073+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.617345+00:00", "publish_state": "published" } } diff --git a/data/test-results/openzfs.json b/data/test-results/openzfs.json index 0681420c01..5705d5989a 100644 --- a/data/test-results/openzfs.json +++ b/data/test-results/openzfs.json @@ -5,10 +5,10 @@ "version": "2.2.2" }, "run": { - "id": "25877406767", + "id": "26658714432", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155619", - "timestamp": "2026-05-14T18:18:43Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469349", + "timestamp": "2026-05-29T19:48:49Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155619#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469349#step:6:1" }, { "name": "Test 2 - Version Check", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155619#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469349#step:7:1" }, { "name": "Test 3 - Help Output Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155619#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469349#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155619#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469349#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155619#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469349#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155619#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469349#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.406276+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.617532+00:00", "publish_state": "published" } } diff --git a/data/test-results/operator-framework.json b/data/test-results/operator-framework.json index 0769d1b449..1ac09e029e 100644 --- a/data/test-results/operator-framework.json +++ b/data/test-results/operator-framework.json @@ -5,10 +5,10 @@ "version": "1.38.0" }, "run": { - "id": "25877427741", + "id": "26658731236", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217692", - "timestamp": "2026-05-14T18:19:06Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529468", + "timestamp": "2026-05-29T19:49:11Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 0, + "duration_seconds": 1, "details": [ { "name": "Test 1 - Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217692#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529468#step:6:1" }, { "name": "Test 2 - Version Check", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217692#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529468#step:7:1" }, { "name": "Test 3 - Help Output Validation", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217692#step:8:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529468#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217692#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529468#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217692#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529468#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217692#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529468#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.406474+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.617706+00:00", "publish_state": "published" } } diff --git a/data/test-results/optipng.json b/data/test-results/optipng.json index 49e6163afb..e2bfbdcd5c 100644 --- a/data/test-results/optipng.json +++ b/data/test-results/optipng.json @@ -5,10 +5,10 @@ "version": "0.7.8" }, "run": { - "id": "25877427741", + "id": "26658731236", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218850", - "timestamp": "2026-05-14T18:19:05Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529809", + "timestamp": "2026-05-29T19:49:11Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check binary existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218850#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529809#step:6:1" }, { "name": "Test 2 - Run Version Command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218850#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529809#step:7:1" }, { "name": "Test 3 - Run Help Command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218850#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529809#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218850#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529809#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218850#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529809#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218850#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529809#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.406673+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.617873+00:00", "publish_state": "published" } } diff --git a/data/test-results/optuna.json b/data/test-results/optuna.json index 25185644e0..d3838d448c 100644 --- a/data/test-results/optuna.json +++ b/data/test-results/optuna.json @@ -5,10 +5,10 @@ "version": "0.0.1" }, "run": { - "id": "25877431862", + "id": "26658734615", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265966", - "timestamp": "2026-05-14T18:19:22Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538496", + "timestamp": "2026-05-29T19:49:17Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 21, + "duration_seconds": 22, "details": [ { "name": "Test 1 - Package installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265966#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538496#step:7:1" }, { "name": "Test 2 - Version metadata matches baseline", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265966#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538496#step:8:1" }, { "name": "Test 3 - Installed files metadata", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265966#step:9:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538496#step:9:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265966#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538496#step:10:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265966#step:11:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538496#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 20, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265966#step:12:1", + "duration_seconds": 21, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538496#step:12:1", "current_version": "0.0.1", "latest_version": "0.4.0", "next_installed_version": "0.4.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.406894+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.618049+00:00", "publish_state": "published" } } diff --git a/data/test-results/ord-provider-server.json b/data/test-results/ord-provider-server.json index 0e3175f0e4..9d515bb0d8 100644 --- a/data/test-results/ord-provider-server.json +++ b/data/test-results/ord-provider-server.json @@ -5,10 +5,10 @@ "version": "0.7.3" }, "run": { - "id": "25877431862", + "id": "26658734615", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265988", - "timestamp": "2026-05-14T18:19:22Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537972", + "timestamp": "2026-05-29T19:49:15Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,46 +20,46 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 18, + "duration_seconds": 19, "details": [ { "name": "Test 1 - Check package-specific baseline markers", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265988#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537972#step:9:1" }, { "name": "Test 2 - Check published package metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265988#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537972#step:10:1" }, { "name": "Test 3 - Check package-specific docs and manifests", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265988#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537972#step:11:1" }, { "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265988#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537972#step:12:1" }, { "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "duration_seconds": 9, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265988#step:13:1" + "duration_seconds": 10, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537972#step:13:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 9, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265988#step:14:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537972#step:14:1", "current_version": "0.7.3", - "latest_version": "1.1.3", - "next_installed_version": "1.1.3", + "latest_version": "1.1.4", + "next_installed_version": "1.1.4", "decision": "limited_cpu_smoke_validated", "regression_result": "Arm preflight proof passed on Arm64", "comparison": "Built the next ORD Provider Server Node package and executed its CLI help path on the Arm64 runner. Full HTTP fixture coverage remains in Tests 1-5 for the pinned baseline." @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.407112+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.618227+00:00", "publish_state": "published" } } diff --git a/data/test-results/oregano.json b/data/test-results/oregano.json index cf84a2af05..91f46837af 100644 --- a/data/test-results/oregano.json +++ b/data/test-results/oregano.json @@ -5,10 +5,10 @@ "version": "0.84.13" }, "run": { - "id": "25877431862", + "id": "26658734615", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048266140", - "timestamp": "2026-05-14T18:19:22Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538114", + "timestamp": "2026-05-29T19:49:17Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check package-specific baseline markers", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048266140#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538114#step:8:1" }, { "name": "Test 2 - Check published package metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048266140#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538114#step:9:1" }, { "name": "Test 3 - Check package-specific docs and manifests", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048266140#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538114#step:10:1" }, { "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048266140#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538114#step:11:1" }, { "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048266140#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538114#step:12:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048266140#step:13:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538114#step:13:1", "current_version": "0.84.13", "latest_version": "0.84.43", "next_installed_version": "0.84.43", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.407295+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.618435+00:00", "publish_state": "published" } } diff --git a/data/test-results/orientdb.json b/data/test-results/orientdb.json index 2cece81fd8..46e40c17b1 100644 --- a/data/test-results/orientdb.json +++ b/data/test-results/orientdb.json @@ -5,10 +5,10 @@ "version": "3.2.39" }, "run": { - "id": "25877383844", + "id": "26658692522", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071795", - "timestamp": "2026-05-14T18:18:12Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394892", + "timestamp": "2026-05-29T19:48:21Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 11, + "duration_seconds": 7, "details": [ { "name": "Test 1 - Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071795#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394892#step:6:1" }, { "name": "Test 2 - Version Check", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071795#step:7:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394892#step:7:1" }, { "name": "Test 3 - Help Output", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071795#step:8:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394892#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071795#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394892#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 4, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071795#step:10:1" + "duration_seconds": 2, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394892#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 4, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071795#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394892#step:11:1", "current_version": "3.2.39", "latest_version": "3.2.52", "next_installed_version": "3.2.52", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.407497+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.618619+00:00", "publish_state": "published" } } diff --git a/data/test-results/orionsdk-python.json b/data/test-results/orionsdk-python.json index 43112753dd..155337e3bc 100644 --- a/data/test-results/orionsdk-python.json +++ b/data/test-results/orionsdk-python.json @@ -5,10 +5,10 @@ "version": "0.5.0" }, "run": { - "id": "25877392111", + "id": "26658699892", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096495", - "timestamp": "2026-05-14T18:18:21Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420653", + "timestamp": "2026-05-29T19:48:30Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Import", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096495#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420653#step:6:1" }, { "name": "Test 2 - Check Installed Version", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096495#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420653#step:7:1" }, { "name": "Test 3 - Render Class Documentation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096495#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420653#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096495#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420653#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096495#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420653#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096495#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420653#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.407692+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.618808+00:00", "publish_state": "published" } } diff --git a/data/test-results/ory.json b/data/test-results/ory.json index 03b9d2b065..0d75c9f3d4 100644 --- a/data/test-results/ory.json +++ b/data/test-results/ory.json @@ -5,10 +5,10 @@ "version": "1.1.0" }, "run": { - "id": "25877383844", + "id": "26658692522", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071617", - "timestamp": "2026-05-14T18:18:15Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394305", + "timestamp": "2026-05-29T19:48:19Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071617#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394305#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071617#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394305#step:7:1" }, { "name": "Test 3 - Check Help Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071617#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394305#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071617#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394305#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071617#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394305#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071617#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394305#step:11:1", "current_version": "1.1.0", "latest_version": "1.2.0", "next_installed_version": "1.2.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.407924+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.618979+00:00", "publish_state": "published" } } diff --git a/data/test-results/osmo.json b/data/test-results/osmo.json index 41855ac149..277083b480 100644 --- a/data/test-results/osmo.json +++ b/data/test-results/osmo.json @@ -5,10 +5,10 @@ "version": "6.0.0" }, "run": { - "id": "25877431862", + "id": "26658734615", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048266017", - "timestamp": "2026-05-14T18:19:23Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538235", + "timestamp": "2026-05-29T19:49:17Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 9, + "duration_seconds": 8, "details": [ { "name": "Test 1 - Check package-specific baseline markers", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048266017#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538235#step:8:1" }, { "name": "Test 2 - Check published package metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048266017#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538235#step:9:1" }, { "name": "Test 3 - Check package-specific docs and manifests", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048266017#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538235#step:10:1" }, { "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048266017#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538235#step:11:1" }, { "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", "duration_seconds": 3, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048266017#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538235#step:12:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 6, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048266017#step:13:1", + "duration_seconds": 5, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538235#step:13:1", "current_version": "6.0.0", "latest_version": "6.3.0", "next_installed_version": "6.3.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.408120+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.619151+00:00", "publish_state": "published" } } diff --git a/data/test-results/ovirt.json b/data/test-results/ovirt.json index 2b14c11fe2..1c5f1a9fc1 100644 --- a/data/test-results/ovirt.json +++ b/data/test-results/ovirt.json @@ -5,10 +5,10 @@ "version": "4.5.6" }, "run": { - "id": "25877387746", + "id": "26658696365", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084823", - "timestamp": "2026-05-14T18:18:19Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407877", + "timestamp": "2026-05-29T19:48:25Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check setup script exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084823#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407877#step:6:1" }, { "name": "Test 2 - Check setup help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084823#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407877#step:7:1" }, { "name": "Test 3 - Check remove helper help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084823#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407877#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084823#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407877#step:9:1" }, { "name": "Test 5 - Check rename helper help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084823#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407877#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 4, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084823#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407877#step:11:1", "current_version": "4.5.6", "latest_version": "4.5.7", "next_installed_version": "4.5.7", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.408325+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.619344+00:00", "publish_state": "published" } } diff --git a/data/test-results/owncast.json b/data/test-results/owncast.json index da8141c88e..92161bbf17 100644 --- a/data/test-results/owncast.json +++ b/data/test-results/owncast.json @@ -5,10 +5,10 @@ "version": "0.0.8" }, "run": { - "id": "25877431862", + "id": "26658734615", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265956", - "timestamp": "2026-05-14T18:19:24Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538232", + "timestamp": "2026-05-29T19:49:16Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check package-specific baseline markers", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265956#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538232#step:8:1" }, { "name": "Test 2 - Check published package metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265956#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538232#step:9:1" }, { "name": "Test 3 - Check package-specific docs and manifests", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265956#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538232#step:10:1" }, { "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265956#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538232#step:11:1" }, { "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", "duration_seconds": 45, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265956#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538232#step:12:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265956#step:13:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538232#step:13:1", "current_version": "0.0.8", "latest_version": "0.2.5", "next_installed_version": "0.2.5", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.408517+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.619518+00:00", "publish_state": "published" } } diff --git a/data/test-results/pachyderm.json b/data/test-results/pachyderm.json index 3d4eca1baf..2df4e67a29 100644 --- a/data/test-results/pachyderm.json +++ b/data/test-results/pachyderm.json @@ -5,10 +5,10 @@ "version": "2.11.5" }, "run": { - "id": "25877406767", + "id": "26658714432", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155232", - "timestamp": "2026-05-14T18:18:44Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469324", + "timestamp": "2026-05-29T19:48:49Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 2, + "duration_seconds": 1, "details": [ { "name": "Test 1 - Check Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155232#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469324#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155232#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469324#step:7:1" }, { "name": "Test 3 - Check Help Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155232#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469324#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155232#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469324#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155232#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469324#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155232#step:11:1", + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469324#step:11:1", "current_version": "2.11.5", "latest_version": "2.11.6", "next_installed_version": "2.11.6", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.408720+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.619702+00:00", "publish_state": "published" } } diff --git a/data/test-results/packetbeat.json b/data/test-results/packetbeat.json index 1137ee988b..ad7ec19a98 100644 --- a/data/test-results/packetbeat.json +++ b/data/test-results/packetbeat.json @@ -5,10 +5,10 @@ "version": "9.0.4" }, "run": { - "id": "25877415436", + "id": "26658721315", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179811", - "timestamp": "2026-05-14T18:18:50Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575490883", + "timestamp": "2026-05-29T19:48:55Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 5, + "duration_seconds": 2, "details": [ { "name": "Test 1 - Check Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179811#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575490883#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179811#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575490883#step:7:1" }, { "name": "Test 3 - Check Help Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179811#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575490883#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179811#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575490883#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179811#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575490883#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 5, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179811#step:11:1", + "duration_seconds": 2, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575490883#step:11:1", "current_version": "9.0.4", "latest_version": "9.0.5", "next_installed_version": "9.0.5", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.409047+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.619966+00:00", "publish_state": "published" } } diff --git a/data/test-results/paddlelite.json b/data/test-results/paddlelite.json index 16d47a642d..a1c6dd08a5 100644 --- a/data/test-results/paddlelite.json +++ b/data/test-results/paddlelite.json @@ -5,10 +5,10 @@ "version": "2.11" }, "run": { - "id": "25877403044", + "id": "26658710721", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140898", - "timestamp": "2026-05-14T18:18:37Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456355", + "timestamp": "2026-05-29T19:48:45Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 3, + "duration_seconds": 4, "details": [ { "name": "Test 1 - Check headers exist", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140898#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456355#step:6:1" }, { "name": "Test 2 - Check Arm64 shared library exists", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140898#step:7:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456355#step:7:1" }, { "name": "Test 3 - Compile smoke program", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140898#step:8:1" + "duration_seconds": 3, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456355#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140898#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456355#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140898#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456355#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140898#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456355#step:11:1", "current_version": "2.11", "latest_version": "2.12", "next_installed_version": "2.12", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.409255+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.620157+00:00", "publish_state": "published" } } diff --git a/data/test-results/pandas.json b/data/test-results/pandas.json index bfc6caf245..aff39385b5 100644 --- a/data/test-results/pandas.json +++ b/data/test-results/pandas.json @@ -5,10 +5,10 @@ "version": "3.0.3" }, "run": { - "id": "25877415436", + "id": "26658721315", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181008", - "timestamp": "2026-05-14T18:18:50Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491529", + "timestamp": "2026-05-29T19:48:56Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 2, + "duration_seconds": 1, "details": [ { "name": "Test 1 - Check Import", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181008#step:6:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491529#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181008#step:7:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491529#step:7:1" }, { "name": "Test 3 - Check Module Help Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181008#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491529#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181008#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491529#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181008#step:10:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491529#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181008#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491529#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.409449+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.620363+00:00", "publish_state": "published" } } diff --git a/data/test-results/pants.json b/data/test-results/pants.json index f4d4205d53..d7d8fa924c 100644 --- a/data/test-results/pants.json +++ b/data/test-results/pants.json @@ -5,10 +5,10 @@ "version": "2.24.1" }, "run": { - "id": "25877403044", + "id": "26658710721", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140040", - "timestamp": "2026-05-14T18:18:36Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455444", + "timestamp": "2026-05-29T19:48:44Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Pants binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140040#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455444#step:6:1" }, { "name": "Test 2 - Check version output", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140040#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455444#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140040#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455444#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140040#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455444#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140040#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455444#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140040#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455444#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.409647+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.620550+00:00", "publish_state": "published" } } diff --git a/data/test-results/paraview.json b/data/test-results/paraview.json index 0f80ec3037..ed29f7c579 100644 --- a/data/test-results/paraview.json +++ b/data/test-results/paraview.json @@ -5,10 +5,10 @@ "version": "5.11.2" }, "run": { - "id": "25877427741", + "id": "26658731236", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218836", - "timestamp": "2026-05-14T18:19:08Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529766", + "timestamp": "2026-05-29T19:49:11Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 3, + "duration_seconds": 2, "details": [ { "name": "Test 1 - Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218836#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529766#step:6:1" }, { "name": "Test 2 - Version Check", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218836#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529766#step:7:1" }, { "name": "Test 3 - Help Output Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218836#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529766#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218836#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529766#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218836#step:10:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529766#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048218836#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529766#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.409882+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.620722+00:00", "publish_state": "published" } } diff --git a/data/test-results/parquet.json b/data/test-results/parquet.json index 45c4ee7d5c..2d94ab8eb5 100644 --- a/data/test-results/parquet.json +++ b/data/test-results/parquet.json @@ -5,10 +5,10 @@ "version": "0.2.16" }, "run": { - "id": "25877427741", + "id": "26658731236", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217543", - "timestamp": "2026-05-14T18:19:08Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575528443", + "timestamp": "2026-05-29T19:49:11Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 2, + "duration_seconds": 3, "details": [ { "name": "Test 1 - Check parquet-tools binary", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217543#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575528443#step:6:1" }, { "name": "Test 2 - Check parquet-tools help", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217543#step:7:1" + "duration_seconds": 3, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575528443#step:7:1" }, { "name": "Test 3 - Check python import (optional)", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217543#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575528443#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217543#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575528443#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217543#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575528443#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217543#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575528443#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.410074+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.620887+00:00", "publish_state": "published" } } diff --git a/data/test-results/pcb-rnd.json b/data/test-results/pcb-rnd.json index 6daa168a2e..1177f36afd 100644 --- a/data/test-results/pcb-rnd.json +++ b/data/test-results/pcb-rnd.json @@ -5,10 +5,10 @@ "version": "3.1.4-2" }, "run": { - "id": "25877431862", + "id": "26658734615", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265925", - "timestamp": "2026-05-14T18:19:21Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538162", + "timestamp": "2026-05-29T19:49:17Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 1, + "duration_seconds": 0, "details": [ { "name": "Test 1 - Package-manager install evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265925#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538162#step:6:1" }, { "name": "Test 2 - Installed Arm64 package metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265925#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538162#step:7:1" }, { "name": "Test 3 - CLI version starts on Arm", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265925#step:8:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538162#step:8:1" }, { "name": "Test 4 - Arm64 runner gate", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265925#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538162#step:9:1" }, { "name": "Test 5 - Headless runtime smoke", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265925#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538162#step:10:1" }, { "name": "Test 6 - Regression validation applicability", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265925#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538162#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.410297+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.621074+00:00", "publish_state": "published" } } diff --git a/data/test-results/pcre.json b/data/test-results/pcre.json index 05e39a970d..9834aebf95 100644 --- a/data/test-results/pcre.json +++ b/data/test-results/pcre.json @@ -5,10 +5,10 @@ "version": "8.39" }, "run": { - "id": "25877359516", + "id": "26658670904", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991483", - "timestamp": "2026-05-14T18:17:43Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321752", + "timestamp": "2026-05-29T19:47:52Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check binary existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991483#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321752#step:6:1" }, { "name": "Test 2 - Run Regex Match", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991483#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321752#step:7:1" }, { "name": "Test 3 - Run Regex No Match", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991483#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321752#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991483#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321752#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991483#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321752#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991483#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321752#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.410514+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.621265+00:00", "publish_state": "published" } } diff --git a/data/test-results/percona.json b/data/test-results/percona.json index 2b3e1b7c97..bee95c53df 100644 --- a/data/test-results/percona.json +++ b/data/test-results/percona.json @@ -5,10 +5,10 @@ "version": "8.0.45-36" }, "run": { - "id": "25877379982", + "id": "26658688675", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057193", - "timestamp": "2026-05-14T18:18:07Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380849", + "timestamp": "2026-05-29T19:48:15Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 16, + "duration_seconds": 17, "details": [ { "name": "Test 1 - Check Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057193#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380849#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057193#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380849#step:7:1" }, { "name": "Test 3 - Check Help Output", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057193#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380849#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057193#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380849#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 15, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057193#step:10:1" + "duration_seconds": 17, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380849#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057193#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380849#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.410738+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.621456+00:00", "publish_state": "published" } } diff --git a/data/test-results/perf.json b/data/test-results/perf.json index 1516a493b1..4ebcb5e4af 100644 --- a/data/test-results/perf.json +++ b/data/test-results/perf.json @@ -5,10 +5,10 @@ "version": "6.2.16" }, "run": { - "id": "25877375677", + "id": "26658685142", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043649", - "timestamp": "2026-05-14T18:18:01Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369853", + "timestamp": "2026-05-29T19:48:10Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,43 +26,43 @@ "name": "Test 1 - Check perf binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043649#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369853#step:6:1" }, { "name": "Test 2 - Check version output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043649#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369853#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043649#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369853#step:8:1" }, { "name": "Test 4 - Architecture verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043649#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369853#step:9:1" }, { "name": "Test 5 - Functional validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043649#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369853#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 51, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043649#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369853#step:11:1", "current_version": "6.2.16", - "latest_version": "7.0.7", - "next_installed_version": "7.0.7", + "latest_version": "7.0.10", + "next_installed_version": "7.0.10", "decision": "next_install_validated", "regression_result": "Next version installed successfully on Arm64", - "comparison": "Current pinned perf version 6.2.16 passed smoke tests in this run. Regression validation built candidate version 7.0.7 on Arm64, and the candidate perf binary reported version 7.0.7 while help and event-list validation succeeded." + "comparison": "Current pinned perf version 6.2.16 passed smoke tests in this run. Regression validation built candidate version 7.0.10 on Arm64, and the candidate perf binary reported version 7.0.10 while help and event-list validation succeeded." } ] }, @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.410970+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.621646+00:00", "publish_state": "published" } } diff --git a/data/test-results/perl.json b/data/test-results/perl.json index 082f3fb15c..8ba7858416 100644 --- a/data/test-results/perl.json +++ b/data/test-results/perl.json @@ -5,10 +5,10 @@ "version": "5.38.2" }, "run": { - "id": "25877419588", + "id": "26658724696", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192279", - "timestamp": "2026-05-14T18:18:57Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504178", + "timestamp": "2026-05-29T19:49:02Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check binary existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192279#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504178#step:6:1" }, { "name": "Test 2 - Run Simple Script", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192279#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504178#step:7:1" }, { "name": "Test 3 - Check Module Loading", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192279#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504178#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192279#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504178#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192279#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504178#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192279#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504178#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.411179+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.621833+00:00", "publish_state": "published" } } diff --git a/data/test-results/phoronix_test_suite.json b/data/test-results/phoronix_test_suite.json index 4017bcb2da..739b881dfe 100644 --- a/data/test-results/phoronix_test_suite.json +++ b/data/test-results/phoronix_test_suite.json @@ -5,10 +5,10 @@ "version": "10.8.3" }, "run": { - "id": "25877379982", + "id": "26658688675", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057323", - "timestamp": "2026-05-14T18:18:05Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380553", + "timestamp": "2026-05-29T19:48:14Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 29, + "duration_seconds": 18, "details": [ { "name": "Test 1 - Check Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057323#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380553#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057323#step:7:1" + "duration_seconds": 2, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380553#step:7:1" }, { "name": "Test 3 - Check Help Output", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057323#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380553#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057323#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380553#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 23, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057323#step:10:1" + "duration_seconds": 11, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380553#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 4, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057323#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380553#step:11:1", "current_version": "10.8.3", "latest_version": "10.8.4", "next_installed_version": "10.8.4", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.411386+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.622018+00:00", "publish_state": "published" } } diff --git a/data/test-results/php.json b/data/test-results/php.json index e25c8dfa36..94139df3fd 100644 --- a/data/test-results/php.json +++ b/data/test-results/php.json @@ -5,10 +5,10 @@ "version": "8.3.6" }, "run": { - "id": "25877379982", + "id": "26658688675", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057317", - "timestamp": "2026-05-14T18:18:05Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380788", + "timestamp": "2026-05-29T19:48:15Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check binary existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057317#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380788#step:6:1" }, { "name": "Test 2 - Run Simple Script", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057317#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380788#step:7:1" }, { "name": "Test 3 - Check Modules", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057317#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380788#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057317#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380788#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057317#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380788#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057317#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380788#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.411581+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.622200+00:00", "publish_state": "published" } } diff --git a/data/test-results/physics-nemo.json b/data/test-results/physics-nemo.json index 2bdbe608c4..0da1308f25 100644 --- a/data/test-results/physics-nemo.json +++ b/data/test-results/physics-nemo.json @@ -5,10 +5,10 @@ "version": "0.3.0" }, "run": { - "id": "25877431862", + "id": "26658734615", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265654", - "timestamp": "2026-05-14T18:19:22Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538276", + "timestamp": "2026-05-29T19:49:16Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,46 +20,46 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 5, + "duration_seconds": 6, "details": [ { "name": "Test 1 - Check package-specific baseline markers", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265654#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538276#step:8:1" }, { "name": "Test 2 - Check published package metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265654#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538276#step:9:1" }, { "name": "Test 3 - Check package-specific docs and manifests", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265654#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538276#step:10:1" }, { "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265654#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538276#step:11:1" }, { "name": "Test 5 - Run scoped Arm preflight proof", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265654#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538276#step:12:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 5, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265654#step:13:1", + "duration_seconds": 6, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538276#step:13:1", "current_version": "0.3.0", - "latest_version": "2.0.0", - "next_installed_version": "2.0.0", + "latest_version": "2.1.0", + "next_installed_version": "2.1.0", "decision": "limited_cpu_smoke_validated", "regression_result": "Arm preflight proof passed on Arm64", "comparison": "Test 6 limited_cpu_smoke_validated: reran the same bounded scoped Arm source/compile/import/help/manifest preflight against the next stable candidate. This is CPU-side preflight evidence only; no GPU/CUDA driver/runtime, accelerator execution, Kubernetes cluster, or full product runtime is claimed." @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.411773+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.622407+00:00", "publish_state": "published" } } diff --git a/data/test-results/picassoJS.json b/data/test-results/picassoJS.json index eac30316e9..0c1afaf3c7 100644 --- a/data/test-results/picassoJS.json +++ b/data/test-results/picassoJS.json @@ -5,10 +5,10 @@ "version": "0.5.1" }, "run": { - "id": "25877419588", + "id": "26658724696", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192614", - "timestamp": "2026-05-14T18:19:05Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504133", + "timestamp": "2026-05-29T19:49:06Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 3, + "duration_seconds": 2, "details": [ { "name": "Test 1 - Check package installation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192614#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504133#step:7:1" }, { "name": "Test 2 - Check version metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192614#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504133#step:8:1" }, { "name": "Test 3 - Check npm dependency resolution", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192614#step:9:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504133#step:9:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192614#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504133#step:10:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192614#step:11:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504133#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192614#step:12:1", + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504133#step:12:1", "current_version": "0.5.1", "latest_version": "0.5.2", "next_installed_version": "0.5.2", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.411998+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.622598+00:00", "publish_state": "published" } } diff --git a/data/test-results/pigz.json b/data/test-results/pigz.json index f82f2a4ddc..c8a92cfa30 100644 --- a/data/test-results/pigz.json +++ b/data/test-results/pigz.json @@ -5,10 +5,10 @@ "version": "2.8" }, "run": { - "id": "25877363365", + "id": "26658674448", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000928", - "timestamp": "2026-05-14T18:17:47Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334431", + "timestamp": "2026-05-29T19:47:57Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check binary existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000928#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334431#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000928#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334431#step:7:1" }, { "name": "Test 3 - Functional Test (Compress/Decompress)", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000928#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334431#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000928#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334431#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000928#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334431#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000928#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334431#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.412180+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.622783+00:00", "publish_state": "published" } } diff --git a/data/test-results/pilon.json b/data/test-results/pilon.json index 3020db3059..ae85373c58 100644 --- a/data/test-results/pilon.json +++ b/data/test-results/pilon.json @@ -5,10 +5,10 @@ "version": "1.23" }, "run": { - "id": "25877423406", + "id": "26658727918", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209899", - "timestamp": "2026-05-14T18:19:01Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515040", + "timestamp": "2026-05-29T19:49:05Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Pilon JAR exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209899#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515040#step:6:1" }, { "name": "Test 2 - Check version output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209899#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515040#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209899#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515040#step:8:1" }, { "name": "Test 4 - Architecture verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209899#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515040#step:9:1" }, { "name": "Test 5 - Functional validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209899#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515040#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209899#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515040#step:11:1", "current_version": "1.23", "latest_version": "1.24", "next_installed_version": "1.24", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.412401+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.622964+00:00", "publish_state": "published" } } diff --git a/data/test-results/pinot.json b/data/test-results/pinot.json index 021847d20e..22629b15fc 100644 --- a/data/test-results/pinot.json +++ b/data/test-results/pinot.json @@ -5,10 +5,10 @@ "version": "1.2.0" }, "run": { - "id": "25877359516", + "id": "26658670904", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991618", - "timestamp": "2026-05-14T18:17:56Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321439", + "timestamp": "2026-05-29T19:48:05Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 1342, + "duration_seconds": 389, "details": [ { "name": "Test 1 - Check Pinot admin launcher exists", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991618#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321439#step:11:1" }, { "name": "Test 2 - Check exact release version", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991618#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321439#step:12:1" }, { "name": "Test 3 - Check Pinot quickstart admin path", "status": "passed", - "duration_seconds": 5, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991618#step:13:1" + "duration_seconds": 6, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321439#step:13:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991618#step:14:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321439#step:14:1" }, { "name": "Test 5 - Functional validation", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991618#step:15:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321439#step:15:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 1336, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991618#step:16:1", + "duration_seconds": 383, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321439#step:16:1", "current_version": "1.2.0", "latest_version": "1.3.0", "next_installed_version": "1.3.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.412580+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.623147+00:00", "publish_state": "published" } } diff --git a/data/test-results/platform-mesh-operator.json b/data/test-results/platform-mesh-operator.json index 90752101e1..2256eb38c9 100644 --- a/data/test-results/platform-mesh-operator.json +++ b/data/test-results/platform-mesh-operator.json @@ -5,10 +5,10 @@ "version": "0.1.0" }, "run": { - "id": "25877435852", + "id": "26658737633", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251996", - "timestamp": "2026-05-14T18:19:16Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550075", + "timestamp": "2026-05-29T19:49:22Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Download baseline source tag", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251996#step:5:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550075#step:5:1" }, { "name": "Test 2 - Verify expected source layout", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251996#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550075#step:6:1" }, { "name": "Test 3 - Validate Arm64 image manifest", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251996#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550075#step:7:1" }, { "name": "Test 4 - Pull baseline Arm64 image", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251996#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550075#step:8:1" }, { "name": "Test 5 - Inspect baseline image on Arm64", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251996#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550075#step:9:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251996#step:10:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550075#step:10:1", "current_version": "0.1.0", "latest_version": "0.72.14", "next_installed_version": "0.72.14", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.412767+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.623357+00:00", "publish_state": "published" } } diff --git a/data/test-results/playit.json b/data/test-results/playit.json index 608fd3aa9c..4e53e13e8d 100644 --- a/data/test-results/playit.json +++ b/data/test-results/playit.json @@ -5,10 +5,10 @@ "version": "0.9.1" }, "run": { - "id": "25877431862", + "id": "26658734615", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265842", - "timestamp": "2026-05-14T18:19:22Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538035", + "timestamp": "2026-05-29T19:49:13Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check package-specific baseline markers", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265842#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538035#step:8:1" }, { "name": "Test 2 - Check published package metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265842#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538035#step:9:1" }, { "name": "Test 3 - Check package-specific docs and manifests", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265842#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538035#step:10:1" }, { "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265842#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538035#step:11:1" }, { "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265842#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538035#step:12:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 48, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265842#step:13:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538035#step:13:1", "current_version": "0.9.1", "latest_version": "0.17.1", "next_installed_version": "0.17.1", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.412999+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.623535+00:00", "publish_state": "published" } } diff --git a/data/test-results/playwright.json b/data/test-results/playwright.json index eba7e4af04..54e3c31e1f 100644 --- a/data/test-results/playwright.json +++ b/data/test-results/playwright.json @@ -5,10 +5,10 @@ "version": "1.17.0" }, "run": { - "id": "25877431862", + "id": "26658734615", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265909", - "timestamp": "2026-05-14T18:19:24Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538153", + "timestamp": "2026-05-29T19:49:16Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 5, + "duration_seconds": 2, "details": [ { "name": "Test 1 - Check package-specific baseline markers", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265909#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538153#step:8:1" }, { "name": "Test 2 - Check published package metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265909#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538153#step:9:1" }, { "name": "Test 3 - Check package-specific docs and manifests", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265909#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538153#step:10:1" }, { "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265909#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538153#step:11:1" }, { "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "duration_seconds": 125, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265909#step:12:1" + "duration_seconds": 117, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538153#step:12:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 5, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265909#step:13:1", + "duration_seconds": 2, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538153#step:13:1", "current_version": "1.17.0", "latest_version": "1.60.0", "next_installed_version": "1.60.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.413199+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.623705+00:00", "publish_state": "published" } } diff --git a/data/test-results/plink.json b/data/test-results/plink.json index 07cab6d5cc..063800430a 100644 --- a/data/test-results/plink.json +++ b/data/test-results/plink.json @@ -5,10 +5,10 @@ "version": "2.4.6" }, "run": { - "id": "25877392111", + "id": "26658699892", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096724", - "timestamp": "2026-05-14T18:18:22Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421139", + "timestamp": "2026-05-29T19:48:30Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 1, + "duration_seconds": 3, "details": [ { "name": "Test 1 - Check package import exists", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096724#step:6:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421139#step:6:1" }, { "name": "Test 2 - Check exact release version", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096724#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421139#step:7:1" }, { "name": "Test 3 - Check package metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096724#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421139#step:8:1" }, { "name": "Test 4 - Architecture verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096724#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421139#step:9:1" }, { "name": "Test 5 - Functional validation", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096724#step:10:1" + "duration_seconds": 3, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421139#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096724#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421139#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.413399+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.623875+00:00", "publish_state": "published" } } diff --git a/data/test-results/pmdk.json b/data/test-results/pmdk.json index 06c4350420..de443c4bd7 100644 --- a/data/test-results/pmdk.json +++ b/data/test-results/pmdk.json @@ -5,10 +5,10 @@ "version": "2.1.1" }, "run": { - "id": "25877423406", + "id": "26658727918", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209591", - "timestamp": "2026-05-14T18:19:06Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515910", + "timestamp": "2026-05-29T19:49:05Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 5, "failed": 0, "skipped": 1, - "duration_seconds": 0, + "duration_seconds": 1, "details": [ { "name": "Test 1 - Check pmempool utility exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209591#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515910#step:6:1" }, { "name": "Test 2 - Check exact release version", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209591#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515910#step:7:1" }, { "name": "Test 3 - Check pmempool help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209591#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515910#step:8:1" }, { "name": "Test 4 - Architecture verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209591#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515910#step:9:1" }, { "name": "Test 5 - Functional validation", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209591#step:10:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515910#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "skipped", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209591#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515910#step:11:1", "current_version": "2.1.1", "latest_version": "2.1.1", "next_installed_version": "not_installed", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "skipped", "regression_decision": "no_newer_stable_available", - "production_refreshed_at": "2026-05-14T19:37:17.413576+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.624044+00:00", "publish_state": "published" } } diff --git a/data/test-results/podman-compose.json b/data/test-results/podman-compose.json index b02b000533..0d953d3d69 100644 --- a/data/test-results/podman-compose.json +++ b/data/test-results/podman-compose.json @@ -5,10 +5,10 @@ "version": "1.4.1" }, "run": { - "id": "25877435852", + "id": "26658737633", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252018", - "timestamp": "2026-05-14T18:19:18Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550158", + "timestamp": "2026-05-29T19:49:21Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Install Podman Compose Python package", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252018#step:5:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550158#step:5:1" }, { "name": "Test 2 - Check Podman Compose version", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252018#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550158#step:6:1" }, { "name": "Test 3 - Check Podman Compose help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252018#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550158#step:7:1" }, { "name": "Test 4 - Verify dependencies on Arm64", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252018#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550158#step:8:1" }, { "name": "Test 5 - Render dry-run Compose config", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252018#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550158#step:9:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252018#step:10:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550158#step:10:1", "current_version": "1.4.1", "latest_version": "1.5.0", "next_installed_version": "1.5.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.413895+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.624345+00:00", "publish_state": "published" } } diff --git a/data/test-results/podman.json b/data/test-results/podman.json index bd386d9497..554f190cda 100644 --- a/data/test-results/podman.json +++ b/data/test-results/podman.json @@ -5,10 +5,10 @@ "version": "5.0.0" }, "run": { - "id": "25877435852", + "id": "26658737633", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251985", - "timestamp": "2026-05-14T18:19:20Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550294", + "timestamp": "2026-05-29T19:49:20Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Install Podman Arm64 remote client", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251985#step:5:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550294#step:5:1" }, { "name": "Test 2 - Check Podman version", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251985#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550294#step:6:1" }, { "name": "Test 3 - Check Podman help output", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251985#step:7:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550294#step:7:1" }, { "name": "Test 4 - Verify Arm64 binary", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251985#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550294#step:8:1" }, { "name": "Test 5 - Run bounded client command smoke", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251985#step:9:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550294#step:9:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251985#step:10:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550294#step:10:1", "current_version": "5.0.0", "latest_version": "5.8.2", "next_installed_version": "5.8.2", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.414127+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.624531+00:00", "publish_state": "published" } } diff --git a/data/test-results/popins2.json b/data/test-results/popins2.json index 6de2d99d65..fa99bef287 100644 --- a/data/test-results/popins2.json +++ b/data/test-results/popins2.json @@ -5,10 +5,10 @@ "version": "0.13.0" }, "run": { - "id": "25877395502", + "id": "26658703674", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109707", - "timestamp": "2026-05-14T18:18:25Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432196", + "timestamp": "2026-05-29T19:48:33Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109707#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432196#step:6:1" }, { "name": "Test 2 - Check exact release provenance", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109707#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432196#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109707#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432196#step:8:1" }, { "name": "Test 4 - Architecture verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109707#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432196#step:9:1" }, { "name": "Test 5 - Functional validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109707#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432196#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "skipped", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109707#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432196#step:11:1", "current_version": "0.13.0", "latest_version": "0.13.0", "next_installed_version": "0.13.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "skipped", "regression_decision": "no_newer_stable_available", - "production_refreshed_at": "2026-05-14T19:37:17.414331+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.624725+00:00", "publish_state": "published" } } diff --git a/data/test-results/porting_advisor.json b/data/test-results/porting_advisor.json index 778dcebea1..928fd21108 100644 --- a/data/test-results/porting_advisor.json +++ b/data/test-results/porting_advisor.json @@ -5,10 +5,10 @@ "version": "1.4" }, "run": { - "id": "25877383844", + "id": "26658692522", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071837", - "timestamp": "2026-05-14T18:18:12Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394683", + "timestamp": "2026-05-29T19:48:20Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check binary existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071837#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394683#step:6:1" }, { "name": "Test 2 - Check version output", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071837#step:7:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394683#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071837#step:8:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394683#step:8:1" }, { "name": "Test 4 - Architecture verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071837#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394683#step:9:1" }, { "name": "Test 5 - Functional validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071837#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394683#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 7, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071837#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394683#step:11:1", "current_version": "1.4", "latest_version": "1.4.1", "next_installed_version": "1.4.1", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.414524+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.624911+00:00", "publish_state": "published" } } diff --git a/data/test-results/postgis.json b/data/test-results/postgis.json index 2f646a9848..0157f05643 100644 --- a/data/test-results/postgis.json +++ b/data/test-results/postgis.json @@ -5,10 +5,10 @@ "version": "3.4.2+dfsg" }, "run": { - "id": "25877379982", + "id": "26658688675", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057476", - "timestamp": "2026-05-14T18:18:08Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380765", + "timestamp": "2026-05-29T19:48:16Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 1, + "duration_seconds": 0, "details": [ { "name": "Test 1 - Check Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057476#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380765#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057476#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380765#step:7:1" }, { "name": "Test 3 - Check Help Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057476#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380765#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057476#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380765#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057476#step:10:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380765#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057476#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380765#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.414738+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.625105+00:00", "publish_state": "published" } } diff --git a/data/test-results/postgres.json b/data/test-results/postgres.json index 5d2d6a0d80..d3ba46150a 100644 --- a/data/test-results/postgres.json +++ b/data/test-results/postgres.json @@ -2,13 +2,13 @@ "schema_version": "2.0", "package": { "name": "PostgreSQL", - "version": "16.13" + "version": "16.14" }, "run": { - "id": "25877355625", + "id": "26658667828", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976533", - "timestamp": "2026-05-14T18:17:37Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308777", + "timestamp": "2026-05-29T19:47:49Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 2, + "duration_seconds": 3, "details": [ { "name": "Test 1 - Check client and server binaries", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976533#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308777#step:6:1" }, { "name": "Test 2 - Check version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976533#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308777#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976533#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308777#step:8:1" }, { "name": "Test 4 - Verify architecture", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976533#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308777#step:9:1" }, { "name": "Test 5 - Functional start and query", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976533#step:10:1" + "duration_seconds": 3, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308777#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976533#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308777#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.414962+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.625318+00:00", "publish_state": "published" } } diff --git a/data/test-results/postman.json b/data/test-results/postman.json index e8bb6d0cd1..660a8d3515 100644 --- a/data/test-results/postman.json +++ b/data/test-results/postman.json @@ -5,10 +5,10 @@ "version": "11.71.7" }, "run": { - "id": "25877415436", + "id": "26658721315", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180518", - "timestamp": "2026-05-14T18:18:50Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491631", + "timestamp": "2026-05-29T19:48:56Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,43 +26,43 @@ "name": "Test 1 - Check binary existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180518#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491631#step:6:1" }, { "name": "Test 2 - Check version metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180518#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491631#step:7:1" }, { "name": "Test 3 - Check boot log startup signal", "status": "passed", "duration_seconds": 20, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180518#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491631#step:8:1" }, { "name": "Test 4 - Architecture verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180518#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491631#step:9:1" }, { "name": "Test 5 - Functional validation", "status": "passed", "duration_seconds": 25, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180518#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491631#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 28, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180518#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491631#step:11:1", "current_version": "11.71.7", - "latest_version": "12.10.5", - "next_installed_version": "12.10.5", + "latest_version": "12.12.6", + "next_installed_version": "12.12.6", "decision": "next_install_validated", "regression_result": "Next version installed successfully on Arm64", - "comparison": "Current pinned Postman version 11.71.7 passed smoke tests in this run. Regression validation downloaded the latest Arm64 tarball, extracted candidate version 12.10.5, and confirmed a real bounded startup on Arm64." + "comparison": "Current pinned Postman version 11.71.7 passed smoke tests in this run. Regression validation downloaded the latest Arm64 tarball, extracted candidate version 12.12.6, and confirmed a real bounded startup on Arm64." } ] }, @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.415167+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.625502+00:00", "publish_state": "published" } } diff --git a/data/test-results/powershell.json b/data/test-results/powershell.json index 3c54c81cd3..4db0a2a446 100644 --- a/data/test-results/powershell.json +++ b/data/test-results/powershell.json @@ -5,10 +5,10 @@ "version": "7.5.0" }, "run": { - "id": "25877359516", + "id": "26658670904", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991380", - "timestamp": "2026-05-14T18:17:44Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321642", + "timestamp": "2026-05-29T19:47:53Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check pwsh binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991380#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321642#step:6:1" }, { "name": "Test 2 - Check version output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991380#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321642#step:7:1" }, { "name": "Test 3 - Check PowerShell runtime version", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991380#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321642#step:8:1" }, { "name": "Test 4 - Architecture verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991380#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321642#step:9:1" }, { "name": "Test 5 - Functional validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991380#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321642#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991380#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321642#step:11:1", "current_version": "7.5.0", "latest_version": "7.5.1", "next_installed_version": "7.5.1", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.415371+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.625687+00:00", "publish_state": "published" } } diff --git a/data/test-results/predixy.json b/data/test-results/predixy.json index e84bc93dac..883eb842c8 100644 --- a/data/test-results/predixy.json +++ b/data/test-results/predixy.json @@ -5,10 +5,10 @@ "version": "7.0.0" }, "run": { - "id": "25877379982", + "id": "26658688675", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057349", - "timestamp": "2026-05-14T18:18:06Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380545", + "timestamp": "2026-05-29T19:48:14Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 34, + "duration_seconds": 35, "details": [ { "name": "Test 1 - Check Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057349#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380545#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057349#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380545#step:7:1" }, { "name": "Test 3 - Check Help Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057349#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380545#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057349#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380545#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057349#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380545#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 32, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057349#step:11:1", + "duration_seconds": 33, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380545#step:11:1", "current_version": "7.0.0", "latest_version": "7.0.1", "next_installed_version": "1.0.5", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.415597+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.625874+00:00", "publish_state": "published" } } diff --git a/data/test-results/presto.json b/data/test-results/presto.json index ca682a9762..b221c85804 100644 --- a/data/test-results/presto.json +++ b/data/test-results/presto.json @@ -5,10 +5,10 @@ "version": "0.286" }, "run": { - "id": "25877399008", + "id": "26658707245", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125146", - "timestamp": "2026-05-14T18:18:31Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445646", + "timestamp": "2026-05-29T19:48:40Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 14, + "duration_seconds": 16, "details": [ { "name": "Test 1 - Artifact Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125146#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445646#step:6:1" }, { "name": "Test 2 - Version Check", "status": "passed", "duration_seconds": 8, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125146#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445646#step:7:1" }, { "name": "Test 3 - Configuration Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125146#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445646#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125146#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445646#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 7, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125146#step:10:1" + "duration_seconds": 8, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445646#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125146#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445646#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.415816+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.626051+00:00", "publish_state": "published" } } diff --git a/data/test-results/proj.json b/data/test-results/proj.json index f4c7b359a1..e6de4855c1 100644 --- a/data/test-results/proj.json +++ b/data/test-results/proj.json @@ -5,10 +5,10 @@ "version": "9.7.1" }, "run": { - "id": "25877406767", + "id": "26658714432", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155327", - "timestamp": "2026-05-14T18:18:44Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469199", + "timestamp": "2026-05-29T19:48:49Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 262, + "duration_seconds": 258, "details": [ { "name": "Test 1 - Artifact Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155327#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469199#step:6:1" }, { "name": "Test 2 - Version Check", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155327#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469199#step:7:1" }, { "name": "Test 3 - Help Output Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155327#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469199#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155327#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469199#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155327#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469199#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 262, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155327#step:11:1", + "duration_seconds": 258, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469199#step:11:1", "current_version": "9.7.1", "latest_version": "9.8.0", "next_installed_version": "9.8.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.416001+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.626220+00:00", "publish_state": "published" } } diff --git a/data/test-results/prometheus.json b/data/test-results/prometheus.json index ad9aca23d5..072f97660c 100644 --- a/data/test-results/prometheus.json +++ b/data/test-results/prometheus.json @@ -5,10 +5,10 @@ "version": "3.1.0" }, "run": { - "id": "25877375677", + "id": "26658685142", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044532", - "timestamp": "2026-05-14T18:18:03Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370307", + "timestamp": "2026-05-29T19:48:12Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 6, + "duration_seconds": 8, "details": [ { "name": "Test 1 - Artifact Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044532#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370307#step:6:1" }, { "name": "Test 2 - Version Check", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044532#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370307#step:7:1" }, { "name": "Test 3 - Config Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044532#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370307#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044532#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370307#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044532#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370307#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 4, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044532#step:11:1", + "duration_seconds": 6, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370307#step:11:1", "current_version": "3.1.0", "latest_version": "3.2.0", "next_installed_version": "3.2.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.416201+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.626429+00:00", "publish_state": "published" } } diff --git a/data/test-results/prophet.json b/data/test-results/prophet.json index 47e9537730..dbf8862b18 100644 --- a/data/test-results/prophet.json +++ b/data/test-results/prophet.json @@ -5,10 +5,10 @@ "version": "1.1.1" }, "run": { - "id": "25877431862", + "id": "26658734615", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265894", - "timestamp": "2026-05-14T18:19:22Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537999", + "timestamp": "2026-05-29T19:49:14Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check package-specific baseline markers", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265894#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537999#step:8:1" }, { "name": "Test 2 - Check published package metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265894#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537999#step:9:1" }, { "name": "Test 3 - Check package-specific docs and manifests", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265894#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537999#step:10:1" }, { "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265894#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537999#step:11:1" }, { "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "duration_seconds": 10, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265894#step:12:1" + "duration_seconds": 9, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537999#step:12:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265894#step:13:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537999#step:13:1", "current_version": "1.1.1", "latest_version": "1.3.0", "next_installed_version": "1.3.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.416406+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.626612+00:00", "publish_state": "published" } } diff --git a/data/test-results/protobuf.json b/data/test-results/protobuf.json index 7d7cea0920..d0600c0db3 100644 --- a/data/test-results/protobuf.json +++ b/data/test-results/protobuf.json @@ -5,10 +5,10 @@ "version": "3.21.12" }, "run": { - "id": "25877411197", + "id": "26658717942", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175656", - "timestamp": "2026-05-14T18:18:51Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479962", + "timestamp": "2026-05-29T19:48:52Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175656#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479962#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175656#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479962#step:7:1" }, { "name": "Test 3 - Check Help Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175656#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479962#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175656#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479962#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175656#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479962#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175656#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479962#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.416607+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.626785+00:00", "publish_state": "published" } } diff --git a/data/test-results/psmc.json b/data/test-results/psmc.json index ee8e369bd9..a03706b68a 100644 --- a/data/test-results/psmc.json +++ b/data/test-results/psmc.json @@ -5,10 +5,10 @@ "version": "0.6.5" }, "run": { - "id": "25877419588", + "id": "26658724696", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192595", - "timestamp": "2026-05-14T18:19:01Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504199", + "timestamp": "2026-05-29T19:49:01Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Artifact Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192595#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504199#step:6:1" }, { "name": "Test 2 - Version Metadata Check", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192595#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504199#step:7:1" }, { "name": "Test 3 - Help Output Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192595#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504199#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192595#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504199#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192595#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504199#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "skipped", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192595#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504199#step:11:1", "current_version": "0.6.5", "latest_version": "0.6.5", "next_installed_version": "0.6.5", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "skipped", "regression_decision": "no_newer_stable_available", - "production_refreshed_at": "2026-05-14T19:37:17.416827+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.626955+00:00", "publish_state": "published" } } diff --git a/data/test-results/psutil.json b/data/test-results/psutil.json index 6bfbc21324..50a8738863 100644 --- a/data/test-results/psutil.json +++ b/data/test-results/psutil.json @@ -5,10 +5,10 @@ "version": "6.0.0" }, "run": { - "id": "25877367704", + "id": "26658677990", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026817", - "timestamp": "2026-05-14T18:17:55Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347617", + "timestamp": "2026-05-29T19:48:02Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check psutil module import", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026817#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347617#step:6:1" }, { "name": "Test 2 - Check version via python", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026817#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347617#step:7:1" }, { "name": "Test 3 - Check pip show", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026817#step:8:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347617#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026817#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347617#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026817#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347617#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 4, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026817#step:11:1", + "duration_seconds": 5, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347617#step:11:1", "current_version": "6.0.0", "latest_version": "6.1.0", "next_installed_version": "6.1.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.417018+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.627133+00:00", "publish_state": "published" } } diff --git a/data/test-results/pulsar.json b/data/test-results/pulsar.json index d77cd6ef00..0360e3c4fa 100644 --- a/data/test-results/pulsar.json +++ b/data/test-results/pulsar.json @@ -5,10 +5,10 @@ "version": "4.0.4" }, "run": { - "id": "25877355625", + "id": "26658667828", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976398", - "timestamp": "2026-05-14T18:17:37Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309073", + "timestamp": "2026-05-29T19:47:49Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 20, + "duration_seconds": 21, "details": [ { "name": "Test 1 - Check container running", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976398#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309073#step:6:1" }, { "name": "Test 2 - Check Admin API", "status": "passed", "duration_seconds": 10, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976398#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309073#step:7:1" }, { "name": "Test 3 - Produce Message", "status": "passed", - "duration_seconds": 3, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976398#step:8:1" + "duration_seconds": 4, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309073#step:8:1" }, { "name": "Test 4 - Consume Message", "status": "passed", "duration_seconds": 4, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976398#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309073#step:9:1" }, { "name": "Test 5 - Check Topic Stats", "status": "passed", "duration_seconds": 3, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976398#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309073#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976398#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575309073#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.417225+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.627338+00:00", "publish_state": "published" } } diff --git a/data/test-results/pulumi.json b/data/test-results/pulumi.json index be6672c616..a2810d8956 100644 --- a/data/test-results/pulumi.json +++ b/data/test-results/pulumi.json @@ -5,10 +5,10 @@ "version": "3.147.0" }, "run": { - "id": "25877419588", + "id": "26658724696", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192368", - "timestamp": "2026-05-14T18:19:05Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504157", + "timestamp": "2026-05-29T19:49:02Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 4, + "duration_seconds": 5, "details": [ { "name": "Test 1 - Check pulumi binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192368#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504157#step:6:1" }, { "name": "Test 2 - Check version output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192368#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504157#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192368#step:8:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504157#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192368#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504157#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192368#step:10:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504157#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 3, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192368#step:11:1", + "duration_seconds": 4, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504157#step:11:1", "current_version": "3.147.0", "latest_version": "3.148.0", "next_installed_version": "3.148.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.417424+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.627511+00:00", "publish_state": "published" } } diff --git a/data/test-results/puppet.json b/data/test-results/puppet.json index 8cf3d0dc08..29a3546031 100644 --- a/data/test-results/puppet.json +++ b/data/test-results/puppet.json @@ -5,10 +5,10 @@ "version": "8.8.1" }, "run": { - "id": "25877406767", + "id": "26658714432", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155317", - "timestamp": "2026-05-14T18:18:46Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469219", + "timestamp": "2026-05-29T19:48:49Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 2, + "duration_seconds": 3, "details": [ { "name": "Test 1 - Check puppet binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155317#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469219#step:6:1" }, { "name": "Test 2 - Check version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155317#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469219#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155317#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469219#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155317#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469219#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155317#step:10:1" + "duration_seconds": 2, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469219#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155317#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469219#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.417607+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.627684+00:00", "publish_state": "published" } } diff --git a/data/test-results/py3c.json b/data/test-results/py3c.json index f22fd4ec01..eef8c809e8 100644 --- a/data/test-results/py3c.json +++ b/data/test-results/py3c.json @@ -5,10 +5,10 @@ "version": "1.4" }, "run": { - "id": "25877399008", + "id": "26658707245", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125929", - "timestamp": "2026-05-14T18:18:32Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445523", + "timestamp": "2026-05-29T19:48:38Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 5, + "duration_seconds": 1, "details": [ { "name": "Test 1 - Check header files exist", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125929#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445523#step:6:1" }, { "name": "Test 2 - Check package version", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125929#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445523#step:7:1" }, { "name": "Test 3 - Check API surface", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125929#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445523#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125929#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445523#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 5, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125929#step:10:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445523#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125929#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445523#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.417829+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.627863+00:00", "publish_state": "published" } } diff --git a/data/test-results/pycaret.json b/data/test-results/pycaret.json index 0bfce69798..03a84ae242 100644 --- a/data/test-results/pycaret.json +++ b/data/test-results/pycaret.json @@ -5,10 +5,10 @@ "version": "3.0.0" }, "run": { - "id": "25877431862", + "id": "26658734615", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265847", - "timestamp": "2026-05-14T18:19:25Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538563", + "timestamp": "2026-05-29T19:49:17Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 45, + "duration_seconds": 42, "details": [ { "name": "Test 1 - Package installed", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265847#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538563#step:7:1" }, { "name": "Test 2 - Version metadata matches baseline", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265847#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538563#step:8:1" }, { "name": "Test 3 - Installed files metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265847#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538563#step:9:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265847#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538563#step:10:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265847#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538563#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 44, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265847#step:12:1", + "duration_seconds": 41, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538563#step:12:1", "current_version": "3.0.0", "latest_version": "3.0.1", "next_installed_version": "3.0.1", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.418032+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.628045+00:00", "publish_state": "published" } } diff --git a/data/test-results/pyinstaller.json b/data/test-results/pyinstaller.json index f71a311618..68309a5761 100644 --- a/data/test-results/pyinstaller.json +++ b/data/test-results/pyinstaller.json @@ -5,10 +5,10 @@ "version": "6.19.0" }, "run": { - "id": "25877411197", + "id": "26658717942", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175237", - "timestamp": "2026-05-14T18:18:59Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479816", + "timestamp": "2026-05-29T19:49:02Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 10, + "duration_seconds": 11, "details": [ { "name": "Test 1 - Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175237#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479816#step:7:1" }, { "name": "Test 2 - Version Check", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175237#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479816#step:8:1" }, { "name": "Test 3 - Help Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175237#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479816#step:9:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175237#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479816#step:10:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 10, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175237#step:11:1" + "duration_seconds": 11, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479816#step:11:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175237#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479816#step:12:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.418212+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.628228+00:00", "publish_state": "published" } } diff --git a/data/test-results/pyspice.json b/data/test-results/pyspice.json index 7967dacc2b..92c0b24c86 100644 --- a/data/test-results/pyspice.json +++ b/data/test-results/pyspice.json @@ -5,10 +5,10 @@ "version": "0.2.0" }, "run": { - "id": "25877431862", + "id": "26658734615", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265836", - "timestamp": "2026-05-14T18:19:22Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538502", + "timestamp": "2026-05-29T19:49:22Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 7, + "duration_seconds": 6, "details": [ { "name": "Test 1 - Package installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265836#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538502#step:7:1" }, { "name": "Test 2 - Version metadata matches baseline", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265836#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538502#step:8:1" }, { "name": "Test 3 - Installed files metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265836#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538502#step:9:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265836#step:10:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538502#step:10:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265836#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538502#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 7, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265836#step:12:1", + "duration_seconds": 6, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538502#step:12:1", "current_version": "0.2.0", "latest_version": "0.2.1", "next_installed_version": "0.2.1", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.418412+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.628435+00:00", "publish_state": "published" } } diff --git a/data/test-results/python-dlpy.json b/data/test-results/python-dlpy.json index a5ab6ed01b..fd5dd7f092 100644 --- a/data/test-results/python-dlpy.json +++ b/data/test-results/python-dlpy.json @@ -5,10 +5,10 @@ "version": "0.7.0" }, "run": { - "id": "25877367704", + "id": "26658677990", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026663", - "timestamp": "2026-05-14T18:17:55Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347607", + "timestamp": "2026-05-29T19:48:03Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 23, + "duration_seconds": 25, "details": [ { "name": "Test 1 - Check Python-DLPy import", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026663#step:6:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347607#step:6:1" }, { "name": "Test 2 - Check distribution versions", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026663#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347607#step:7:1" }, { "name": "Test 3 - Check package metadata", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026663#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347607#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026663#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347607#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026663#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347607#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 22, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026663#step:11:1", + "duration_seconds": 23, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347607#step:11:1", "current_version": "0.7.0", "latest_version": "1.3.0", "next_installed_version": "1.3.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.418708+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.628705+00:00", "publish_state": "published" } } diff --git a/data/test-results/python-xmlsec.json b/data/test-results/python-xmlsec.json index 766e036e64..dfaf79cce3 100644 --- a/data/test-results/python-xmlsec.json +++ b/data/test-results/python-xmlsec.json @@ -5,10 +5,10 @@ "version": "1.3.13" }, "run": { - "id": "25877359516", + "id": "26658670904", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991053", - "timestamp": "2026-05-14T18:17:47Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321811", + "timestamp": "2026-05-29T19:47:53Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check module import", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991053#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321811#step:6:1" }, { "name": "Test 2 - Check internal constants", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991053#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321811#step:7:1" }, { "name": "Test 3 - Check encryption capabilities", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991053#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321811#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991053#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321811#step:9:1" }, { "name": "Test 5 - Functional Validation (Constants check)", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991053#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321811#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991053#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321811#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.418940+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.628885+00:00", "publish_state": "published" } } diff --git a/data/test-results/python.json b/data/test-results/python.json index 5322808e8a..5b25d532f1 100644 --- a/data/test-results/python.json +++ b/data/test-results/python.json @@ -5,10 +5,10 @@ "version": "3.11.0" }, "run": { - "id": "25877411197", + "id": "26658717942", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175850", - "timestamp": "2026-05-14T18:18:57Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479878", + "timestamp": "2026-05-29T19:49:01Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175850#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479878#step:7:1" }, { "name": "Test 2 - Version Check", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175850#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479878#step:8:1" }, { "name": "Test 3 - Help Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175850#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479878#step:9:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175850#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479878#step:10:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175850#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479878#step:11:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175850#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479878#step:12:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.419138+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.629058+00:00", "publish_state": "published" } } diff --git a/data/test-results/python_swat.json b/data/test-results/python_swat.json index 11a5787c1b..7d9b0ded8d 100644 --- a/data/test-results/python_swat.json +++ b/data/test-results/python_swat.json @@ -5,10 +5,10 @@ "version": "1.17.1" }, "run": { - "id": "25877392111", + "id": "26658699892", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096588", - "timestamp": "2026-05-14T18:18:25Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420990", + "timestamp": "2026-05-29T19:48:29Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -25,38 +25,38 @@ { "name": "Test 1 - Check module import", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096588#step:6:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420990#step:6:1" }, { "name": "Test 2 - Check version output", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096588#step:7:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420990#step:7:1" }, { "name": "Test 3 - Check API surface", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096588#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420990#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096588#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420990#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096588#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420990#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096588#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420990#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.419355+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.629235+00:00", "publish_state": "published" } } diff --git a/data/test-results/pytorch.json b/data/test-results/pytorch.json index 0ce0f326dc..411e39f103 100644 --- a/data/test-results/pytorch.json +++ b/data/test-results/pytorch.json @@ -5,10 +5,10 @@ "version": "2.12.0+cu130" }, "run": { - "id": "25877403044", + "id": "26658710721", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140844", - "timestamp": "2026-05-14T18:18:36Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456221", + "timestamp": "2026-05-29T19:48:43Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 8, + "duration_seconds": 7, "details": [ { "name": "Test 1 - Import PyTorch", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140844#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456221#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140844#step:7:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456221#step:7:1" }, { "name": "Test 3 - Check Module Help Output", "status": "passed", - "duration_seconds": 3, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140844#step:8:1" + "duration_seconds": 4, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456221#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140844#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456221#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140844#step:10:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456221#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140844#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456221#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.419556+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.629440+00:00", "publish_state": "published" } } diff --git a/data/test-results/pyzmq.json b/data/test-results/pyzmq.json index ffcb691837..5de8607a5f 100644 --- a/data/test-results/pyzmq.json +++ b/data/test-results/pyzmq.json @@ -5,10 +5,10 @@ "version": "27.1.0" }, "run": { - "id": "25877367704", + "id": "26658677990", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027085", - "timestamp": "2026-05-14T18:17:56Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347548", + "timestamp": "2026-05-29T19:48:02Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check zmq module import", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027085#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347548#step:6:1" }, { "name": "Test 2 - Check zmq version via python", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027085#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347548#step:7:1" }, { "name": "Test 3 - Check pip show", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027085#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347548#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027085#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347548#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027085#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347548#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027085#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347548#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.419763+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.629618+00:00", "publish_state": "published" } } diff --git a/data/test-results/qdrant.json b/data/test-results/qdrant.json index 15e6cf6d60..2bdb8fc171 100644 --- a/data/test-results/qdrant.json +++ b/data/test-results/qdrant.json @@ -5,10 +5,10 @@ "version": "1.13.4" }, "run": { - "id": "25877423406", + "id": "26658727918", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209617", - "timestamp": "2026-05-14T18:19:01Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515037", + "timestamp": "2026-05-29T19:49:05Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 6, + "duration_seconds": 7, "details": [ { "name": "Test 1 - Check Qdrant image exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209617#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515037#step:6:1" }, { "name": "Test 2 - Check version endpoint", "status": "passed", - "duration_seconds": 4, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209617#step:7:1" + "duration_seconds": 3, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515037#step:7:1" }, { "name": "Test 3 - Check container configuration", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209617#step:8:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515037#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209617#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515037#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 3, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209617#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515037#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209617#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515037#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.419952+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.629787+00:00", "publish_state": "published" } } diff --git a/data/test-results/qemu.json b/data/test-results/qemu.json index 8b0fe17f00..bc18a7e5f2 100644 --- a/data/test-results/qemu.json +++ b/data/test-results/qemu.json @@ -5,10 +5,10 @@ "version": "8.2.2" }, "run": { - "id": "25877419588", + "id": "26658724696", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192329", - "timestamp": "2026-05-14T18:18:58Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504089", + "timestamp": "2026-05-29T19:49:02Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 1, + "duration_seconds": 0, "details": [ { "name": "Test 1 - Check QEMU binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192329#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504089#step:6:1" }, { "name": "Test 2 - Check QEMU version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192329#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504089#step:7:1" }, { "name": "Test 3 - Check qemu-img help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192329#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504089#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192329#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504089#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192329#step:10:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504089#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192329#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504089#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.420162+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.629960+00:00", "publish_state": "published" } } diff --git a/data/test-results/qflow.json b/data/test-results/qflow.json index 79e5241d86..ba9e7c1a1a 100644 --- a/data/test-results/qflow.json +++ b/data/test-results/qflow.json @@ -5,10 +5,10 @@ "version": "1.1.23-1" }, "run": { - "id": "25877431862", + "id": "26658734615", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265865", - "timestamp": "2026-05-14T18:19:22Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538188", + "timestamp": "2026-05-29T19:49:21Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 64, + "duration_seconds": 54, "details": [ { "name": "Test 1 - Check package-specific baseline markers", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265865#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538188#step:8:1" }, { "name": "Test 2 - Check published package metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265865#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538188#step:9:1" }, { "name": "Test 3 - Check package-specific docs and manifests", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265865#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538188#step:10:1" }, { "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265865#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538188#step:11:1" }, { "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265865#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538188#step:12:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 64, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265865#step:13:1", + "duration_seconds": 54, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538188#step:13:1", "current_version": "1.1.23-1", "latest_version": "1.4.104", "next_installed_version": "1.4.104", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.420361+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.630134+00:00", "publish_state": "published" } } diff --git a/data/test-results/qiniu-qshell.json b/data/test-results/qiniu-qshell.json index 3a779b945a..26c215238b 100644 --- a/data/test-results/qiniu-qshell.json +++ b/data/test-results/qiniu-qshell.json @@ -5,10 +5,10 @@ "version": "2.18.0" }, "run": { - "id": "25877387746", + "id": "26658696365", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084640", - "timestamp": "2026-05-14T18:18:15Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407744", + "timestamp": "2026-05-29T19:48:24Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 1, + "duration_seconds": 0, "details": [ { "name": "Test 1 - Check binary existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084640#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407744#step:6:1" }, { "name": "Test 2 - Check version output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084640#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407744#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084640#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407744#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084640#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407744#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084640#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407744#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084640#step:11:1", + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407744#step:11:1", "current_version": "2.18.0", "latest_version": "2.19.0", "next_installed_version": "2.19.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.420548+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.630342+00:00", "publish_state": "published" } } diff --git a/data/test-results/qperf.json b/data/test-results/qperf.json index f61e0c052e..34606b7452 100644 --- a/data/test-results/qperf.json +++ b/data/test-results/qperf.json @@ -5,10 +5,10 @@ "version": "0.4.11" }, "run": { - "id": "25877399008", + "id": "26658707245", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125109", - "timestamp": "2026-05-14T18:18:33Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575444690", + "timestamp": "2026-05-29T19:48:39Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 6, + "duration_seconds": 7, "details": [ { "name": "Test 1 - Check qperf binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125109#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575444690#step:6:1" }, { "name": "Test 2 - Check version output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125109#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575444690#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125109#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575444690#step:8:1" }, { "name": "Test 4 - Architecture verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125109#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575444690#step:9:1" }, { "name": "Test 5 - Functional validation", "status": "passed", - "duration_seconds": 6, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125109#step:10:1" + "duration_seconds": 7, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575444690#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125109#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575444690#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.420767+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.630534+00:00", "publish_state": "published" } } diff --git a/data/test-results/qrouter.json b/data/test-results/qrouter.json index 0a77f6d106..3752fa69a1 100644 --- a/data/test-results/qrouter.json +++ b/data/test-results/qrouter.json @@ -5,10 +5,10 @@ "version": "1.3.33-1" }, "run": { - "id": "25877431862", + "id": "26658734615", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265743", - "timestamp": "2026-05-14T18:19:22Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538068", + "timestamp": "2026-05-29T19:49:20Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 25, + "duration_seconds": 20, "details": [ { "name": "Test 1 - Check package-specific baseline markers", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265743#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538068#step:8:1" }, { "name": "Test 2 - Check published package metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265743#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538068#step:9:1" }, { "name": "Test 3 - Check package-specific docs and manifests", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265743#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538068#step:10:1" }, { "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265743#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538068#step:11:1" }, { "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "duration_seconds": 6, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265743#step:12:1" + "duration_seconds": 4, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538068#step:12:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 25, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265743#step:13:1", + "duration_seconds": 20, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538068#step:13:1", "current_version": "1.3.33-1", "latest_version": "1.4.90", "next_installed_version": "1.4.90", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.420966+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.630710+00:00", "publish_state": "published" } } diff --git a/data/test-results/qt.json b/data/test-results/qt.json index 6d1e312175..9591989b99 100644 --- a/data/test-results/qt.json +++ b/data/test-results/qt.json @@ -5,10 +5,10 @@ "version": "6.4.2" }, "run": { - "id": "25877406767", + "id": "26658714432", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154379", - "timestamp": "2026-05-14T18:18:43Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468622", + "timestamp": "2026-05-29T19:48:48Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check qmake6 binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154379#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468622#step:6:1" }, { "name": "Test 2 - Check version output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154379#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468622#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154379#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468622#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154379#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468622#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154379#step:10:1" + "duration_seconds": 3, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468622#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154379#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468622#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.421148+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.630886+00:00", "publish_state": "published" } } diff --git a/data/test-results/quartz.json b/data/test-results/quartz.json index a1427acd17..e5041e51e9 100644 --- a/data/test-results/quartz.json +++ b/data/test-results/quartz.json @@ -5,10 +5,10 @@ "version": "2.5.0" }, "run": { - "id": "25877371674", + "id": "26658681575", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031804", - "timestamp": "2026-05-14T18:17:59Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358237", + "timestamp": "2026-05-29T19:48:07Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Quartz artifact exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031804#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358237#step:6:1" }, { "name": "Test 2 - Check version output", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031804#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358237#step:7:1" }, { "name": "Test 3 - Check dependency resolution", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031804#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358237#step:8:1" }, { "name": "Test 4 - Architecture verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031804#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358237#step:9:1" }, { "name": "Test 5 - Functional validation", "status": "passed", "duration_seconds": 4, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031804#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358237#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 6, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031804#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358237#step:11:1", "current_version": "2.5.0", "latest_version": "2.5.1", "next_installed_version": "2.5.1", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.421366+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.631062+00:00", "publish_state": "published" } } diff --git a/data/test-results/quilt.json b/data/test-results/quilt.json index 6b2fb13761..2e763f98e2 100644 --- a/data/test-results/quilt.json +++ b/data/test-results/quilt.json @@ -5,10 +5,10 @@ "version": "3.2.0" }, "run": { - "id": "25877419588", + "id": "26658724696", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048191507", - "timestamp": "2026-05-14T18:19:06Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503357", + "timestamp": "2026-05-29T19:49:10Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check module import", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048191507#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503357#step:7:1" }, { "name": "Test 2 - Check version output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048191507#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503357#step:8:1" }, { "name": "Test 3 - Check CLI help output", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048191507#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503357#step:9:1" }, { "name": "Test 4 - Architecture verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048191507#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503357#step:10:1" }, { "name": "Test 5 - Functional validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048191507#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503357#step:11:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048191507#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503357#step:12:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.421565+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.631261+00:00", "publish_state": "published" } } diff --git a/data/test-results/rabbitmq.json b/data/test-results/rabbitmq.json index 0ff7914f42..47b5cff1a0 100644 --- a/data/test-results/rabbitmq.json +++ b/data/test-results/rabbitmq.json @@ -5,10 +5,10 @@ "version": "3.12.1" }, "run": { - "id": "25877383844", + "id": "26658692522", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071803", - "timestamp": "2026-05-14T18:18:12Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394313", + "timestamp": "2026-05-29T19:48:19Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 4, + "duration_seconds": 3, "details": [ { "name": "Test 1 - Check Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071803#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394313#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071803#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394313#step:7:1" }, { "name": "Test 3 - Check Help Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071803#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394313#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071803#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394313#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 3, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071803#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394313#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071803#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394313#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.421785+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.631447+00:00", "publish_state": "published" } } diff --git a/data/test-results/raft.json b/data/test-results/raft.json index 51c8fc3be1..4de48b3b79 100644 --- a/data/test-results/raft.json +++ b/data/test-results/raft.json @@ -5,10 +5,10 @@ "version": "23.12.00" }, "run": { - "id": "25877431862", + "id": "26658734615", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265851", - "timestamp": "2026-05-14T18:19:22Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538252", + "timestamp": "2026-05-29T19:49:17Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 2, + "duration_seconds": 1, "details": [ { "name": "Test 1 - Check package-specific baseline markers", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265851#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538252#step:8:1" }, { "name": "Test 2 - Check published package metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265851#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538252#step:9:1" }, { "name": "Test 3 - Check package-specific docs and manifests", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265851#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538252#step:10:1" }, { "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265851#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538252#step:11:1" }, { "name": "Test 5 - Run scoped Arm preflight proof", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265851#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538252#step:12:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265851#step:13:1", + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538252#step:13:1", "current_version": "23.12.00", "latest_version": "26.04.00", "next_installed_version": "26.04.00", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.421983+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.631628+00:00", "publish_state": "published" } } diff --git a/data/test-results/ragflow.json b/data/test-results/ragflow.json index 9381b2bf09..143b72ab00 100644 --- a/data/test-results/ragflow.json +++ b/data/test-results/ragflow.json @@ -5,10 +5,10 @@ "version": "0.7.0" }, "run": { - "id": "25877431862", + "id": "26658734615", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265890", - "timestamp": "2026-05-14T18:19:22Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538163", + "timestamp": "2026-05-29T19:49:22Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,46 +20,46 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 6, + "duration_seconds": 7, "details": [ { "name": "Test 1 - Check package-specific baseline markers", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265890#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538163#step:8:1" }, { "name": "Test 2 - Check published package metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265890#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538163#step:9:1" }, { "name": "Test 3 - Check package-specific docs and manifests", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265890#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538163#step:10:1" }, { "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265890#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538163#step:11:1" }, { "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265890#step:12:1" + "duration_seconds": 3, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538163#step:12:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 4, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265890#step:13:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538163#step:13:1", "current_version": "0.7.0", - "latest_version": "0.25.4", - "next_installed_version": "0.25.4", + "latest_version": "0.25.6", + "next_installed_version": "0.25.6", "decision": "limited_cpu_smoke_validated", "regression_result": "Arm preflight proof passed on Arm64", "comparison": "Compiled the next RAGFlow Python source candidate on the Arm64 runner and validated its Docker Compose service graph. Full service runtime remains scoped because the full stack requires DB/vector/object-store/LLM services." @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.422179+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.631804+00:00", "publish_state": "published" } } diff --git a/data/test-results/ramalama.json b/data/test-results/ramalama.json index a4f6ba2203..7eb3b1c0e8 100644 --- a/data/test-results/ramalama.json +++ b/data/test-results/ramalama.json @@ -5,10 +5,10 @@ "version": "0.21.0" }, "run": { - "id": "25877423406", + "id": "26658727918", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210154", - "timestamp": "2026-05-14T18:19:05Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515997", + "timestamp": "2026-05-29T19:49:06Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check ramalama binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210154#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515997#step:6:1" }, { "name": "Test 2 - Check ramalama version command", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210154#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515997#step:7:1" }, { "name": "Test 3 - Check ramalama help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210154#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515997#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210154#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515997#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210154#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515997#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210154#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515997#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.422359+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.631977+00:00", "publish_state": "published" } } diff --git a/data/test-results/rancher.json b/data/test-results/rancher.json index e682d7f971..5ccddece48 100644 --- a/data/test-results/rancher.json +++ b/data/test-results/rancher.json @@ -5,10 +5,10 @@ "version": "2.13.2" }, "run": { - "id": "25877371674", + "id": "26658681575", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031837", - "timestamp": "2026-05-14T18:17:58Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358352", + "timestamp": "2026-05-29T19:48:07Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031837#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358352#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031837#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358352#step:7:1" }, { "name": "Test 3 - Check Help Output", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031837#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358352#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031837#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358352#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 48, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031837#step:10:1" + "duration_seconds": 49, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358352#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031837#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358352#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.422530+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.632141+00:00", "publish_state": "published" } } diff --git a/data/test-results/ranger.json b/data/test-results/ranger.json index 967e3ca35c..ed1a939d2b 100644 --- a/data/test-results/ranger.json +++ b/data/test-results/ranger.json @@ -5,10 +5,10 @@ "version": "1.9.3" }, "run": { - "id": "25877406767", + "id": "26658714432", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155764", - "timestamp": "2026-05-14T18:18:44Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469427", + "timestamp": "2026-05-29T19:48:49Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 0, + "duration_seconds": 1, "details": [ { "name": "Test 1 - Check Ranger executable exists", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155764#step:7:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469427#step:7:1" }, { "name": "Test 2 - Check exact version output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155764#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469427#step:8:1" }, { "name": "Test 3 - Check help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155764#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469427#step:9:1" }, { "name": "Test 4 - Architecture verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155764#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469427#step:10:1" }, { "name": "Test 5 - Functional validation", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155764#step:11:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469427#step:11:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155764#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469427#step:12:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.422699+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.632342+00:00", "publish_state": "published" } } diff --git a/data/test-results/rav1e.json b/data/test-results/rav1e.json index abbc7c0955..a10d50159e 100644 --- a/data/test-results/rav1e.json +++ b/data/test-results/rav1e.json @@ -5,10 +5,10 @@ "version": "0.3.2" }, "run": { - "id": "25877431862", + "id": "26658734615", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265679", - "timestamp": "2026-05-14T18:19:22Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538618", + "timestamp": "2026-05-29T19:49:16Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 3, + "duration_seconds": 2, "details": [ { "name": "Test 1 - Check package-specific baseline markers", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265679#step:8:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538618#step:8:1" }, { "name": "Test 2 - Check published package metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265679#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538618#step:9:1" }, { "name": "Test 3 - Check package-specific docs and manifests", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265679#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538618#step:10:1" }, { "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265679#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538618#step:11:1" }, { "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265679#step:12:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538618#step:12:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 3, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265679#step:13:1", + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538618#step:13:1", "current_version": "0.3.2", "latest_version": "0.8.1", "next_installed_version": "0.8.1", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.422927+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.632519+00:00", "publish_state": "published" } } diff --git a/data/test-results/raxml.json b/data/test-results/raxml.json index 014d82e9b9..ca7963047a 100644 --- a/data/test-results/raxml.json +++ b/data/test-results/raxml.json @@ -5,10 +5,10 @@ "version": "8.2.12" }, "run": { - "id": "25877392111", + "id": "26658699892", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096372", - "timestamp": "2026-05-14T18:18:21Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421195", + "timestamp": "2026-05-29T19:48:30Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096372#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421195#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096372#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421195#step:7:1" }, { "name": "Test 3 - Check Help Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096372#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421195#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096372#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421195#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096372#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421195#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096372#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421195#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.423143+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.632698+00:00", "publish_state": "published" } } diff --git a/data/test-results/ray.json b/data/test-results/ray.json index 643c92d2bf..45341a94e2 100644 --- a/data/test-results/ray.json +++ b/data/test-results/ray.json @@ -5,10 +5,10 @@ "version": "2.55.1" }, "run": { - "id": "25877367704", + "id": "26658677990", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026750", - "timestamp": "2026-05-14T18:17:53Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347216", + "timestamp": "2026-05-29T19:48:02Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check ray binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026750#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347216#step:6:1" }, { "name": "Test 2 - Check ray version command", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026750#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347216#step:7:1" }, { "name": "Test 3 - Check ray help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026750#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347216#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026750#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347216#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026750#step:10:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347216#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026750#step:11:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347216#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.423462+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.632965+00:00", "publish_state": "published" } } diff --git a/data/test-results/re2.json b/data/test-results/re2.json index 58652596dd..d3a98833d4 100644 --- a/data/test-results/re2.json +++ b/data/test-results/re2.json @@ -5,10 +5,10 @@ "version": "20230301-3build1" }, "run": { - "id": "25877387746", + "id": "26658696365", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048085095", - "timestamp": "2026-05-14T18:18:16Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407335", + "timestamp": "2026-05-29T19:48:25Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 2, + "duration_seconds": 3, "details": [ { "name": "Test 1 - Check Library Artifacts", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048085095#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407335#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048085095#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407335#step:7:1" }, { "name": "Test 3 - Check Build Configuration", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048085095#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407335#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048085095#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407335#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048085095#step:10:1" + "duration_seconds": 3, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407335#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048085095#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407335#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.423658+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.633148+00:00", "publish_state": "published" } } diff --git a/data/test-results/re2c.json b/data/test-results/re2c.json index d447bee51d..52eb79336c 100644 --- a/data/test-results/re2c.json +++ b/data/test-results/re2c.json @@ -5,10 +5,10 @@ "version": "4.3" }, "run": { - "id": "25877419588", + "id": "26658724696", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192570", - "timestamp": "2026-05-14T18:19:01Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504203", + "timestamp": "2026-05-29T19:49:01Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 334, + "duration_seconds": 331, "details": [ { "name": "Test 1 - Check re2c binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192570#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504203#step:6:1" }, { "name": "Test 2 - Check exact version output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192570#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504203#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192570#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504203#step:8:1" }, { "name": "Test 4 - Architecture verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192570#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504203#step:9:1" }, { "name": "Test 5 - Functional validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192570#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504203#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 334, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192570#step:11:1", + "duration_seconds": 331, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504203#step:11:1", "current_version": "4.3", "latest_version": "4.3.1", "next_installed_version": "4.3.1", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.423851+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.633356+00:00", "publish_state": "published" } } diff --git a/data/test-results/redis.json b/data/test-results/redis.json index bd280e302a..74223416a9 100644 --- a/data/test-results/redis.json +++ b/data/test-results/redis.json @@ -5,10 +5,10 @@ "version": "7.2.9" }, "run": { - "id": "25877415436", + "id": "26658721315", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180937", - "timestamp": "2026-05-14T18:18:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491866", + "timestamp": "2026-05-29T19:48:56Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 39, + "duration_seconds": 38, "details": [ { "name": "Test 1 - Check Redis binaries exist", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180937#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491866#step:6:1" }, { "name": "Test 2 - Check Redis version output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180937#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491866#step:7:1" }, { "name": "Test 3 - Check Redis CLI help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180937#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491866#step:8:1" }, { "name": "Test 4 - Architecture verification", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180937#step:9:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491866#step:9:1" }, { "name": "Test 5 - Functional validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180937#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491866#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 38, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180937#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491866#step:11:1", "current_version": "7.2.9", "latest_version": "7.2.10", "next_installed_version": "7.2.10", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.424041+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.633540+00:00", "publish_state": "published" } } diff --git a/data/test-results/redpanda.json b/data/test-results/redpanda.json index bfcf07b6d9..ca34b19278 100644 --- a/data/test-results/redpanda.json +++ b/data/test-results/redpanda.json @@ -5,10 +5,10 @@ "version": "25.3.10" }, "run": { - "id": "25877403044", + "id": "26658710721", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140809", - "timestamp": "2026-05-14T18:18:37Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456407", + "timestamp": "2026-05-29T19:48:44Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Artifact Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140809#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456407#step:6:1" }, { "name": "Test 2 - Version Check", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140809#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456407#step:7:1" }, { "name": "Test 3 - Help Output Validation", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140809#step:8:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456407#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140809#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456407#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140809#step:10:1" + "duration_seconds": 3, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456407#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140809#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456407#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.424231+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.633727+00:00", "publish_state": "published" } } diff --git a/data/test-results/relic.json b/data/test-results/relic.json index 957c113827..3091c1b93e 100644 --- a/data/test-results/relic.json +++ b/data/test-results/relic.json @@ -5,10 +5,10 @@ "version": "v8.2.0" }, "run": { - "id": "25877387746", + "id": "26658696365", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083688", - "timestamp": "2026-05-14T18:18:15Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575406559", + "timestamp": "2026-05-29T19:48:24Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check relic binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083688#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575406559#step:6:1" }, { "name": "Test 2 - Check relic version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083688#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575406559#step:7:1" }, { "name": "Test 3 - Check relic help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083688#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575406559#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083688#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575406559#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083688#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575406559#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083688#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575406559#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.424404+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.633915+00:00", "publish_state": "published" } } diff --git a/data/test-results/relion.json b/data/test-results/relion.json index 9c46986079..fce294f6ca 100644 --- a/data/test-results/relion.json +++ b/data/test-results/relion.json @@ -5,10 +5,10 @@ "version": "5.0.0" }, "run": { - "id": "25877375677", + "id": "26658685142", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043699", - "timestamp": "2026-05-14T18:18:03Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369872", + "timestamp": "2026-05-29T19:48:12Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 287, + "duration_seconds": 290, "details": [ { "name": "Test 1 - Check Relion binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043699#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369872#step:6:1" }, { "name": "Test 2 - Check Relion help output", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043699#step:7:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369872#step:7:1" }, { "name": "Test 3 - Check Relion CLI options", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043699#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369872#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043699#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369872#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043699#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369872#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 286, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043699#step:11:1", + "duration_seconds": 290, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369872#step:11:1", "current_version": "5.0.0", "latest_version": "5.0.1", "next_installed_version": "5.0.1", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.424583+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.634095+00:00", "publish_state": "published" } } diff --git a/data/test-results/repeatafterme.json b/data/test-results/repeatafterme.json index 0ae78105ca..56f61743ee 100644 --- a/data/test-results/repeatafterme.json +++ b/data/test-results/repeatafterme.json @@ -5,10 +5,10 @@ "version": "0.0.6" }, "run": { - "id": "25877359516", + "id": "26658670904", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990930", - "timestamp": "2026-05-14T18:17:44Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321523", + "timestamp": "2026-05-29T19:47:52Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check RAMExtend binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990930#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321523#step:6:1" }, { "name": "Test 2 - Check help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990930#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321523#step:7:1" }, { "name": "Test 3 - Verify Aarch64 binary", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990930#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321523#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990930#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321523#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990930#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321523#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 5, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990930#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321523#step:11:1", "current_version": "0.0.6", "latest_version": "0.0.7", "next_installed_version": "0.0.7", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.424784+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.634297+00:00", "publish_state": "published" } } diff --git a/data/test-results/repeatmasker.json b/data/test-results/repeatmasker.json index ad9571a09c..8343b508ff 100644 --- a/data/test-results/repeatmasker.json +++ b/data/test-results/repeatmasker.json @@ -5,10 +5,10 @@ "version": "4.1.0" }, "run": { - "id": "25877375677", + "id": "26658685142", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043698", - "timestamp": "2026-05-14T18:18:04Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370682", + "timestamp": "2026-05-29T19:48:12Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 15, + "duration_seconds": 7, "details": [ { "name": "Test 1 - Check RepeatMasker files exist", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043698#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370682#step:6:1" }, { "name": "Test 2 - Check RepeatMasker version output", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043698#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370682#step:7:1" }, { "name": "Test 3 - Check RepeatMasker help output", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043698#step:8:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370682#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043698#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370682#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043698#step:10:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370682#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 14, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043698#step:11:1", + "duration_seconds": 6, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370682#step:11:1", "current_version": "4.1.0", "latest_version": "4.2.3", "next_installed_version": "4.2.3", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.424977+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.634478+00:00", "publish_state": "published" } } diff --git a/data/test-results/repeatscout.json b/data/test-results/repeatscout.json index e790d421d4..55558ab357 100644 --- a/data/test-results/repeatscout.json +++ b/data/test-results/repeatscout.json @@ -5,10 +5,10 @@ "version": "1.0.6" }, "run": { - "id": "25877419588", + "id": "26658724696", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192530", - "timestamp": "2026-05-14T18:18:58Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504062", + "timestamp": "2026-05-29T19:49:02Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 55, + "duration_seconds": 54, "details": [ { "name": "Test 1 - Check RepeatScout binaries exist", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192530#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504062#step:6:1" }, { "name": "Test 2 - Check RepeatScout version output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192530#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504062#step:7:1" }, { "name": "Test 3 - Check RepeatScout help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192530#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504062#step:8:1" }, { "name": "Test 4 - Verify Aarch64 binaries", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192530#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504062#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 27, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192530#step:10:1" + "duration_seconds": 26, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504062#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 28, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192530#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504062#step:11:1", "current_version": "1.0.6", "latest_version": "1.0.7", "next_installed_version": "1.0.7", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.425158+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.634652+00:00", "publish_state": "published" } } diff --git a/data/test-results/resiliency-extension.json b/data/test-results/resiliency-extension.json index e764636bd0..cef93d282b 100644 --- a/data/test-results/resiliency-extension.json +++ b/data/test-results/resiliency-extension.json @@ -5,10 +5,10 @@ "version": "0.3.0" }, "run": { - "id": "25877431862", + "id": "26658734615", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265748", - "timestamp": "2026-05-14T18:19:22Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538474", + "timestamp": "2026-05-29T19:49:20Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 0, + "duration_seconds": 1, "details": [ { "name": "Test 1 - Check package-specific baseline markers", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265748#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538474#step:8:1" }, { "name": "Test 2 - Check published package metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265748#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538474#step:9:1" }, { "name": "Test 3 - Check package-specific docs and manifests", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265748#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538474#step:10:1" }, { "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265748#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538474#step:11:1" }, { "name": "Test 5 - Run scoped Arm preflight proof", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265748#step:12:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538474#step:12:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265748#step:13:1", + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538474#step:13:1", "current_version": "0.3.0", "latest_version": "0.5.0", "next_installed_version": "0.5.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.425339+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.634837+00:00", "publish_state": "published" } } diff --git a/data/test-results/restreamer.json b/data/test-results/restreamer.json index 41e70e2df5..423c9ddec6 100644 --- a/data/test-results/restreamer.json +++ b/data/test-results/restreamer.json @@ -5,10 +5,10 @@ "version": "2.12.0" }, "run": { - "id": "25877431862", + "id": "26658734615", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265750", - "timestamp": "2026-05-14T18:19:21Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538133", + "timestamp": "2026-05-29T19:49:15Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 5, "failed": 0, "skipped": 1, - "duration_seconds": 11, + "duration_seconds": 15, "details": [ { "name": "Test 1 - Check package-specific baseline markers", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265750#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538133#step:8:1" }, { "name": "Test 2 - Check published package metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265750#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538133#step:9:1" }, { "name": "Test 3 - Check package-specific docs and manifests", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265750#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538133#step:10:1" }, { "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265750#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538133#step:11:1" }, { "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "duration_seconds": 10, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265750#step:12:1" + "duration_seconds": 14, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538133#step:12:1" }, { "name": "Test 6 - Regression Validation", "status": "skipped", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265750#step:13:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575538133#step:13:1", "current_version": "2.12.0", "latest_version": "2.12.0", "next_installed_version": "not_installed", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "skipped", "regression_decision": "no_newer_stable_available", - "production_refreshed_at": "2026-05-14T19:37:17.425517+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.635025+00:00", "publish_state": "published" } } diff --git a/data/test-results/rethinkdb.json b/data/test-results/rethinkdb.json index 8adc23757f..d81aceba92 100644 --- a/data/test-results/rethinkdb.json +++ b/data/test-results/rethinkdb.json @@ -5,10 +5,10 @@ "version": "2.4.4" }, "run": { - "id": "25877371674", + "id": "26658681575", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031585", - "timestamp": "2026-05-14T18:17:59Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358090", + "timestamp": "2026-05-29T19:48:07Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 794, + "duration_seconds": 793, "details": [ { "name": "Test 1 - Check built rethinkdb binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031585#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358090#step:6:1" }, { "name": "Test 2 - Check exact version output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031585#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358090#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031585#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358090#step:8:1" }, { "name": "Test 4 - Architecture verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031585#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358090#step:9:1" }, { "name": "Test 5 - Functional validation", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031585#step:10:1" + "duration_seconds": 2, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358090#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 793, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031585#step:11:1", + "duration_seconds": 791, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358090#step:11:1", "current_version": "2.4.4", "latest_version": "2.4.5", "next_installed_version": "2.4.5", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.425690+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.635202+00:00", "publish_state": "published" } } diff --git a/data/test-results/reveal.json b/data/test-results/reveal.json index 8ee131e138..bef30f03d9 100644 --- a/data/test-results/reveal.json +++ b/data/test-results/reveal.json @@ -5,10 +5,10 @@ "version": "5.2.1" }, "run": { - "id": "25877375677", + "id": "26658685142", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045023", - "timestamp": "2026-05-14T18:18:07Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370279", + "timestamp": "2026-05-29T19:48:16Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Artifact Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045023#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370279#step:7:1" }, { "name": "Test 2 - Version Check", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045023#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370279#step:8:1" }, { "name": "Test 3 - Configuration Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045023#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370279#step:9:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045023#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370279#step:10:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045023#step:11:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370279#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045023#step:12:1", + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370279#step:12:1", "current_version": "5.2.1", "latest_version": "6.0.0", "next_installed_version": "6.0.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.425894+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.635418+00:00", "publish_state": "published" } } diff --git a/data/test-results/rinetd.json b/data/test-results/rinetd.json index 611220b53f..c2287bc68d 100644 --- a/data/test-results/rinetd.json +++ b/data/test-results/rinetd.json @@ -5,10 +5,10 @@ "version": "0.62.0sam" }, "run": { - "id": "25877367704", + "id": "26658677990", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027007", - "timestamp": "2026-05-14T18:17:55Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346982", + "timestamp": "2026-05-29T19:48:03Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check rinetd binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027007#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346982#step:6:1" }, { "name": "Test 2 - Check exact version output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027007#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346982#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027007#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346982#step:8:1" }, { "name": "Test 4 - Architecture verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027007#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346982#step:9:1" }, { "name": "Test 5 - Functional validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027007#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346982#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 4, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027007#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346982#step:11:1", "current_version": "0.62.0sam", "latest_version": "0.73", "next_installed_version": "0.73", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.426080+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.635603+00:00", "publish_state": "published" } } diff --git a/data/test-results/ringdove-eda.json b/data/test-results/ringdove-eda.json index 6493beaf4f..62df06f4c9 100644 --- a/data/test-results/ringdove-eda.json +++ b/data/test-results/ringdove-eda.json @@ -5,10 +5,10 @@ "version": "3.1.4-2" }, "run": { - "id": "25877431862", + "id": "26658734615", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265726", - "timestamp": "2026-05-14T18:19:22Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537984", + "timestamp": "2026-05-29T19:49:17Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 1, + "duration_seconds": 0, "details": [ { "name": "Test 1 - Package-manager install evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265726#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537984#step:6:1" }, { "name": "Test 2 - Installed Arm64 package metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265726#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537984#step:7:1" }, { "name": "Test 3 - CLI version starts on Arm", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265726#step:8:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537984#step:8:1" }, { "name": "Test 4 - Arm64 runner gate", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265726#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537984#step:9:1" }, { "name": "Test 5 - Headless runtime smoke", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265726#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537984#step:10:1" }, { "name": "Test 6 - Regression validation applicability", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265726#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537984#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.426255+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.635779+00:00", "publish_state": "published" } } diff --git a/data/test-results/rke2.json b/data/test-results/rke2.json index b217b9b711..b2b54b2787 100644 --- a/data/test-results/rke2.json +++ b/data/test-results/rke2.json @@ -5,10 +5,10 @@ "version": "1.33.5+rke2r1" }, "run": { - "id": "25877375677", + "id": "26658685142", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044936", - "timestamp": "2026-05-14T18:18:01Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370332", + "timestamp": "2026-05-29T19:48:10Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044936#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370332#step:6:1" }, { "name": "Test 2 - Version Check", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044936#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370332#step:7:1" }, { "name": "Test 3 - Help Output Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044936#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370332#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044936#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370332#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 25, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044936#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370332#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044936#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370332#step:11:1", "current_version": "1.33.5+rke2r1", "latest_version": "1.33.6+rke2r1", "next_installed_version": "1.33.6+rke2r1", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.426425+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.635957+00:00", "publish_state": "published" } } diff --git a/data/test-results/rmblast.json b/data/test-results/rmblast.json index c9c9dd207c..cce812cdaa 100644 --- a/data/test-results/rmblast.json +++ b/data/test-results/rmblast.json @@ -5,10 +5,10 @@ "version": "2.14.1" }, "run": { - "id": "25877379982", + "id": "26658688675", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056514", - "timestamp": "2026-05-14T18:18:05Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380546", + "timestamp": "2026-05-29T19:48:14Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 2338, + "duration_seconds": 2326, "details": [ { "name": "Test 1 - Check RMBlast binaries exist", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056514#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380546#step:6:1" }, { "name": "Test 2 - Check pinned release version", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056514#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380546#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056514#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380546#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056514#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380546#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056514#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380546#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 2337, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048056514#step:11:1", + "duration_seconds": 2325, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380546#step:11:1", "current_version": "2.14.1", "latest_version": "2.17.1", "next_installed_version": "2.17.1", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.426595+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.636141+00:00", "publish_state": "published" } } diff --git a/data/test-results/rmm.json b/data/test-results/rmm.json index b2318e5a95..9089ddf10a 100644 --- a/data/test-results/rmm.json +++ b/data/test-results/rmm.json @@ -5,10 +5,10 @@ "version": "23.12.00" }, "run": { - "id": "25877431862", + "id": "26658734615", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265787", - "timestamp": "2026-05-14T18:19:21Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537933", + "timestamp": "2026-05-29T19:49:17Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 0, + "duration_seconds": 1, "details": [ { "name": "Test 1 - Check package-specific baseline markers", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265787#step:8:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537933#step:8:1" }, { "name": "Test 2 - Check published package metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265787#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537933#step:9:1" }, { "name": "Test 3 - Check package-specific docs and manifests", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265787#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537933#step:10:1" }, { "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265787#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537933#step:11:1" }, { "name": "Test 5 - Run scoped Arm preflight proof", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265787#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537933#step:12:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877431862/job/76048265787#step:13:1", + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658734615/job/78575537933#step:13:1", "current_version": "23.12.00", "latest_version": "26.04.00", "next_installed_version": "26.04.00", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.426783+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.636361+00:00", "publish_state": "published" } } diff --git a/data/test-results/robot-framework.json b/data/test-results/robot-framework.json index e581acd9f8..3823c90880 100644 --- a/data/test-results/robot-framework.json +++ b/data/test-results/robot-framework.json @@ -5,10 +5,10 @@ "version": "Framework" }, "run": { - "id": "25877359516", + "id": "26658670904", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991266", - "timestamp": "2026-05-14T18:17:44Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321879", + "timestamp": "2026-05-29T19:47:51Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 1, + "duration_seconds": 0, "details": [ { "name": "Test 1 - Check robot binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991266#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321879#step:6:1" }, { "name": "Test 2 - Check robot version command", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991266#step:7:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321879#step:7:1" }, { "name": "Test 3 - Check robot help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991266#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321879#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991266#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321879#step:9:1" }, { "name": "Test 5 - Functional Validation (Real Test Execution)", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991266#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321879#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991266#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321879#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.426990+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.636544+00:00", "publish_state": "published" } } diff --git a/data/test-results/rocketmq.json b/data/test-results/rocketmq.json index e617d182f0..6200903d3b 100644 --- a/data/test-results/rocketmq.json +++ b/data/test-results/rocketmq.json @@ -5,10 +5,10 @@ "version": "5.3.3" }, "run": { - "id": "25877399008", + "id": "26658707245", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126184", - "timestamp": "2026-05-14T18:18:32Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445401", + "timestamp": "2026-05-29T19:48:39Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 22, + "duration_seconds": 23, "details": [ { "name": "Test 1 - Check RocketMQ binaries exist", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126184#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445401#step:6:1" }, { "name": "Test 2 - Check pinned release version", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126184#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445401#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126184#step:8:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445401#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126184#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445401#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 6, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126184#step:10:1" + "duration_seconds": 8, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445401#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 14, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126184#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445401#step:11:1", "current_version": "5.3.3", "latest_version": "5.3.4", "next_installed_version": "5.3.4", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.427187+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.636714+00:00", "publish_state": "published" } } diff --git a/data/test-results/rocksdb.json b/data/test-results/rocksdb.json index 416e7f0d8d..6140c91976 100644 --- a/data/test-results/rocksdb.json +++ b/data/test-results/rocksdb.json @@ -5,10 +5,10 @@ "version": "8.9.1" }, "run": { - "id": "25877355625", + "id": "26658667828", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976563", - "timestamp": "2026-05-14T18:17:39Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308923", + "timestamp": "2026-05-29T19:47:54Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 1, + "duration_seconds": 0, "details": [ { "name": "Test 1 - Check RocksDB library is installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976563#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308923#step:7:1" }, { "name": "Test 2 - Check RocksDB header files exist", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976563#step:8:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308923#step:8:1" }, { "name": "Test 3 - Check RocksDB shared library exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976563#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308923#step:9:1" }, { "name": "Test 4 - Check ldb tool (RocksDB command-line tool)", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976563#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308923#step:10:1" }, { "name": "Test 5 - Create and query a simple RocksDB database", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976563#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308923#step:11:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976563#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308923#step:12:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.427418+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.636886+00:00", "publish_state": "published" } } diff --git a/data/test-results/rocksdbjni.json b/data/test-results/rocksdbjni.json index b786174492..b20465859b 100644 --- a/data/test-results/rocksdbjni.json +++ b/data/test-results/rocksdbjni.json @@ -5,10 +5,10 @@ "version": "10.5.1" }, "run": { - "id": "25877371674", + "id": "26658681575", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031749", - "timestamp": "2026-05-14T18:18:02Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358518", + "timestamp": "2026-05-29T19:48:08Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 13, + "duration_seconds": 14, "details": [ { "name": "Test 1 - Check RocksDBjni jar and Arm64 native library", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031749#step:6:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358518#step:6:1" }, { "name": "Test 2 - Check RocksDBjni version output", "status": "passed", - "duration_seconds": 4, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031749#step:7:1" + "duration_seconds": 3, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358518#step:7:1" }, { "name": "Test 3 - Check Maven dependency resolution", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031749#step:8:1" + "duration_seconds": 2, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358518#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031749#step:9:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358518#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031749#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358518#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 6, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031749#step:11:1", + "duration_seconds": 7, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358518#step:11:1", "current_version": "10.5.1", "latest_version": "10.8.3", "next_installed_version": "10.8.3", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.427630+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.637058+00:00", "publish_state": "published" } } diff --git a/data/test-results/rocky_linux.json b/data/test-results/rocky_linux.json index a4506a9050..d7a560b47d 100644 --- a/data/test-results/rocky_linux.json +++ b/data/test-results/rocky_linux.json @@ -5,10 +5,10 @@ "version": "9.7" }, "run": { - "id": "25877395502", + "id": "26658703674", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110147", - "timestamp": "2026-05-14T18:18:25Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432976", + "timestamp": "2026-05-29T19:48:34Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 7, + "duration_seconds": 8, "details": [ { "name": "Test 1 - Image Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110147#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432976#step:6:1" }, { "name": "Test 2 - Version Check", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110147#step:7:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432976#step:7:1" }, { "name": "Test 3 - Help Output or Configuration", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110147#step:8:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432976#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110147#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432976#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110147#step:10:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432976#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 6, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110147#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432976#step:11:1", "current_version": "9.7", "latest_version": "10.0", "next_installed_version": "10.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.427981+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.637355+00:00", "publish_state": "published" } } diff --git a/data/test-results/rook.json b/data/test-results/rook.json index c0153d885c..b954359f8c 100644 --- a/data/test-results/rook.json +++ b/data/test-results/rook.json @@ -5,10 +5,10 @@ "version": "1.15.8" }, "run": { - "id": "25877403044", + "id": "26658710721", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140629", - "timestamp": "2026-05-14T18:18:38Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456335", + "timestamp": "2026-05-29T19:48:43Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 20, + "duration_seconds": 18, "details": [ { "name": "Test 1 - Check Rook binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140629#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456335#step:6:1" }, { "name": "Test 2 - Check version output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140629#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456335#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140629#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456335#step:8:1" }, { "name": "Test 4 - Architecture verification", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140629#step:9:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456335#step:9:1" }, { "name": "Test 5 - Functional validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140629#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456335#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 19, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140629#step:11:1", + "duration_seconds": 18, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456335#step:11:1", "current_version": "1.15.8", "latest_version": "1.15.9", "next_installed_version": "1.15.9", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.428183+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.637554+00:00", "publish_state": "published" } } diff --git a/data/test-results/rqlite.json b/data/test-results/rqlite.json index 57d1e60b8a..4bd530eea7 100644 --- a/data/test-results/rqlite.json +++ b/data/test-results/rqlite.json @@ -5,10 +5,10 @@ "version": "8.36.17" }, "run": { - "id": "25877359516", + "id": "26658670904", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991599", - "timestamp": "2026-05-14T18:17:43Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321830", + "timestamp": "2026-05-29T19:47:52Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check rqlite binaries exist", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991599#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321830#step:6:1" }, { "name": "Test 2 - Check version output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991599#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321830#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991599#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321830#step:8:1" }, { "name": "Test 4 - Architecture verification", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991599#step:9:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321830#step:9:1" }, { "name": "Test 5 - Functional validation", "status": "passed", "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991599#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321830#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 3, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991599#step:11:1", + "duration_seconds": 2, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321830#step:11:1", "current_version": "8.36.17", "latest_version": "8.36.18", "next_installed_version": "8.36.18", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.428417+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.637742+00:00", "publish_state": "published" } } diff --git a/data/test-results/ruby.json b/data/test-results/ruby.json index 9fbe6ece11..9f7cc7ecd4 100644 --- a/data/test-results/ruby.json +++ b/data/test-results/ruby.json @@ -5,10 +5,10 @@ "version": "3.4.0" }, "run": { - "id": "25877423406", + "id": "26658727918", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210296", - "timestamp": "2026-05-14T18:19:06Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515874", + "timestamp": "2026-05-29T19:49:07Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,49 +20,49 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 134, + "duration_seconds": 133, "details": [ { "name": "Test 1 - Check Ruby binaries exist", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210296#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515874#step:6:1" }, { "name": "Test 2 - Check version output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210296#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515874#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210296#step:8:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515874#step:8:1" }, { "name": "Test 4 - Architecture verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210296#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515874#step:9:1" }, { "name": "Test 5 - Functional validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210296#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515874#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 133, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210296#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515874#step:11:1", "current_version": "3.4.0", - "latest_version": "4.0.4", - "next_installed_version": "4.0.4", + "latest_version": "4.0.5", + "next_installed_version": "4.0.5", "decision": "next_install_validated", "regression_result": "Next version installed successfully on Arm64", - "comparison": "Current pinned Ruby version 3.4.0 passed smoke tests in this run. Regression validation built candidate version 4.0.4 from the official source tarball on Arm64, confirmed the installed interpreter reports the expected version, and reran the Ruby/gem/irb smoke path successfully." + "comparison": "Current pinned Ruby version 3.4.0 passed smoke tests in this run. Regression validation built candidate version 4.0.5 from the official source tarball on Arm64, confirmed the installed interpreter reports the expected version, and reran the Ruby/gem/irb smoke path successfully." } ] }, @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.428621+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.637930+00:00", "publish_state": "published" } } diff --git a/data/test-results/rubyonrails.json b/data/test-results/rubyonrails.json index 0ed2688166..8c6dddd9e7 100644 --- a/data/test-results/rubyonrails.json +++ b/data/test-results/rubyonrails.json @@ -5,10 +5,10 @@ "version": "7.2.2.1" }, "run": { - "id": "25877403044", + "id": "26658710721", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140557", - "timestamp": "2026-05-14T18:18:39Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456267", + "timestamp": "2026-05-29T19:48:46Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140557#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456267#step:7:1" }, { "name": "Test 2 - Version Check", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140557#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456267#step:8:1" }, { "name": "Test 3 - Help Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140557#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456267#step:9:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140557#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456267#step:10:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 48, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140557#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456267#step:11:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140557#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456267#step:12:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.428853+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.638111+00:00", "publish_state": "published" } } diff --git a/data/test-results/rundeck.json b/data/test-results/rundeck.json index 1e87ed7eeb..e3708be618 100644 --- a/data/test-results/rundeck.json +++ b/data/test-results/rundeck.json @@ -5,10 +5,10 @@ "version": "5.11.0" }, "run": { - "id": "25877415436", + "id": "26658721315", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181309", - "timestamp": "2026-05-14T18:18:55Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491569", + "timestamp": "2026-05-29T19:48:56Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Rundeck launcher exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181309#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491569#step:6:1" }, { "name": "Test 2 - Check pinned release artifact metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181309#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491569#step:7:1" }, { "name": "Test 3 - Check launcher help output", "status": "passed", "duration_seconds": 3, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181309#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491569#step:8:1" }, { "name": "Test 4 - Architecture verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181309#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491569#step:9:1" }, { "name": "Test 5 - Functional validation", "status": "passed", "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181309#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491569#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181309#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491569#step:11:1", "current_version": "5.11.0", "latest_version": "5.11.1", "next_installed_version": "5.11.1", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.429076+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.638303+00:00", "publish_state": "published" } } diff --git a/data/test-results/rust.json b/data/test-results/rust.json index d3478e7ccc..185fd67949 100644 --- a/data/test-results/rust.json +++ b/data/test-results/rust.json @@ -5,10 +5,10 @@ "version": "1.93.1" }, "run": { - "id": "25877392111", + "id": "26658699892", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096514", - "timestamp": "2026-05-14T18:18:22Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420577", + "timestamp": "2026-05-29T19:48:30Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 5, + "duration_seconds": 4, "details": [ { "name": "Test 1 - Check Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096514#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420577#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096514#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420577#step:7:1" }, { "name": "Test 3 - Check Help Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096514#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420577#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096514#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420577#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 5, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096514#step:10:1" + "duration_seconds": 4, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420577#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096514#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420577#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.429271+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.638482+00:00", "publish_state": "published" } } diff --git a/data/test-results/salmon.json b/data/test-results/salmon.json index 207668be10..144b907013 100644 --- a/data/test-results/salmon.json +++ b/data/test-results/salmon.json @@ -5,10 +5,10 @@ "version": "1.10.1" }, "run": { - "id": "25877415436", + "id": "26658721315", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179915", - "timestamp": "2026-05-14T18:18:50Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575490862", + "timestamp": "2026-05-29T19:48:56Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check salmon binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179915#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575490862#step:6:1" }, { "name": "Test 2 - Check version output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179915#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575490862#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179915#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575490862#step:8:1" }, { "name": "Test 4 - Architecture verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179915#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575490862#step:9:1" }, { "name": "Test 5 - Functional validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179915#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575490862#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179915#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575490862#step:11:1", "current_version": "1.10.1", "latest_version": "1.11.0", "next_installed_version": "1.11.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.429485+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.638654+00:00", "publish_state": "published" } } diff --git a/data/test-results/salt.json b/data/test-results/salt.json index 3d9f41f408..ac01fb11cb 100644 --- a/data/test-results/salt.json +++ b/data/test-results/salt.json @@ -5,10 +5,10 @@ "version": "3007.13" }, "run": { - "id": "25877419588", + "id": "26658724696", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192289", - "timestamp": "2026-05-14T18:19:01Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504156", + "timestamp": "2026-05-29T19:49:02Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check salt-call CLI exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192289#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504156#step:6:1" }, { "name": "Test 2 - Check version output", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192289#step:7:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504156#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192289#step:8:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504156#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192289#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504156#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192289#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504156#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192289#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504156#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.429704+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.638834+00:00", "publish_state": "published" } } diff --git a/data/test-results/samba.json b/data/test-results/samba.json index fac6e9feb4..bdf38a4e2b 100644 --- a/data/test-results/samba.json +++ b/data/test-results/samba.json @@ -5,10 +5,10 @@ "version": "4.23.6" }, "run": { - "id": "25877379982", + "id": "26658688675", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057179", - "timestamp": "2026-05-14T18:18:06Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380576", + "timestamp": "2026-05-29T19:48:15Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 126, + "duration_seconds": 135, "details": [ { "name": "Test 1 - Check smbclient binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057179#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380576#step:6:1" }, { "name": "Test 2 - Check exact version output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057179#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380576#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057179#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380576#step:8:1" }, { "name": "Test 4 - Architecture verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057179#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380576#step:9:1" }, { "name": "Test 5 - Functional validation", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057179#step:10:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380576#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 126, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057179#step:11:1", + "duration_seconds": 135, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380576#step:11:1", "current_version": "4.23.6", "latest_version": "4.23.7", "next_installed_version": "4.23.7", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.429956+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.639002+00:00", "publish_state": "published" } } diff --git a/data/test-results/saspy.json b/data/test-results/saspy.json index 5b280f0261..b4c39025f6 100644 --- a/data/test-results/saspy.json +++ b/data/test-results/saspy.json @@ -5,10 +5,10 @@ "version": "5.107.1" }, "run": { - "id": "25877403044", + "id": "26658710721", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140637", - "timestamp": "2026-05-14T18:18:38Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456272", + "timestamp": "2026-05-29T19:48:44Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check module import", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140637#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456272#step:6:1" }, { "name": "Test 2 - Check version output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140637#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456272#step:7:1" }, { "name": "Test 3 - Check API surface", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140637#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456272#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140637#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456272#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140637#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456272#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140637#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456272#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.430190+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.639181+00:00", "publish_state": "published" } } diff --git a/data/test-results/scala.json b/data/test-results/scala.json index 5efcc80aa4..95a25dabe1 100644 --- a/data/test-results/scala.json +++ b/data/test-results/scala.json @@ -5,10 +5,10 @@ "version": "3.6.4" }, "run": { - "id": "25877383844", + "id": "26658692522", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071312", - "timestamp": "2026-05-14T18:18:13Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394942", + "timestamp": "2026-05-29T19:48:22Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 14, + "duration_seconds": 12, "details": [ { "name": "Test 1 - Check scala and scalac exist", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071312#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394942#step:6:1" }, { "name": "Test 2 - Check exact version output", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071312#step:7:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394942#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071312#step:8:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394942#step:8:1" }, { "name": "Test 4 - Architecture verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071312#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394942#step:9:1" }, { "name": "Test 5 - Functional validation", "status": "passed", - "duration_seconds": 6, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071312#step:10:1" + "duration_seconds": 5, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394942#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 7, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071312#step:11:1", + "duration_seconds": 6, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394942#step:11:1", "current_version": "3.6.4", "latest_version": "3.7.0", "next_installed_version": "3.7.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.430390+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.639404+00:00", "publish_state": "published" } } diff --git a/data/test-results/scikit-learn.json b/data/test-results/scikit-learn.json index d28a2eef33..34b318bb7b 100644 --- a/data/test-results/scikit-learn.json +++ b/data/test-results/scikit-learn.json @@ -5,10 +5,10 @@ "version": "1.8.0" }, "run": { - "id": "25877371674", + "id": "26658681575", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031709", - "timestamp": "2026-05-14T18:17:58Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358285", + "timestamp": "2026-05-29T19:48:07Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 3, + "duration_seconds": 2, "details": [ { "name": "Test 1 - Check Scikit-learn module import", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031709#step:6:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358285#step:6:1" }, { "name": "Test 2 - Check version output", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031709#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358285#step:7:1" }, { "name": "Test 3 - Check pip show", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031709#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358285#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031709#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358285#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031709#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358285#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031709#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358285#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.430597+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.639596+00:00", "publish_state": "published" } } diff --git a/data/test-results/scipy.json b/data/test-results/scipy.json index c49fe96771..828ca8fb1c 100644 --- a/data/test-results/scipy.json +++ b/data/test-results/scipy.json @@ -5,10 +5,10 @@ "version": "1.16.0" }, "run": { - "id": "25877411197", + "id": "26658717942", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175604", - "timestamp": "2026-05-14T18:18:59Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480020", + "timestamp": "2026-05-29T19:48:59Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 1, + "duration_seconds": 0, "details": [ { "name": "Test 1 - Package Availability", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175604#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480020#step:7:1" }, { "name": "Test 2 - Version Check", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175604#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480020#step:8:1" }, { "name": "Test 3 - Configuration Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175604#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480020#step:9:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175604#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480020#step:10:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175604#step:11:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480020#step:11:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175604#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575480020#step:12:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.430813+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.639777+00:00", "publish_state": "published" } } diff --git a/data/test-results/seastar.json b/data/test-results/seastar.json index 62ee75eed8..12714747d1 100644 --- a/data/test-results/seastar.json +++ b/data/test-results/seastar.json @@ -5,10 +5,10 @@ "version": "17.05.0" }, "run": { - "id": "25877399008", + "id": "26658707245", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048124809", - "timestamp": "2026-05-14T18:18:31Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575444569", + "timestamp": "2026-05-29T19:48:39Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 2, + "duration_seconds": 1, "details": [ { "name": "Test 1 - Check baseline source tree", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048124809#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575444569#step:6:1" }, { "name": "Test 2 - Check release tag version", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048124809#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575444569#step:7:1" }, { "name": "Test 3 - Check configure help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048124809#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575444569#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048124809#step:9:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575444569#step:9:1" }, { "name": "Test 5 - Functional source validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048124809#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575444569#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048124809#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575444569#step:11:1", "current_version": "17.05.0", "latest_version": "18.08.0", "next_installed_version": "18.08.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.431001+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.639949+00:00", "publish_state": "published" } } diff --git a/data/test-results/seata.json b/data/test-results/seata.json index d93faef79d..42f8bb721a 100644 --- a/data/test-results/seata.json +++ b/data/test-results/seata.json @@ -5,10 +5,10 @@ "version": "2.6.0" }, "run": { - "id": "25877367704", + "id": "26658677990", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026691", - "timestamp": "2026-05-14T18:17:55Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347488", + "timestamp": "2026-05-29T19:48:03Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Seata Script", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026691#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347488#step:7:1" }, { "name": "Test 2 - Check Java dependency", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026691#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347488#step:8:1" }, { "name": "Test 3 - Check Seata Config", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026691#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347488#step:9:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026691#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347488#step:10:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026691#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347488#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "skipped", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026691#step:12:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347488#step:12:1", "current_version": "2.6.0", "latest_version": "2.6.0", "next_installed_version": "2.6.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "skipped", "regression_decision": "no_newer_stable_available", - "production_refreshed_at": "2026-05-14T19:37:17.431184+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.640119+00:00", "publish_state": "published" } } diff --git a/data/test-results/sendbird-uikit.json b/data/test-results/sendbird-uikit.json index 03dae3e6f8..0fc8de249f 100644 --- a/data/test-results/sendbird-uikit.json +++ b/data/test-results/sendbird-uikit.json @@ -5,10 +5,10 @@ "version": "3.0.0" }, "run": { - "id": "25877411197", + "id": "26658717942", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174612", - "timestamp": "2026-05-14T18:18:53Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478601", + "timestamp": "2026-05-29T19:48:56Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 7, + "duration_seconds": 8, "details": [ { "name": "Test 1 - Package Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174612#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478601#step:7:1" }, { "name": "Test 2 - Version Check", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174612#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478601#step:8:1" }, { "name": "Test 3 - Dependency Tree Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174612#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478601#step:9:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174612#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478601#step:10:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174612#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478601#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 7, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174612#step:12:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478601#step:12:1", "current_version": "3.0.0", "latest_version": "3.0.1", "next_installed_version": "3.0.1", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.431361+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.640322+00:00", "publish_state": "published" } } diff --git a/data/test-results/sennajs.json b/data/test-results/sennajs.json index c3227d3785..9e01950b04 100644 --- a/data/test-results/sennajs.json +++ b/data/test-results/sennajs.json @@ -5,10 +5,10 @@ "version": "2.8.0" }, "run": { - "id": "25877375677", + "id": "26658685142", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044647", - "timestamp": "2026-05-14T18:18:10Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370350", + "timestamp": "2026-05-29T19:48:14Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 5, "failed": 0, "skipped": 1, - "duration_seconds": 1, + "duration_seconds": 0, "details": [ { "name": "Test 1 - Check Library Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044647#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370350#step:7:1" }, { "name": "Test 2 - Check Version Metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044647#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370350#step:8:1" }, { "name": "Test 3 - Check Module Configuration", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044647#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370350#step:9:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044647#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370350#step:10:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044647#step:11:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370350#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "skipped", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044647#step:12:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370350#step:12:1", "current_version": "2.8.0", "latest_version": "2.8.0", "next_installed_version": "not_installed", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "skipped", "regression_decision": "current_is_latest_stable", - "production_refreshed_at": "2026-05-14T19:37:17.431580+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.640518+00:00", "publish_state": "published" } } diff --git a/data/test-results/sensu.json b/data/test-results/sensu.json index 128e8f8cac..5589376c13 100644 --- a/data/test-results/sensu.json +++ b/data/test-results/sensu.json @@ -5,10 +5,10 @@ "version": "6.12.0" }, "run": { - "id": "25877423406", + "id": "26658727918", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210353", - "timestamp": "2026-05-14T18:19:12Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515867", + "timestamp": "2026-05-29T19:49:05Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 2, + "duration_seconds": 1, "details": [ { "name": "Test 1 - Artifact Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210353#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515867#step:6:1" }, { "name": "Test 2 - Version Check", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210353#step:7:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515867#step:7:1" }, { "name": "Test 3 - Help Output Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210353#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515867#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210353#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515867#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210353#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515867#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210353#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515867#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.431790+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.640693+00:00", "publish_state": "published" } } diff --git a/data/test-results/sentry-go.json b/data/test-results/sentry-go.json index d7a3874776..774ec00625 100644 --- a/data/test-results/sentry-go.json +++ b/data/test-results/sentry-go.json @@ -5,10 +5,10 @@ "version": "v0.36.0" }, "run": { - "id": "25877406767", + "id": "26658714432", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154268", - "timestamp": "2026-05-14T18:18:52Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468651", + "timestamp": "2026-05-29T19:48:57Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Module Availability", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154268#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468651#step:7:1" }, { "name": "Test 2 - Version Check", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154268#step:8:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468651#step:8:1" }, { "name": "Test 3 - Help Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154268#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468651#step:9:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154268#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468651#step:10:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 8, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154268#step:11:1" + "duration_seconds": 9, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468651#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048154268#step:12:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575468651#step:12:1", "current_version": "v0.36.0", "latest_version": "v0.36.1", "next_installed_version": "v0.36.1", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.432015+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.640861+00:00", "publish_state": "published" } } diff --git a/data/test-results/sentry-javascript.json b/data/test-results/sentry-javascript.json index 5f565da0ea..38e64ca456 100644 --- a/data/test-results/sentry-javascript.json +++ b/data/test-results/sentry-javascript.json @@ -5,10 +5,10 @@ "version": "10.43.0" }, "run": { - "id": "25877395502", + "id": "26658703674", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109586", - "timestamp": "2026-05-14T18:18:31Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432180", + "timestamp": "2026-05-29T19:48:38Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 4, + "duration_seconds": 3, "details": [ { "name": "Test 1 - Package Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109586#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432180#step:7:1" }, { "name": "Test 2 - Version Check", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109586#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432180#step:8:1" }, { "name": "Test 3 - Configuration Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109586#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432180#step:9:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109586#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432180#step:10:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109586#step:11:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432180#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 3, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109586#step:12:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432180#step:12:1", "current_version": "10.43.0", "latest_version": "10.44.0", "next_installed_version": "10.44.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.432212+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.641038+00:00", "publish_state": "published" } } diff --git a/data/test-results/sentry-python.json b/data/test-results/sentry-python.json index f344939e4e..fea5307018 100644 --- a/data/test-results/sentry-python.json +++ b/data/test-results/sentry-python.json @@ -2,13 +2,13 @@ "schema_version": "2.0", "package": { "name": "Sentry-Python", - "version": "2.60.0" + "version": "2.61.0" }, "run": { - "id": "25877383844", + "id": "26658692522", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071730", - "timestamp": "2026-05-14T18:18:13Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394674", + "timestamp": "2026-05-29T19:48:19Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -25,38 +25,38 @@ { "name": "Test 1 - Check Module Import", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071730#step:6:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394674#step:6:1" }, { "name": "Test 2 - Build Sentry client", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071730#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394674#step:7:1" }, { "name": "Test 3 - Capture scoped message", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071730#step:8:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394674#step:8:1" }, { "name": "Test 4 - Capture exception event", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071730#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394674#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071730#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394674#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071730#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394674#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.432412+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.641212+00:00", "publish_state": "published" } } diff --git a/data/test-results/shap.json b/data/test-results/shap.json index a5810f6a8c..d3b819fa60 100644 --- a/data/test-results/shap.json +++ b/data/test-results/shap.json @@ -5,10 +5,10 @@ "version": "0.42.1" }, "run": { - "id": "25877435852", + "id": "26658737633", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251101", - "timestamp": "2026-05-14T18:19:24Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549322", + "timestamp": "2026-05-29T19:49:31Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 59, + "duration_seconds": 55, "details": [ { "name": "Test 1 - Check package-specific baseline markers", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251101#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549322#step:9:1" }, { "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251101#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549322#step:10:1" }, { "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251101#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549322#step:11:1" }, { "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251101#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549322#step:12:1" }, { "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "duration_seconds": 23, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251101#step:13:1" + "duration_seconds": 28, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549322#step:13:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 36, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251101#step:15:1", + "duration_seconds": 27, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549322#step:15:1", "current_version": "0.42.1", "latest_version": "0.51.0", "next_installed_version": "0.51.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.432599+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.641415+00:00", "publish_state": "published" } } diff --git a/data/test-results/shiny.json b/data/test-results/shiny.json index c827d11af1..05e1949d8f 100644 --- a/data/test-results/shiny.json +++ b/data/test-results/shiny.json @@ -5,10 +5,10 @@ "version": "1.8.0" }, "run": { - "id": "25877392111", + "id": "26658699892", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096563", - "timestamp": "2026-05-14T18:18:21Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420814", + "timestamp": "2026-05-29T19:48:30Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -25,38 +25,38 @@ { "name": "Test 1 - Check Package Existence", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096563#step:6:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420814#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096563#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420814#step:7:1" }, { "name": "Test 3 - Check Help Output", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096563#step:8:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420814#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096563#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420814#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096563#step:10:1" + "duration_seconds": 2, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420814#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096563#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420814#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.432907+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.641686+00:00", "publish_state": "published" } } diff --git a/data/test-results/shopify.json b/data/test-results/shopify.json index 03e2a76f95..7648768537 100644 --- a/data/test-results/shopify.json +++ b/data/test-results/shopify.json @@ -5,10 +5,10 @@ "version": "3.66.0" }, "run": { - "id": "25877383844", + "id": "26658692522", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048070659", - "timestamp": "2026-05-14T18:18:13Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575393148", + "timestamp": "2026-05-29T19:48:19Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 5, + "duration_seconds": 6, "details": [ { "name": "Test 1 - Check Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048070659#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575393148#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048070659#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575393148#step:7:1" }, { "name": "Test 3 - Check Help Output", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048070659#step:8:1" + "duration_seconds": 3, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575393148#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048070659#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575393148#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048070659#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575393148#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048070659#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575393148#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.433091+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.641863+00:00", "publish_state": "published" } } diff --git a/data/test-results/signalfx-agent.json b/data/test-results/signalfx-agent.json index 510a392537..45cf46f7b8 100644 --- a/data/test-results/signalfx-agent.json +++ b/data/test-results/signalfx-agent.json @@ -5,10 +5,10 @@ "version": "5.27.0" }, "run": { - "id": "25877423406", + "id": "26658727918", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209693", - "timestamp": "2026-05-14T18:19:09Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515035", + "timestamp": "2026-05-29T19:49:11Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209693#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515035#step:7:1" }, { "name": "Test 2 - Version Check", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209693#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515035#step:8:1" }, { "name": "Test 3 - Help Output Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209693#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515035#step:9:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209693#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515035#step:10:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 8, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209693#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515035#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 18, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209693#step:12:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515035#step:12:1", "current_version": "5.27.0", "latest_version": "5.27.1", "next_installed_version": "5.27.1", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.433295+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.642032+00:00", "publish_state": "published" } } diff --git a/data/test-results/signoz.json b/data/test-results/signoz.json index b69cfc325f..434de758b9 100644 --- a/data/test-results/signoz.json +++ b/data/test-results/signoz.json @@ -5,10 +5,10 @@ "version": "0.115.0" }, "run": { - "id": "25877387746", + "id": "26658696365", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048085133", - "timestamp": "2026-05-14T18:18:16Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408047", + "timestamp": "2026-05-29T19:48:24Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048085133#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408047#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048085133#step:7:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408047#step:7:1" }, { "name": "Test 3 - Check Help Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048085133#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408047#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048085133#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408047#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048085133#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408047#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048085133#step:11:1", + "duration_seconds": 2, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575408047#step:11:1", "current_version": "0.115.0", "latest_version": "0.116.0", "next_installed_version": "0.116.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.433523+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.642207+00:00", "publish_state": "published" } } diff --git a/data/test-results/skopeo.json b/data/test-results/skopeo.json index dce2ec5fd9..bb5575fc34 100644 --- a/data/test-results/skopeo.json +++ b/data/test-results/skopeo.json @@ -5,10 +5,10 @@ "version": "1.3.0" }, "run": { - "id": "25877435852", + "id": "26658737633", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252011", - "timestamp": "2026-05-14T18:19:17Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550009", + "timestamp": "2026-05-29T19:49:22Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 25, + "duration_seconds": 36, "details": [ { "name": "Test 1 - Validate baseline image manifest and pull", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252011#step:5:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550009#step:5:1" }, { "name": "Test 2 - Inspect pulled baseline image", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252011#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550009#step:6:1" }, { "name": "Test 3 - Check Skopeo version", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252011#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550009#step:7:1" }, { "name": "Test 4 - Check Skopeo help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252011#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550009#step:8:1" }, { "name": "Test 5 - Run daemonless Skopeo inspect smoke", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252011#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550009#step:9:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252011#step:10:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550009#step:10:1", "current_version": "1.3.0", "latest_version": "latest", "next_installed_version": "latest", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.433729+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.642419+00:00", "publish_state": "published" } } diff --git a/data/test-results/slang.json b/data/test-results/slang.json index f534b85bd7..db5bda60b3 100644 --- a/data/test-results/slang.json +++ b/data/test-results/slang.json @@ -5,10 +5,10 @@ "version": "8.0.0" }, "run": { - "id": "25877435852", + "id": "26658737633", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251194", - "timestamp": "2026-05-14T18:19:15Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549419", + "timestamp": "2026-05-29T19:49:21Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -25,38 +25,38 @@ { "name": "Test 1 - Package installed", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251194#step:7:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549419#step:7:1" }, { "name": "Test 2 - Version metadata matches baseline", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251194#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549419#step:8:1" }, { "name": "Test 3 - Installed files metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251194#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549419#step:9:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251194#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549419#step:10:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251194#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549419#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 5, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251194#step:12:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549419#step:12:1", "current_version": "8.0.0", "latest_version": "8.1.0", "next_installed_version": "8.1.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.433978+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.642598+00:00", "publish_state": "published" } } diff --git a/data/test-results/slurm.json b/data/test-results/slurm.json index ce17a7c3e8..1f9b984ba5 100644 --- a/data/test-results/slurm.json +++ b/data/test-results/slurm.json @@ -5,10 +5,10 @@ "version": "25.05.7" }, "run": { - "id": "25877411197", + "id": "26658717942", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175374", - "timestamp": "2026-05-14T18:18:48Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479541", + "timestamp": "2026-05-29T19:48:51Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 168, + "duration_seconds": 171, "details": [ { "name": "Test 1 - Check srun binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175374#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479541#step:6:1" }, { "name": "Test 2 - Check exact version output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175374#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479541#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175374#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479541#step:8:1" }, { "name": "Test 4 - Architecture verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175374#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479541#step:9:1" }, { "name": "Test 5 - Functional validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175374#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479541#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 168, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175374#step:11:1", + "duration_seconds": 171, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479541#step:11:1", "current_version": "25.05.7", "latest_version": "25.11.4", "next_installed_version": "25.11.4", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.434220+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.642778+00:00", "publish_state": "published" } } diff --git a/data/test-results/smcpp.json b/data/test-results/smcpp.json index 796dd12767..de015eeae6 100644 --- a/data/test-results/smcpp.json +++ b/data/test-results/smcpp.json @@ -5,10 +5,10 @@ "version": "1.15.3" }, "run": { - "id": "25877423406", + "id": "26658727918", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209998", - "timestamp": "2026-05-14T18:19:16Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515070", + "timestamp": "2026-05-29T19:49:09Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 2, + "duration_seconds": 1, "details": [ { "name": "Test 1 - Check smc++ command exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209998#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515070#step:7:1" }, { "name": "Test 2 - Check exact version", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209998#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515070#step:8:1" }, { "name": "Test 3 - Check help output", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209998#step:9:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515070#step:9:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209998#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515070#step:10:1" }, { "name": "Test 5 - Functional validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209998#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515070#step:11:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209998#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515070#step:12:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.434434+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.642949+00:00", "publish_state": "published" } } diff --git a/data/test-results/snapcraft.json b/data/test-results/snapcraft.json index 937df0bf0f..d193e85837 100644 --- a/data/test-results/snapcraft.json +++ b/data/test-results/snapcraft.json @@ -5,10 +5,10 @@ "version": "8.14.5" }, "run": { - "id": "25877371674", + "id": "26658681575", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031823", - "timestamp": "2026-05-14T18:17:59Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357972", + "timestamp": "2026-05-29T19:48:08Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Binary Exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031823#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357972#step:6:1" }, { "name": "Test 2 - Check Version", "status": "passed", "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031823#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357972#step:7:1" }, { "name": "Test 3 - Check Binary Help", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031823#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357972#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031823#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357972#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031823#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357972#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031823#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357972#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.434612+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.643120+00:00", "publish_state": "published" } } diff --git a/data/test-results/snappy-java.json b/data/test-results/snappy-java.json index 41917503b2..c279103332 100644 --- a/data/test-results/snappy-java.json +++ b/data/test-results/snappy-java.json @@ -5,10 +5,10 @@ "version": "1.1.10.7" }, "run": { - "id": "25877423406", + "id": "26658727918", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209999", - "timestamp": "2026-05-14T18:19:07Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515846", + "timestamp": "2026-05-29T19:49:05Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209999#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515846#step:7:1" }, { "name": "Test 2 - Version Check", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209999#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515846#step:8:1" }, { "name": "Test 3 - Help Output or Configuration", "status": "passed", "duration_seconds": 3, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209999#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515846#step:9:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209999#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515846#step:10:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 7, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209999#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515846#step:11:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209999#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515846#step:12:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.434841+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.643303+00:00", "publish_state": "published" } } diff --git a/data/test-results/snappy.json b/data/test-results/snappy.json index 48de6cabe0..8a2963e7c0 100644 --- a/data/test-results/snappy.json +++ b/data/test-results/snappy.json @@ -5,10 +5,10 @@ "version": "1.2.1" }, "run": { - "id": "25877395502", + "id": "26658703674", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109595", - "timestamp": "2026-05-14T18:18:26Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432290", + "timestamp": "2026-05-29T19:48:34Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 3, + "duration_seconds": 4, "details": [ { "name": "Test 1 - Check headers and library artifacts exist", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109595#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432290#step:6:1" }, { "name": "Test 2 - Check version output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109595#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432290#step:7:1" }, { "name": "Test 3 - Check API surface", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109595#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432290#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109595#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432290#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109595#step:10:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432290#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 3, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109595#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432290#step:11:1", "current_version": "1.2.1", "latest_version": "1.2.2", "next_installed_version": "1.2.2", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.435043+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.643475+00:00", "publish_state": "published" } } diff --git a/data/test-results/snort.json b/data/test-results/snort.json index f58298721e..f02c453aff 100644 --- a/data/test-results/snort.json +++ b/data/test-results/snort.json @@ -5,10 +5,10 @@ "version": "2.9.20" }, "run": { - "id": "25877379982", + "id": "26658688675", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057360", - "timestamp": "2026-05-14T18:18:09Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380461", + "timestamp": "2026-05-29T19:48:14Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check snort binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057360#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380461#step:6:1" }, { "name": "Test 2 - Check snort version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057360#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380461#step:7:1" }, { "name": "Test 3 - Check snort help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057360#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380461#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057360#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380461#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057360#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380461#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057360#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380461#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.435250+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.643649+00:00", "publish_state": "published" } } diff --git a/data/test-results/solr.json b/data/test-results/solr.json index 251233fe28..8640138b12 100644 --- a/data/test-results/solr.json +++ b/data/test-results/solr.json @@ -5,10 +5,10 @@ "version": "9.10.1" }, "run": { - "id": "25877367704", + "id": "26658677990", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026926", - "timestamp": "2026-05-14T18:17:54Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347242", + "timestamp": "2026-05-29T19:48:04Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 28, + "duration_seconds": 38, "details": [ { "name": "Test 1 - Check solr binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026926#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347242#step:6:1" }, { "name": "Test 2 - Check version command", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026926#step:7:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347242#step:7:1" }, { "name": "Test 3 - Check start help output", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026926#step:8:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347242#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026926#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347242#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 7, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026926#step:10:1" + "duration_seconds": 6, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347242#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 25, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026926#step:11:1", + "duration_seconds": 36, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347242#step:11:1", "current_version": "9.10.1", "latest_version": "10.0.0", "next_installed_version": "10.0.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.435446+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.643815+00:00", "publish_state": "published" } } diff --git a/data/test-results/sonarqube.json b/data/test-results/sonarqube.json index 7aa97f2247..62609cb3b7 100644 --- a/data/test-results/sonarqube.json +++ b/data/test-results/sonarqube.json @@ -5,10 +5,10 @@ "version": "9.9.0" }, "run": { - "id": "25877395502", + "id": "26658703674", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109512", - "timestamp": "2026-05-14T18:18:25Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432353", + "timestamp": "2026-05-29T19:48:33Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 29, + "duration_seconds": 33, "details": [ { "name": "Test 1 - Image Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109512#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432353#step:6:1" }, { "name": "Test 2 - Version Check", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109512#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432353#step:7:1" }, { "name": "Test 3 - Help Output or Configuration", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109512#step:8:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432353#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109512#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432353#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 9, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109512#step:10:1" + "duration_seconds": 12, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432353#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 21, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109512#step:11:1", + "duration_seconds": 23, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432353#step:11:1", "current_version": "9.9.0", "latest_version": "9.9.1", "next_installed_version": "9.9.1.69595", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.435648+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.643984+00:00", "publish_state": "published" } } diff --git a/data/test-results/sonic.json b/data/test-results/sonic.json index bd0b7368ba..c700b8d82a 100644 --- a/data/test-results/sonic.json +++ b/data/test-results/sonic.json @@ -5,10 +5,10 @@ "version": "..." }, "run": { - "id": "25877379982", + "id": "26658688675", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057186", - "timestamp": "2026-05-14T18:18:05Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380716", + "timestamp": "2026-05-29T19:48:14Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 1, + "duration_seconds": 0, "details": [ { "name": "Test 1 - Check sonic binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057186#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380716#step:6:1" }, { "name": "Test 2 - Check sonic version command", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057186#step:7:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380716#step:7:1" }, { "name": "Test 3 - Check sonic help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057186#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380716#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057186#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380716#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057186#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380716#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057186#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380716#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.435867+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.644152+00:00", "publish_state": "published" } } diff --git a/data/test-results/spack.json b/data/test-results/spack.json index 18cde50371..a5a4cf5fe7 100644 --- a/data/test-results/spack.json +++ b/data/test-results/spack.json @@ -5,10 +5,10 @@ "version": "0.23.0" }, "run": { - "id": "25877403044", + "id": "26658710721", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140009", - "timestamp": "2026-05-14T18:18:36Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455642", + "timestamp": "2026-05-29T19:48:42Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Spack binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140009#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455642#step:6:1" }, { "name": "Test 2 - Check version output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140009#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455642#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140009#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455642#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140009#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455642#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 91, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140009#step:10:1" + "duration_seconds": 58, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455642#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 54, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140009#step:11:1", + "duration_seconds": 49, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455642#step:11:1", "current_version": "0.23.0", "latest_version": "0.23.1", "next_installed_version": "0.23.1", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.436043+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.644339+00:00", "publish_state": "published" } } diff --git a/data/test-results/spacy.json b/data/test-results/spacy.json index 4581cf090e..76960c78e6 100644 --- a/data/test-results/spacy.json +++ b/data/test-results/spacy.json @@ -5,10 +5,10 @@ "version": "3.8.14" }, "run": { - "id": "25877395502", + "id": "26658703674", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110076", - "timestamp": "2026-05-14T18:18:26Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433193", + "timestamp": "2026-05-29T19:48:34Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check module import", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110076#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433193#step:6:1" }, { "name": "Test 2 - Check version output", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110076#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433193#step:7:1" }, { "name": "Test 3 - Check CLI help output", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110076#step:8:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433193#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110076#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433193#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110076#step:10:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433193#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110076#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433193#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.436257+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.644511+00:00", "publish_state": "published" } } diff --git a/data/test-results/spark-sql-kinesis.json b/data/test-results/spark-sql-kinesis.json index 62825086d2..ce22f82468 100644 --- a/data/test-results/spark-sql-kinesis.json +++ b/data/test-results/spark-sql-kinesis.json @@ -5,10 +5,10 @@ "version": "1.2.3_spark-3.2" }, "run": { - "id": "25877359516", + "id": "26658670904", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991255", - "timestamp": "2026-05-14T18:17:43Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321563", + "timestamp": "2026-05-29T19:47:52Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 5, "failed": 0, "skipped": 1, - "duration_seconds": 11, + "duration_seconds": 12, "details": [ { "name": "Test 1 - Verify Jar Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991255#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321563#step:7:1" }, { "name": "Test 2 - Analyze Dependencies", "status": "passed", "duration_seconds": 8, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991255#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321563#step:8:1" }, { "name": "Test 3 - Check for Kinesis classes", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991255#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321563#step:9:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991255#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321563#step:10:1" }, { "name": "Test 5 - Load Kinesis Provider on JVM", "status": "passed", - "duration_seconds": 3, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991255#step:11:1" + "duration_seconds": 4, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321563#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "skipped", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991255#step:12:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321563#step:12:1", "current_version": "1.2.3_spark-3.2", "latest_version": "1.2.3_spark-3.2", "next_installed_version": "1.2.3_spark-3.2", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "skipped", "regression_decision": "no_newer_stable_available", - "production_refreshed_at": "2026-05-14T19:37:17.436452+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.644695+00:00", "publish_state": "published" } } diff --git a/data/test-results/spark.json b/data/test-results/spark.json index 5aa030cd3b..d860bb25c9 100644 --- a/data/test-results/spark.json +++ b/data/test-results/spark.json @@ -5,10 +5,10 @@ "version": "3.5.3" }, "run": { - "id": "25877355625", + "id": "26658667828", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976532", - "timestamp": "2026-05-14T18:17:39Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308769", + "timestamp": "2026-05-29T19:47:52Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 886, + "duration_seconds": 599, "details": [ { "name": "Test 1 - Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976532#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308769#step:11:1" }, { "name": "Test 2 - Version Check", "status": "passed", "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976532#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308769#step:12:1" }, { "name": "Test 3 - Help Or Configuration Validation", "status": "passed", "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976532#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308769#step:13:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976532#step:14:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308769#step:14:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 10, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976532#step:15:1" + "duration_seconds": 15, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308769#step:15:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 873, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877355625/job/76047976532#step:16:1", + "duration_seconds": 580, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658667828/job/78575308769#step:16:1", "current_version": "3.5.3", "latest_version": "3.5.4", "next_installed_version": "3.5.4", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.436664+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.644872+00:00", "publish_state": "published" } } diff --git a/data/test-results/sparks-rapids.json b/data/test-results/sparks-rapids.json index 42eac4b154..d3316fecba 100644 --- a/data/test-results/sparks-rapids.json +++ b/data/test-results/sparks-rapids.json @@ -5,10 +5,10 @@ "version": "24.02.0" }, "run": { - "id": "25877435852", + "id": "26658737633", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251141", - "timestamp": "2026-05-14T18:19:15Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549318", + "timestamp": "2026-05-29T19:49:20Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check package-specific baseline markers", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251141#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549318#step:8:1" }, { "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251141#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549318#step:9:1" }, { "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251141#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549318#step:10:1" }, { "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251141#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549318#step:11:1" }, { "name": "Test 5 - Run scoped Arm preflight proof", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251141#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549318#step:12:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251141#step:13:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549318#step:13:1", "current_version": "24.02.0", "latest_version": "26.02.2", "next_installed_version": "26.02.2", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.436899+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.645050+00:00", "publish_state": "published" } } diff --git a/data/test-results/spdk.json b/data/test-results/spdk.json index 5f1212c61c..b2b2c07be9 100644 --- a/data/test-results/spdk.json +++ b/data/test-results/spdk.json @@ -5,10 +5,10 @@ "version": "v22.09" }, "run": { - "id": "25877392111", + "id": "26658699892", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096349", - "timestamp": "2026-05-14T18:18:23Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420690", + "timestamp": "2026-05-29T19:48:30Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 121, + "duration_seconds": 116, "details": [ { "name": "Test 1 - Check SPDK binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096349#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420690#step:7:1" }, { "name": "Test 2 - Check source tag version", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096349#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420690#step:8:1" }, { "name": "Test 3 - Check SPDK help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096349#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420690#step:9:1" }, { "name": "Test 4 - Architecture verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096349#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420690#step:10:1" }, { "name": "Test 5 - Functional validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096349#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420690#step:12:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 120, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096349#step:13:1", + "duration_seconds": 115, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420690#step:13:1", "current_version": "v22.09", "latest_version": "v23.01", "next_installed_version": "v23.01", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.437106+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.645225+00:00", "publish_state": "published" } } diff --git a/data/test-results/spdlog.json b/data/test-results/spdlog.json index 9589faa41b..36da9dc7c3 100644 --- a/data/test-results/spdlog.json +++ b/data/test-results/spdlog.json @@ -5,10 +5,10 @@ "version": "1.12.0" }, "run": { - "id": "25877427741", + "id": "26658731236", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217752", - "timestamp": "2026-05-14T18:19:13Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575528435", + "timestamp": "2026-05-29T19:49:10Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 11, + "duration_seconds": 6, "details": [ { "name": "Test 1 - Check header files exist", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217752#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575528435#step:6:1" }, { "name": "Test 2 - Compile C++ example", "status": "passed", - "duration_seconds": 11, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217752#step:7:1" + "duration_seconds": 6, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575528435#step:7:1" }, { "name": "Test 3 - Run compiled example", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217752#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575528435#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217752#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575528435#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217752#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575528435#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217752#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575528435#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.437313+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.645425+00:00", "publish_state": "published" } } diff --git a/data/test-results/sphinx.json b/data/test-results/sphinx.json index 4b9f6e6183..e47eee2f49 100644 --- a/data/test-results/sphinx.json +++ b/data/test-results/sphinx.json @@ -5,10 +5,10 @@ "version": "8.2.3" }, "run": { - "id": "25877383844", + "id": "26658692522", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071786", - "timestamp": "2026-05-14T18:18:12Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394550", + "timestamp": "2026-05-29T19:48:19Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071786#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394550#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071786#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394550#step:7:1" }, { "name": "Test 3 - Check Help Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071786#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394550#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071786#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394550#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071786#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394550#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071786#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394550#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.437513+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.645608+00:00", "publish_state": "published" } } diff --git a/data/test-results/spice-opus.json b/data/test-results/spice-opus.json index 321715c6ec..138effd7bc 100644 --- a/data/test-results/spice-opus.json +++ b/data/test-results/spice-opus.json @@ -5,10 +5,10 @@ "version": "v3.0 r397" }, "run": { - "id": "25877435852", + "id": "26658737633", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251184", - "timestamp": "2026-05-14T18:19:17Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549415", + "timestamp": "2026-05-29T19:49:21Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 2, + "duration_seconds": 1, "details": [ { "name": "Test 1 - Check package-specific baseline markers", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251184#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549415#step:8:1" }, { "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251184#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549415#step:9:1" }, { "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251184#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549415#step:10:1" }, { "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251184#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549415#step:11:1" }, { "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251184#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549415#step:12:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251184#step:13:1", + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549415#step:13:1", "current_version": "v3.0 r397", "latest_version": "3.0.407", "next_installed_version": "3.0.407", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "validated_next_release", - "production_refreshed_at": "2026-05-14T19:37:17.437816+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.645879+00:00", "publish_state": "published" } } diff --git a/data/test-results/spicedb.json b/data/test-results/spicedb.json index 672fe6235a..ff5f776cbc 100644 --- a/data/test-results/spicedb.json +++ b/data/test-results/spicedb.json @@ -5,10 +5,10 @@ "version": "1.49.2" }, "run": { - "id": "25877403044", + "id": "26658710721", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048141138", - "timestamp": "2026-05-14T18:18:38Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456441", + "timestamp": "2026-05-29T19:48:43Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check spicedb binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048141138#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456441#step:6:1" }, { "name": "Test 2 - Check version output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048141138#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456441#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048141138#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456441#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048141138#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456441#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048141138#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456441#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048141138#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456441#step:11:1", "current_version": "1.49.2", "latest_version": "1.50.0", "next_installed_version": "1.50.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.438030+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.646060+00:00", "publish_state": "published" } } diff --git a/data/test-results/spinnaker.json b/data/test-results/spinnaker.json index a5c01754cd..29466861e3 100644 --- a/data/test-results/spinnaker.json +++ b/data/test-results/spinnaker.json @@ -5,10 +5,10 @@ "version": "1.30.0" }, "run": { - "id": "25877423406", + "id": "26658727918", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209511", - "timestamp": "2026-05-14T18:19:09Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515994", + "timestamp": "2026-05-29T19:49:06Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check spin binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209511#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515994#step:6:1" }, { "name": "Test 2 - Check version output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209511#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515994#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209511#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515994#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209511#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515994#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209511#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515994#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209511#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515994#step:11:1", "current_version": "1.30.0", "latest_version": "2026.1.0", "next_installed_version": "2026.1.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "validated_next_release", - "production_refreshed_at": "2026-05-14T19:37:17.438241+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.646235+00:00", "publish_state": "published" } } diff --git a/data/test-results/spire.json b/data/test-results/spire.json index 0f1fc2f36a..8bf8824ae2 100644 --- a/data/test-results/spire.json +++ b/data/test-results/spire.json @@ -5,10 +5,10 @@ "version": "1.13.2" }, "run": { - "id": "25877367704", + "id": "26658677990", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026074", - "timestamp": "2026-05-14T18:17:54Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575345935", + "timestamp": "2026-05-29T19:48:02Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 17, + "duration_seconds": 16, "details": [ { "name": "Test 1 - Artifact Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026074#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575345935#step:6:1" }, { "name": "Test 2 - Version Check", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026074#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575345935#step:7:1" }, { "name": "Test 3 - Configuration Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026074#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575345935#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026074#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575345935#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 15, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026074#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575345935#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026074#step:11:1", + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575345935#step:11:1", "current_version": "1.13.2", "latest_version": "1.13.3", "next_installed_version": "1.13.3", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.438444+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.646440+00:00", "publish_state": "published" } } diff --git a/data/test-results/split-evaluator.json b/data/test-results/split-evaluator.json index dba8684a09..779d3728fe 100644 --- a/data/test-results/split-evaluator.json +++ b/data/test-results/split-evaluator.json @@ -5,10 +5,10 @@ "version": "2.8.0" }, "run": { - "id": "25877371674", + "id": "26658681575", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031016", - "timestamp": "2026-05-14T18:17:58Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357338", + "timestamp": "2026-05-29T19:48:06Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 37, + "duration_seconds": 35, "details": [ { "name": "Test 1 - Artifact Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031016#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357338#step:6:1" }, { "name": "Test 2 - Version Check", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031016#step:7:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357338#step:7:1" }, { "name": "Test 3 - Configuration Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031016#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357338#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031016#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357338#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 16, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031016#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357338#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 20, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031016#step:11:1", + "duration_seconds": 19, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357338#step:11:1", "current_version": "2.8.0", "latest_version": "2.8.1", "next_installed_version": "2.8.1", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.438655+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.646617+00:00", "publish_state": "published" } } diff --git a/data/test-results/spring-cloud-function.json b/data/test-results/spring-cloud-function.json index 80aa5f8ab6..8844f21925 100644 --- a/data/test-results/spring-cloud-function.json +++ b/data/test-results/spring-cloud-function.json @@ -5,10 +5,10 @@ "version": "4.1.1" }, "run": { - "id": "25877399008", + "id": "26658707245", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125850", - "timestamp": "2026-05-14T18:18:32Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445848", + "timestamp": "2026-05-29T19:48:39Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 47, + "duration_seconds": 39, "details": [ { "name": "Test 1 - Check Smoke Project Files", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125850#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445848#step:6:1" }, { "name": "Test 2 - Check Dependency Version", "status": "passed", - "duration_seconds": 37, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125850#step:7:1" + "duration_seconds": 29, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445848#step:7:1" }, { "name": "Test 3 - Check Build Configuration", "status": "passed", - "duration_seconds": 4, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125850#step:8:1" + "duration_seconds": 3, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445848#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125850#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445848#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 6, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125850#step:10:1" + "duration_seconds": 7, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445848#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125850#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445848#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.438878+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.646792+00:00", "publish_state": "published" } } diff --git a/data/test-results/spring-cloud-gateway.json b/data/test-results/spring-cloud-gateway.json index 41ff3fc909..e296b7445d 100644 --- a/data/test-results/spring-cloud-gateway.json +++ b/data/test-results/spring-cloud-gateway.json @@ -5,10 +5,10 @@ "version": "4.3.3" }, "run": { - "id": "25877375677", + "id": "26658685142", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044929", - "timestamp": "2026-05-14T18:18:08Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370514", + "timestamp": "2026-05-29T19:48:17Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 26, + "duration_seconds": 27, "details": [ { "name": "Test 1 - Artifact Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044929#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370514#step:7:1" }, { "name": "Test 2 - Version Check", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044929#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370514#step:8:1" }, { "name": "Test 3 - Configuration Validation", "status": "passed", - "duration_seconds": 18, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044929#step:9:1" + "duration_seconds": 19, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370514#step:9:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044929#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370514#step:10:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 8, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044929#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370514#step:11:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044929#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370514#step:12:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.439082+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.646963+00:00", "publish_state": "published" } } diff --git a/data/test-results/spring-cloud-openfeign.json b/data/test-results/spring-cloud-openfeign.json index 683d440203..7c0c38fb45 100644 --- a/data/test-results/spring-cloud-openfeign.json +++ b/data/test-results/spring-cloud-openfeign.json @@ -5,10 +5,10 @@ "version": "4.1.1" }, "run": { - "id": "25877419588", + "id": "26658724696", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192257", - "timestamp": "2026-05-14T18:18:59Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503985", + "timestamp": "2026-05-29T19:49:05Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 10, + "duration_seconds": 11, "details": [ { "name": "Test 1 - Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192257#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503985#step:7:1" }, { "name": "Test 2 - Version Check", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192257#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503985#step:8:1" }, { "name": "Test 3 - Help Output or Configuration", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192257#step:9:1" + "duration_seconds": 3, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503985#step:9:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192257#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503985#step:10:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 8, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192257#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503985#step:11:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192257#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503985#step:12:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.439274+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.647129+00:00", "publish_state": "published" } } diff --git a/data/test-results/spring-cloud-sleuth.json b/data/test-results/spring-cloud-sleuth.json index 57b72ed7f6..4ebae9ca6c 100644 --- a/data/test-results/spring-cloud-sleuth.json +++ b/data/test-results/spring-cloud-sleuth.json @@ -5,10 +5,10 @@ "version": "3.1.5" }, "run": { - "id": "25877359516", + "id": "26658670904", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990956", - "timestamp": "2026-05-14T18:17:45Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321492", + "timestamp": "2026-05-29T19:47:53Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 57, + "duration_seconds": 45, "details": [ { "name": "Test 1 - Create Maven Project", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990956#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321492#step:6:1" }, { "name": "Test 2 - Resolve Dependencies", "status": "passed", - "duration_seconds": 46, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990956#step:7:1" + "duration_seconds": 36, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321492#step:7:1" }, { "name": "Test 3 - Compile Spring tiny app and unit test", "status": "passed", - "duration_seconds": 7, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990956#step:8:1" + "duration_seconds": 6, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321492#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990956#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321492#step:9:1" }, { "name": "Test 5 - Functional Validation - Spring app unit test", "status": "passed", - "duration_seconds": 4, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990956#step:10:1" + "duration_seconds": 3, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321492#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 12, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047990956#step:11:1", + "duration_seconds": 9, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321492#step:11:1", "current_version": "3.1.5", "latest_version": "3.1.11", "next_installed_version": "3.1.11", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.439473+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.647308+00:00", "publish_state": "published" } } diff --git a/data/test-results/spring-cloud-stream.json b/data/test-results/spring-cloud-stream.json index 3b98ed380d..903287b003 100644 --- a/data/test-results/spring-cloud-stream.json +++ b/data/test-results/spring-cloud-stream.json @@ -5,10 +5,10 @@ "version": "4.1.1" }, "run": { - "id": "25877411197", + "id": "26658717942", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175363", - "timestamp": "2026-05-14T18:18:50Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479469", + "timestamp": "2026-05-29T19:48:51Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175363#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479469#step:7:1" }, { "name": "Test 2 - Version Check", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175363#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479469#step:8:1" }, { "name": "Test 3 - Help Output or Configuration", "status": "passed", "duration_seconds": 3, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175363#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479469#step:9:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175363#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479469#step:10:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 8, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175363#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479469#step:11:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175363#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479469#step:12:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.439660+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.647486+00:00", "publish_state": "published" } } diff --git a/data/test-results/spring_boot.json b/data/test-results/spring_boot.json index bdab571a93..637802890a 100644 --- a/data/test-results/spring_boot.json +++ b/data/test-results/spring_boot.json @@ -5,10 +5,10 @@ "version": "3.4.0" }, "run": { - "id": "25877399008", + "id": "26658707245", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125573", - "timestamp": "2026-05-14T18:18:30Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445920", + "timestamp": "2026-05-29T19:48:39Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 36, + "duration_seconds": 31, "details": [ { "name": "Test 1 - Check Smoke Project Files", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125573#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445920#step:6:1" }, { "name": "Test 2 - Check Dependency Version", "status": "passed", - "duration_seconds": 17, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125573#step:7:1" + "duration_seconds": 13, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445920#step:7:1" }, { "name": "Test 3 - Check Build Configuration", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125573#step:8:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445920#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125573#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445920#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 18, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125573#step:10:1" + "duration_seconds": 17, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445920#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125573#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445920#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.439878+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.647651+00:00", "publish_state": "published" } } diff --git a/data/test-results/spring_cloud_config.json b/data/test-results/spring_cloud_config.json index 648185e2a2..f00e1011a3 100644 --- a/data/test-results/spring_cloud_config.json +++ b/data/test-results/spring_cloud_config.json @@ -5,10 +5,10 @@ "version": "4.0.0" }, "run": { - "id": "25877392111", + "id": "26658699892", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096463", - "timestamp": "2026-05-14T18:18:21Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420544", + "timestamp": "2026-05-29T19:48:30Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 49, + "duration_seconds": 53, "details": [ { "name": "Test 1 - Check Smoke Project Files", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096463#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420544#step:6:1" }, { "name": "Test 2 - Check Dependency Version", "status": "passed", - "duration_seconds": 30, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096463#step:7:1" + "duration_seconds": 31, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420544#step:7:1" }, { "name": "Test 3 - Check Build Configuration", "status": "passed", - "duration_seconds": 6, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096463#step:8:1" + "duration_seconds": 7, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420544#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096463#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420544#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 13, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096463#step:10:1" + "duration_seconds": 15, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420544#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096463#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420544#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.440092+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.647815+00:00", "publish_state": "published" } } diff --git a/data/test-results/spring_cloud_netflix.json b/data/test-results/spring_cloud_netflix.json index 9918c57780..3ea561e424 100644 --- a/data/test-results/spring_cloud_netflix.json +++ b/data/test-results/spring_cloud_netflix.json @@ -5,10 +5,10 @@ "version": "4.1.2" }, "run": { - "id": "25877363365", + "id": "26658674448", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000975", - "timestamp": "2026-05-14T18:17:48Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334560", + "timestamp": "2026-05-29T19:47:58Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 0, + "duration_seconds": 1, "details": [ { "name": "Test 1 - Check Resolved Artifact", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000975#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334560#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000975#step:7:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334560#step:7:1" }, { "name": "Test 3 - Check Help Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000975#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334560#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000975#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334560#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 6, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000975#step:10:1" + "duration_seconds": 5, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334560#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000975#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334560#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.440276+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.647996+00:00", "publish_state": "published" } } diff --git a/data/test-results/spring_cloud_task.json b/data/test-results/spring_cloud_task.json index 82aa3d867a..569fc21544 100644 --- a/data/test-results/spring_cloud_task.json +++ b/data/test-results/spring_cloud_task.json @@ -5,10 +5,10 @@ "version": "3.0.0" }, "run": { - "id": "25877363365", + "id": "26658674448", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000252", - "timestamp": "2026-05-14T18:17:48Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333723", + "timestamp": "2026-05-29T19:47:56Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 13, + "duration_seconds": 11, "details": [ { "name": "Test 1 - Check jar files exist in local repo", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000252#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333723#step:6:1" }, { "name": "Test 2 - Check dependency tree", "status": "passed", "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000252#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333723#step:7:1" }, { "name": "Test 3 - Compile Spring Cloud Task app", "status": "passed", - "duration_seconds": 8, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000252#step:8:1" + "duration_seconds": 6, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333723#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000252#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333723#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 3, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000252#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333723#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 7, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000252#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333723#step:11:1" } ] }, @@ -72,7 +72,7 @@ "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", "regression_status": "passed", - "production_refreshed_at": "2026-05-14T19:37:17.440477+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.648166+00:00", "publish_state": "published" } } diff --git a/data/test-results/sqlite.json b/data/test-results/sqlite.json index 5f20a2b40b..f080297319 100644 --- a/data/test-results/sqlite.json +++ b/data/test-results/sqlite.json @@ -5,10 +5,10 @@ "version": "3.45.1" }, "run": { - "id": "25877359516", + "id": "26658670904", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991212", - "timestamp": "2026-05-14T18:17:45Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321666", + "timestamp": "2026-05-29T19:47:52Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check sqlite3 binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991212#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321666#step:6:1" }, { "name": "Test 2 - Check sqlite3 version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991212#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321666#step:7:1" }, { "name": "Test 3 - Check sqlite3 help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991212#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321666#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991212#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321666#step:9:1" }, { "name": "Test 5 - Functional Validation (Create DB)", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991212#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321666#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991212#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321666#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.440655+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.648352+00:00", "publish_state": "published" } } diff --git a/data/test-results/sqoop.json b/data/test-results/sqoop.json index aaae0741d3..a9624782ad 100644 --- a/data/test-results/sqoop.json +++ b/data/test-results/sqoop.json @@ -5,10 +5,10 @@ "version": "1.99.4" }, "run": { - "id": "25877375677", + "id": "26658685142", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044536", - "timestamp": "2026-05-14T18:18:07Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370355", + "timestamp": "2026-05-29T19:48:15Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 814, + "duration_seconds": 203, "details": [ { "name": "Test 1 - Check Sqoop launchers exist", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044536#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370355#step:8:1" }, { "name": "Test 2 - Check exact version output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044536#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370355#step:9:1" }, { "name": "Test 3 - Check shell help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044536#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370355#step:10:1" }, { "name": "Test 4 - Architecture verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044536#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370355#step:11:1" }, { "name": "Test 5 - Check show version shell command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044536#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370355#step:12:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 814, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044536#step:13:1", + "duration_seconds": 203, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370355#step:13:1", "current_version": "1.99.4", "latest_version": "1.99.7", "next_installed_version": "1.99.7", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.440848+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.648527+00:00", "publish_state": "published" } } diff --git a/data/test-results/squid.json b/data/test-results/squid.json index 3907cd1ec6..f7ba4d2400 100644 --- a/data/test-results/squid.json +++ b/data/test-results/squid.json @@ -5,10 +5,10 @@ "version": "6.14" }, "run": { - "id": "25877371674", + "id": "26658681575", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031932", - "timestamp": "2026-05-14T18:17:58Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358609", + "timestamp": "2026-05-29T19:48:07Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check squid binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031932#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358609#step:6:1" }, { "name": "Test 2 - Check exact version output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031932#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358609#step:7:1" }, { "name": "Test 3 - Check system configuration parse", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031932#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358609#step:8:1" }, { "name": "Test 4 - Architecture verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031932#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358609#step:9:1" }, { "name": "Test 5 - Check custom configuration parse", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031932#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358609#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031932#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358609#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.441076+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.648706+00:00", "publish_state": "published" } } diff --git a/data/test-results/srs.json b/data/test-results/srs.json index f3d6241586..b37b37015f 100644 --- a/data/test-results/srs.json +++ b/data/test-results/srs.json @@ -5,10 +5,10 @@ "version": "v5.0-r2" }, "run": { - "id": "25877427741", + "id": "26658731236", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217559", - "timestamp": "2026-05-14T18:19:09Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575528420", + "timestamp": "2026-05-29T19:49:11Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 85, + "duration_seconds": 86, "details": [ { "name": "Test 1 - Check srs binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217559#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575528420#step:6:1" }, { "name": "Test 2 - Check version output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217559#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575528420#step:7:1" }, { "name": "Test 3 - Check configuration file exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217559#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575528420#step:8:1" }, { "name": "Test 4 - Architecture verification", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217559#step:9:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575528420#step:9:1" }, { "name": "Test 5 - Functional validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217559#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575528420#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 85, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217559#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575528420#step:11:1", "current_version": "v5.0-r2", "latest_version": "v5.0-r3", "next_installed_version": "v5.0-r3", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.441264+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.648873+00:00", "publish_state": "published" } } diff --git a/data/test-results/ssdb.json b/data/test-results/ssdb.json index 1586f449b1..ea8aceb332 100644 --- a/data/test-results/ssdb.json +++ b/data/test-results/ssdb.json @@ -5,10 +5,10 @@ "version": "1.9.8" }, "run": { - "id": "25877423406", + "id": "26658727918", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210251", - "timestamp": "2026-05-14T18:19:08Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516028", + "timestamp": "2026-05-29T19:49:05Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210251#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516028#step:6:1" }, { "name": "Test 2 - Version Check", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210251#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516028#step:7:1" }, { "name": "Test 3 - Help Output Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210251#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516028#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210251#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516028#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210251#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516028#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 49, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210251#step:11:1", + "duration_seconds": 50, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516028#step:11:1", "current_version": "1.9.8", "latest_version": "1.9.9", "next_installed_version": "1.9.8", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.441469+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.649045+00:00", "publish_state": "published" } } diff --git a/data/test-results/stable-baseline3.json b/data/test-results/stable-baseline3.json index 039460b443..6ad42abda5 100644 --- a/data/test-results/stable-baseline3.json +++ b/data/test-results/stable-baseline3.json @@ -5,10 +5,10 @@ "version": "0.6.0" }, "run": { - "id": "25877435852", + "id": "26658737633", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251113", - "timestamp": "2026-05-14T18:19:15Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549381", + "timestamp": "2026-05-29T19:49:23Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 75, + "duration_seconds": 77, "details": [ { "name": "Test 1 - Package installed", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251113#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549381#step:7:1" }, { "name": "Test 2 - Version metadata matches baseline", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251113#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549381#step:8:1" }, { "name": "Test 3 - Installed files metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251113#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549381#step:9:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251113#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549381#step:10:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251113#step:11:1" + "duration_seconds": 3, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549381#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 74, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251113#step:12:1", + "duration_seconds": 73, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549381#step:12:1", "current_version": "0.6.0", "latest_version": "0.7.0", "next_installed_version": "0.7.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.441656+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.649215+00:00", "publish_state": "published" } } diff --git a/data/test-results/statsforecast.json b/data/test-results/statsforecast.json index 217e4be405..3f69a32790 100644 --- a/data/test-results/statsforecast.json +++ b/data/test-results/statsforecast.json @@ -5,10 +5,10 @@ "version": "0.1.0" }, "run": { - "id": "25877435852", + "id": "26658737633", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251161", - "timestamp": "2026-05-14T18:19:15Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549359", + "timestamp": "2026-05-29T19:49:24Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 8, + "duration_seconds": 5, "details": [ { "name": "Test 1 - Package installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251161#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549359#step:7:1" }, { "name": "Test 2 - Version metadata matches baseline", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251161#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549359#step:8:1" }, { "name": "Test 3 - Installed files metadata", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251161#step:9:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549359#step:9:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251161#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549359#step:10:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251161#step:11:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549359#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 7, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251161#step:12:1", + "duration_seconds": 4, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549359#step:12:1", "current_version": "0.1.0", "latest_version": "0.2.0", "next_installed_version": "0.2.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.441889+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.649430+00:00", "publish_state": "published" } } diff --git a/data/test-results/statsmodels.json b/data/test-results/statsmodels.json index bcc9c3e368..8f3a263c27 100644 --- a/data/test-results/statsmodels.json +++ b/data/test-results/statsmodels.json @@ -5,10 +5,10 @@ "version": "0.13.1" }, "run": { - "id": "25877435852", + "id": "26658737633", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251139", - "timestamp": "2026-05-14T18:19:15Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549308", + "timestamp": "2026-05-29T19:49:20Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 19, + "duration_seconds": 18, "details": [ { "name": "Test 1 - Package installed", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251139#step:7:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549308#step:7:1" }, { "name": "Test 2 - Version metadata matches baseline", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251139#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549308#step:8:1" }, { "name": "Test 3 - Installed files metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251139#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549308#step:9:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251139#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549308#step:10:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251139#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549308#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 18, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251139#step:12:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549308#step:12:1", "current_version": "0.13.1", "latest_version": "0.13.2", "next_installed_version": "0.13.2", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.442097+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.649610+00:00", "publish_state": "published" } } diff --git a/data/test-results/storm.json b/data/test-results/storm.json index c43bd61aea..05020331db 100644 --- a/data/test-results/storm.json +++ b/data/test-results/storm.json @@ -5,10 +5,10 @@ "version": "2.8.7" }, "run": { - "id": "25877403044", + "id": "26658710721", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048139976", - "timestamp": "2026-05-14T18:18:42Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455415", + "timestamp": "2026-05-29T19:48:48Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 5, "failed": 0, "skipped": 1, - "duration_seconds": 2, + "duration_seconds": 4, "details": [ { "name": "Test 1 - Check Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048139976#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455415#step:11:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048139976#step:12:1" + "duration_seconds": 3, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455415#step:12:1" }, { "name": "Test 3 - Check Help Output or Configuration", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048139976#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455415#step:13:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048139976#step:14:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455415#step:14:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048139976#step:15:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455415#step:15:1" }, { "name": "Test 6 - Regression Validation", "status": "skipped", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048139976#step:16:1", + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575455415#step:16:1", "current_version": "2.8.7", "latest_version": "2.8.7", "next_installed_version": "2.8.7", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "skipped", "regression_decision": "no_newer_stable_available", - "production_refreshed_at": "2026-05-14T19:37:17.442298+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.649790+00:00", "publish_state": "published" } } diff --git a/data/test-results/stream.json b/data/test-results/stream.json index 2757d19e29..a456406337 100644 --- a/data/test-results/stream.json +++ b/data/test-results/stream.json @@ -5,10 +5,10 @@ "version": "e1a039c" }, "run": { - "id": "25877395502", + "id": "26658703674", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109955", - "timestamp": "2026-05-14T18:18:28Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433110", + "timestamp": "2026-05-29T19:48:33Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 3, + "duration_seconds": 2, "details": [ { "name": "Test 1 - Check source tree exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109955#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433110#step:6:1" }, { "name": "Test 2 - Check version provenance", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109955#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433110#step:7:1" }, { "name": "Test 3 - Check build plan output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109955#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433110#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109955#step:9:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433110#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109955#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433110#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109955#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433110#step:11:1", "current_version": "e1a039c", "latest_version": "6703f75", "next_installed_version": "6703f75", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.442588+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.650055+00:00", "publish_state": "published" } } diff --git a/data/test-results/streamlit.json b/data/test-results/streamlit.json index a1baab316a..3c9249f9db 100644 --- a/data/test-results/streamlit.json +++ b/data/test-results/streamlit.json @@ -2,13 +2,13 @@ "schema_version": "2.0", "package": { "name": "Streamlit", - "version": "1.57.0" + "version": "1.58.0" }, "run": { - "id": "25877383844", + "id": "26658692522", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071409", - "timestamp": "2026-05-14T18:18:12Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394396", + "timestamp": "2026-05-29T19:48:20Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071409#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394396#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071409#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394396#step:7:1" }, { "name": "Test 3 - Check Help Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071409#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394396#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071409#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394396#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071409#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394396#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071409#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394396#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.442813+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.650234+00:00", "publish_state": "published" } } diff --git a/data/test-results/strongswan.json b/data/test-results/strongswan.json index 8127812956..5c6414dd7c 100644 --- a/data/test-results/strongswan.json +++ b/data/test-results/strongswan.json @@ -5,10 +5,10 @@ "version": "5.9.13/K6.14.0-1017-azure" }, "run": { - "id": "25877411197", + "id": "26658717942", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174436", - "timestamp": "2026-05-14T18:18:50Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478707", + "timestamp": "2026-05-29T19:48:51Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174436#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478707#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174436#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478707#step:7:1" }, { "name": "Test 3 - Check Help Output or Configuration", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174436#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478707#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174436#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478707#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174436#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478707#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048174436#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575478707#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.443038+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.650450+00:00", "publish_state": "published" } } diff --git a/data/test-results/submarine.json b/data/test-results/submarine.json index 8bdfd54f98..f71613569c 100644 --- a/data/test-results/submarine.json +++ b/data/test-results/submarine.json @@ -5,10 +5,10 @@ "version": "0.4.0" }, "run": { - "id": "25877383844", + "id": "26658692522", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071425", - "timestamp": "2026-05-14T18:19:14Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394914", + "timestamp": "2026-05-29T19:48:38Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 809, + "duration_seconds": 811, "details": [ { "name": "Test 1 - Check build artifacts exist", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071425#step:8:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394914#step:8:1" }, { "name": "Test 2 - Check version provenance", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071425#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394914#step:9:1" }, { "name": "Test 3 - Check build usage output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071425#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394914#step:10:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071425#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394914#step:11:1" }, { "name": "Test 5 - Functional image validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071425#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394914#step:12:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 809, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071425#step:13:1", + "duration_seconds": 811, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394914#step:13:1", "current_version": "0.4.0", "latest_version": "0.4.1", "next_installed_version": "0.4.1", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.443266+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.650629+00:00", "publish_state": "published" } } diff --git a/data/test-results/sunshine.json b/data/test-results/sunshine.json index fd7d1355a4..c208d77eae 100644 --- a/data/test-results/sunshine.json +++ b/data/test-results/sunshine.json @@ -5,10 +5,10 @@ "version": "0.15.0" }, "run": { - "id": "25877435852", + "id": "26658737633", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251912", - "timestamp": "2026-05-14T18:19:19Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549337", + "timestamp": "2026-05-29T19:49:21Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,46 +20,46 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 17, + "duration_seconds": 4, "details": [ { "name": "Test 1 - Check package-specific baseline markers", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251912#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549337#step:8:1" }, { "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251912#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549337#step:9:1" }, { "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251912#step:10:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549337#step:10:1" }, { "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251912#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549337#step:11:1" }, { "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "duration_seconds": 7, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251912#step:12:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549337#step:12:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 10, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251912#step:13:1", + "duration_seconds": 3, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549337#step:13:1", "current_version": "0.15.0", - "latest_version": "2026.513.230134", - "next_installed_version": "2026.513.230134", + "latest_version": "2026.528.35537", + "next_installed_version": "2026.528.35537", "decision": "limited_cpu_smoke_validated", "regression_result": "Arm preflight proof passed on Arm64", "comparison": "Test 6 repeated the Sunshine scoped Arm preflight against the next stable release candidate: AArch64 Flatpak artifact download/content proof plus Linux display/encoder source markers. This does not prove Moonlight pairing, GPU capture/encode, controller streaming, or real video streaming." @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.443484+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.650807+00:00", "publish_state": "published" } } diff --git a/data/test-results/supervisor.json b/data/test-results/supervisor.json index 03c36f6674..5432fcdb43 100644 --- a/data/test-results/supervisor.json +++ b/data/test-results/supervisor.json @@ -5,10 +5,10 @@ "version": "4.2.5" }, "run": { - "id": "25877392111", + "id": "26658699892", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096614", - "timestamp": "2026-05-14T18:18:23Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420747", + "timestamp": "2026-05-29T19:48:30Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096614#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420747#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096614#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420747#step:7:1" }, { "name": "Test 3 - Check Help Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096614#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420747#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096614#step:9:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420747#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096614#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420747#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096614#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420747#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.443688+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.650986+00:00", "publish_state": "published" } } diff --git a/data/test-results/suse.json b/data/test-results/suse.json index 355ffa3a65..b6236d8784 100644 --- a/data/test-results/suse.json +++ b/data/test-results/suse.json @@ -5,10 +5,10 @@ "version": "15.5" }, "run": { - "id": "25877375677", + "id": "26658685142", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043646", - "timestamp": "2026-05-14T18:18:03Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369858", + "timestamp": "2026-05-29T19:48:10Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 2, + "duration_seconds": 1, "details": [ { "name": "Test 1 - Artifact Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043646#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369858#step:6:1" }, { "name": "Test 2 - Version Check", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043646#step:7:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369858#step:7:1" }, { "name": "Test 3 - Help Output Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043646#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369858#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043646#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369858#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043646#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369858#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043646#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369858#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.443941+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.651158+00:00", "publish_state": "published" } } diff --git a/data/test-results/swift.json b/data/test-results/swift.json index 8dcd1c4d20..2c4ba63770 100644 --- a/data/test-results/swift.json +++ b/data/test-results/swift.json @@ -5,10 +5,10 @@ "version": "6.0.3" }, "run": { - "id": "25877411197", + "id": "26658717942", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175564", - "timestamp": "2026-05-14T18:18:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479902", + "timestamp": "2026-05-29T19:48:52Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 32, + "duration_seconds": 25, "details": [ { "name": "Test 1 - Check Swift binaries exist", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175564#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479902#step:6:1" }, { "name": "Test 2 - Check Swift version output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175564#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479902#step:7:1" }, { "name": "Test 3 - Check Swift help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175564#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479902#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175564#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479902#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175564#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479902#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 30, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175564#step:11:1", + "duration_seconds": 23, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479902#step:11:1", "current_version": "6.0.3", "latest_version": "6.2.4", "next_installed_version": "6.2.4", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.444159+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.651357+00:00", "publish_state": "published" } } diff --git a/data/test-results/swig.json b/data/test-results/swig.json index 6f467fe417..45213f071e 100644 --- a/data/test-results/swig.json +++ b/data/test-results/swig.json @@ -5,10 +5,10 @@ "version": "4.2.0" }, "run": { - "id": "25877415436", + "id": "26658721315", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180591", - "timestamp": "2026-05-14T18:18:50Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491677", + "timestamp": "2026-05-29T19:48:56Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 1, + "duration_seconds": 0, "details": [ { "name": "Test 1 - Check Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180591#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491677#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180591#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491677#step:7:1" }, { "name": "Test 3 - Check Help Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180591#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491677#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180591#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491677#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180591#step:10:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491677#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180591#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491677#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.444364+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.651540+00:00", "publish_state": "published" } } diff --git a/data/test-results/sysbench.json b/data/test-results/sysbench.json index dc95896aee..e235b2b07d 100644 --- a/data/test-results/sysbench.json +++ b/data/test-results/sysbench.json @@ -5,10 +5,10 @@ "version": "1.0.19" }, "run": { - "id": "25877392111", + "id": "26658699892", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096544", - "timestamp": "2026-05-14T18:18:23Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420917", + "timestamp": "2026-05-29T19:48:30Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 46, + "duration_seconds": 45, "details": [ { "name": "Test 1 - Check sysbench binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096544#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420917#step:6:1" }, { "name": "Test 2 - Check version output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096544#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420917#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096544#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420917#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096544#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420917#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 10, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096544#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420917#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 36, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096544#step:11:1", + "duration_seconds": 35, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420917#step:11:1", "current_version": "1.0.19", "latest_version": "1.0.20", "next_installed_version": "1.0.20", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.444549+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.651711+00:00", "publish_state": "published" } } diff --git a/data/test-results/sysdig.json b/data/test-results/sysdig.json index a234390682..637619ba2c 100644 --- a/data/test-results/sysdig.json +++ b/data/test-results/sysdig.json @@ -5,10 +5,10 @@ "version": "0.41.3" }, "run": { - "id": "25877419588", + "id": "26658724696", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048191481", - "timestamp": "2026-05-14T18:19:02Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503390", + "timestamp": "2026-05-29T19:49:02Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 3, + "duration_seconds": 2, "details": [ { "name": "Test 1 - Check sysdig binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048191481#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503390#step:6:1" }, { "name": "Test 2 - Check exact version output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048191481#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503390#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048191481#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503390#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048191481#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503390#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048191481#step:10:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503390#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048191481#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503390#step:11:1", "current_version": "0.41.3", "latest_version": "0.41.4", "next_installed_version": "0.41.4", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.444770+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.651882+00:00", "publish_state": "published" } } diff --git a/data/test-results/sysget.json b/data/test-results/sysget.json index ab9591dab9..eb32dd7eff 100644 --- a/data/test-results/sysget.json +++ b/data/test-results/sysget.json @@ -5,10 +5,10 @@ "version": "2.2" }, "run": { - "id": "25877406767", + "id": "26658714432", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155545", - "timestamp": "2026-05-14T18:18:45Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469554", + "timestamp": "2026-05-29T19:48:48Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check sysget binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155545#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469554#step:6:1" }, { "name": "Test 2 - Check exact version output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155545#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469554#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155545#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469554#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155545#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469554#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155545#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469554#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 10, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155545#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469554#step:11:1", "current_version": "2.2", "latest_version": "2.3", "next_installed_version": "2.3", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.445002+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.652059+00:00", "publish_state": "published" } } diff --git a/data/test-results/tabPFN.json b/data/test-results/tabPFN.json index 9295d56cd7..5d246163bb 100644 --- a/data/test-results/tabPFN.json +++ b/data/test-results/tabPFN.json @@ -5,10 +5,10 @@ "version": "0.1.3" }, "run": { - "id": "25877435852", + "id": "26658737633", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251853", - "timestamp": "2026-05-14T18:19:18Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549417", + "timestamp": "2026-05-29T19:49:21Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,46 +20,46 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 1, + "duration_seconds": 2, "details": [ { "name": "Test 1 - Check package-specific baseline markers", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251853#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549417#step:8:1" }, { "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251853#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549417#step:9:1" }, { "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251853#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549417#step:10:1" }, { "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251853#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549417#step:11:1" }, { "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251853#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549417#step:12:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251853#step:13:1", + "duration_seconds": 2, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549417#step:13:1", "current_version": "0.1.3", - "latest_version": "8.0.2", - "next_installed_version": "8.0.2", + "latest_version": "8.0.3", + "next_installed_version": "8.0.3", "decision": "limited_cpu_smoke_validated", "regression_result": "Arm preflight proof passed on Arm64", "comparison": "Test 6 limited_cpu_smoke_validated: compiled the next TabPFN source candidate on the Arm64 runner and inspected the predictor API source. No package import, model download, fit/predict inference, or GPU execution is claimed." @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.445197+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.652232+00:00", "publish_state": "published" } } diff --git a/data/test-results/tabpfn-time-series.json b/data/test-results/tabpfn-time-series.json index 643dc71a46..e2a18d17f6 100644 --- a/data/test-results/tabpfn-time-series.json +++ b/data/test-results/tabpfn-time-series.json @@ -5,10 +5,10 @@ "version": "0.1.0" }, "run": { - "id": "25877435852", + "id": "26658737633", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251933", - "timestamp": "2026-05-14T18:19:16Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549298", + "timestamp": "2026-05-29T19:49:20Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check package-specific baseline markers", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251933#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549298#step:8:1" }, { "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251933#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549298#step:9:1" }, { "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251933#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549298#step:10:1" }, { "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251933#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549298#step:11:1" }, { "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251933#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549298#step:12:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251933#step:13:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549298#step:13:1", "current_version": "0.1.0", "latest_version": "1.1.0", "next_installed_version": "1.1.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.445403+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.652451+00:00", "publish_state": "published" } } diff --git a/data/test-results/taskflow.json b/data/test-results/taskflow.json index acccf24729..957a613316 100644 --- a/data/test-results/taskflow.json +++ b/data/test-results/taskflow.json @@ -2,13 +2,13 @@ "schema_version": "2.0", "package": { "name": "Taskflow", - "version": "6.2.0" + "version": "6.3.0" }, "run": { - "id": "25877387746", + "id": "26658696365", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083675", - "timestamp": "2026-05-14T18:18:18Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575406517", + "timestamp": "2026-05-29T19:48:23Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Module Import", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083675#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575406517#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083675#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575406517#step:7:1" }, { "name": "Test 3 - Check API Surface", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083675#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575406517#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083675#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575406517#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083675#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575406517#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083675#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575406517#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.445606+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.652633+00:00", "publish_state": "published" } } diff --git a/data/test-results/tbb.json b/data/test-results/tbb.json index d232868664..d26944cb0e 100644 --- a/data/test-results/tbb.json +++ b/data/test-results/tbb.json @@ -5,10 +5,10 @@ "version": "2021.11.0" }, "run": { - "id": "25877359516", + "id": "26658670904", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991065", - "timestamp": "2026-05-14T18:17:43Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321474", + "timestamp": "2026-05-29T19:47:53Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 10, + "duration_seconds": 12, "details": [ { "name": "Test 1 - Check TBB library exists", "status": "passed", - "duration_seconds": 8, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991065#step:6:1" + "duration_seconds": 9, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321474#step:6:1" }, { "name": "Test 2 - Check TBB header files", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991065#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321474#step:7:1" }, { "name": "Test 3 - Verify Architecture Linkage", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991065#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321474#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991065#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321474#step:9:1" }, { "name": "Test 5 - Functional Validation (Library Check)", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991065#step:10:1" + "duration_seconds": 3, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321474#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991065#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321474#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.445840+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.652804+00:00", "publish_state": "published" } } diff --git a/data/test-results/tcl.json b/data/test-results/tcl.json index c2a6466b05..8597a58d5a 100644 --- a/data/test-results/tcl.json +++ b/data/test-results/tcl.json @@ -5,10 +5,10 @@ "version": "8.6.14" }, "run": { - "id": "25877415436", + "id": "26658721315", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181121", - "timestamp": "2026-05-14T18:18:53Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491750", + "timestamp": "2026-05-29T19:48:56Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181121#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491750#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181121#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491750#step:7:1" }, { "name": "Test 3 - Check Script Parsing", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181121#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491750#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181121#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491750#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181121#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491750#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048181121#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491750#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.446027+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.652970+00:00", "publish_state": "published" } } diff --git a/data/test-results/tdengine.json b/data/test-results/tdengine.json index b613b3cc5a..86c43625a8 100644 --- a/data/test-results/tdengine.json +++ b/data/test-results/tdengine.json @@ -5,10 +5,10 @@ "version": "3.3.6.9" }, "run": { - "id": "25877367704", + "id": "26658677990", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027027", - "timestamp": "2026-05-14T18:17:56Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346914", + "timestamp": "2026-05-29T19:48:02Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Artifact Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027027#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346914#step:6:1" }, { "name": "Test 2 - Version Check", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027027#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346914#step:7:1" }, { "name": "Test 3 - Configuration Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027027#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346914#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027027#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346914#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027027#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346914#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027027#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575346914#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.446227+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.653135+00:00", "publish_state": "published" } } diff --git a/data/test-results/tej_api.json b/data/test-results/tej_api.json index 994227bbf9..89d0d95c37 100644 --- a/data/test-results/tej_api.json +++ b/data/test-results/tej_api.json @@ -5,10 +5,10 @@ "version": "0.1.31" }, "run": { - "id": "25877392111", + "id": "26658699892", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096567", - "timestamp": "2026-05-14T18:18:24Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420659", + "timestamp": "2026-05-29T19:48:30Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 1, + "duration_seconds": 2, "details": [ { "name": "Test 1 - Check Module Import", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096567#step:6:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420659#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096567#step:7:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420659#step:7:1" }, { "name": "Test 3 - Check Help Output or Configuration", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096567#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420659#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096567#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420659#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096567#step:10:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420659#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096567#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575420659#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.446424+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.653330+00:00", "publish_state": "published" } } diff --git a/data/test-results/telegraf.json b/data/test-results/telegraf.json index 348610c2a1..8b60fe477c 100644 --- a/data/test-results/telegraf.json +++ b/data/test-results/telegraf.json @@ -5,10 +5,10 @@ "version": "1.34.0" }, "run": { - "id": "25877392111", + "id": "26658699892", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096512", - "timestamp": "2026-05-14T18:18:23Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421154", + "timestamp": "2026-05-29T19:48:30Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096512#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421154#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096512#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421154#step:7:1" }, { "name": "Test 3 - Check Help Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096512#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421154#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096512#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421154#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096512#step:10:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421154#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096512#step:11:1", + "duration_seconds": 3, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421154#step:11:1", "current_version": "1.34.0", "latest_version": "1.34.1", "next_installed_version": "1.34.1", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.446627+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.653520+00:00", "publish_state": "published" } } diff --git a/data/test-results/tengine.json b/data/test-results/tengine.json index 8f16adb526..891ffcfacf 100644 --- a/data/test-results/tengine.json +++ b/data/test-results/tengine.json @@ -5,10 +5,10 @@ "version": "3.0.0" }, "run": { - "id": "25877395502", + "id": "26658703674", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110192", - "timestamp": "2026-05-14T18:18:26Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432887", + "timestamp": "2026-05-29T19:48:34Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110192#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432887#step:6:1" }, { "name": "Test 2 - Version Check", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110192#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432887#step:7:1" }, { "name": "Test 3 - Configuration Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110192#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432887#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110192#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432887#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110192#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432887#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 11, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048110192#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575432887#step:11:1", "current_version": "3.0.0", "latest_version": "3.1.0", "next_installed_version": "3.1.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.446864+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.653707+00:00", "publish_state": "published" } } diff --git a/data/test-results/tensorflow-serving.json b/data/test-results/tensorflow-serving.json index 9465f02418..1b7f70eed2 100644 --- a/data/test-results/tensorflow-serving.json +++ b/data/test-results/tensorflow-serving.json @@ -5,10 +5,10 @@ "version": "2.18.1" }, "run": { - "id": "25877371674", + "id": "26658681575", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031566", - "timestamp": "2026-05-14T18:18:00Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358532", + "timestamp": "2026-05-29T19:48:07Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check exact baseline source tag and model testdata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031566#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358532#step:8:1" }, { "name": "Test 2 - Check Tensorflow Serving API package imports", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031566#step:9:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358532#step:9:1" }, { "name": "Test 3 - Check Tensorflow Serving source targets and protos", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031566#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358532#step:10:1" }, { "name": "Test 4 - Verify Arm64 runner and Python package platform", "status": "passed", "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031566#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358532#step:11:1" }, { "name": "Test 5 - Validate half_plus_two model fixture and request path", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031566#step:12:1" + "duration_seconds": 2, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358532#step:12:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 29, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031566#step:13:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358532#step:13:1", "current_version": "2.18.1", "latest_version": "2.19.0", "next_installed_version": "2.19.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.447081+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.653876+00:00", "publish_state": "published" } } diff --git a/data/test-results/tensorflow.json b/data/test-results/tensorflow.json index 645518e548..ecf612b277 100644 --- a/data/test-results/tensorflow.json +++ b/data/test-results/tensorflow.json @@ -5,10 +5,10 @@ "version": "2.21.0" }, "run": { - "id": "25877363365", + "id": "26658674448", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000028", - "timestamp": "2026-05-14T18:17:47Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333912", + "timestamp": "2026-05-29T19:47:56Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 7, + "duration_seconds": 8, "details": [ { "name": "Test 1 - Import TensorFlow", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000028#step:6:1" + "duration_seconds": 2, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333912#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000028#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333912#step:7:1" }, { "name": "Test 3 - Check Module Help Output", "status": "passed", "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000028#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333912#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000028#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333912#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000028#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333912#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000028#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333912#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.447285+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.654051+00:00", "publish_state": "published" } } diff --git a/data/test-results/tensorrt-llm.json b/data/test-results/tensorrt-llm.json index f9f3ca05a6..e66a0592ce 100644 --- a/data/test-results/tensorrt-llm.json +++ b/data/test-results/tensorrt-llm.json @@ -5,10 +5,10 @@ "version": "0.20.0" }, "run": { - "id": "25877435852", + "id": "26658737633", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252137", - "timestamp": "2026-05-14T18:19:19Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549933", + "timestamp": "2026-05-29T19:49:21Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 138, + "duration_seconds": 132, "details": [ { "name": "Test 1 - Check package-specific baseline markers", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252137#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549933#step:8:1" }, { "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252137#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549933#step:9:1" }, { "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252137#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549933#step:10:1" }, { "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252137#step:11:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549933#step:11:1" }, { "name": "Test 5 - Run scoped Arm preflight proof", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252137#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549933#step:12:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 137, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252137#step:13:1", + "duration_seconds": 131, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549933#step:13:1", "current_version": "0.20.0", "latest_version": "1.2.1", "next_installed_version": "1.2.1", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.447577+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.654335+00:00", "publish_state": "published" } } diff --git a/data/test-results/tensorrt.json b/data/test-results/tensorrt.json index 199eef5220..73dce51b48 100644 --- a/data/test-results/tensorrt.json +++ b/data/test-results/tensorrt.json @@ -5,10 +5,10 @@ "version": "21.08" }, "run": { - "id": "25877435852", + "id": "26658737633", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252001", - "timestamp": "2026-05-14T18:19:15Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550090", + "timestamp": "2026-05-29T19:49:21Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check package-specific baseline markers", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252001#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550090#step:8:1" }, { "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252001#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550090#step:9:1" }, { "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252001#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550090#step:10:1" }, { "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252001#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550090#step:11:1" }, { "name": "Test 5 - Run scoped Arm preflight proof", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252001#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550090#step:12:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 5, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252001#step:13:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550090#step:13:1", "current_version": "21.08", "latest_version": "23.08", "next_installed_version": "23.08", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.447801+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.654538+00:00", "publish_state": "published" } } diff --git a/data/test-results/terraform.json b/data/test-results/terraform.json index 8b2bfdc1e3..d474a31c88 100644 --- a/data/test-results/terraform.json +++ b/data/test-results/terraform.json @@ -5,10 +5,10 @@ "version": "1.14.7" }, "run": { - "id": "25877415436", + "id": "26658721315", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180856", - "timestamp": "2026-05-14T18:18:53Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491628", + "timestamp": "2026-05-29T19:48:56Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,49 +20,49 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 2, + "duration_seconds": 1, "details": [ { "name": "Test 1 - Check Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180856#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491628#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180856#step:7:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491628#step:7:1" }, { "name": "Test 3 - Check Help Output or Configuration", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180856#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491628#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180856#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491628#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180856#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491628#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180856#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491628#step:11:1", "current_version": "1.14.7", - "latest_version": "1.15.3", - "next_installed_version": "1.15.3", + "latest_version": "1.15.5", + "next_installed_version": "1.15.5", "decision": "next_install_validated", "regression_result": "Next version installed successfully on Arm64", - "comparison": "Current pinned Terraform version 1.14.7 passed smoke tests in this run. Regression validation downloaded the official Arm64 artifact from https://releases.hashicorp.com/terraform/1.15.3/terraform_1.15.3_linux_arm64.zip and confirmed candidate version 1.15.3 with real help/init/validate behavior successfully." + "comparison": "Current pinned Terraform version 1.14.7 passed smoke tests in this run. Regression validation downloaded the official Arm64 artifact from https://releases.hashicorp.com/terraform/1.15.5/terraform_1.15.5_linux_arm64.zip and confirmed candidate version 1.15.5 with real help/init/validate behavior successfully." } ] }, @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.447999+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.654735+00:00", "publish_state": "published" } } diff --git a/data/test-results/tesseract.json b/data/test-results/tesseract.json index cdcf4ac95d..73e5fa33fe 100644 --- a/data/test-results/tesseract.json +++ b/data/test-results/tesseract.json @@ -5,10 +5,10 @@ "version": "5.3.4" }, "run": { - "id": "25877415436", + "id": "26658721315", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179746", - "timestamp": "2026-05-14T18:18:50Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575490848", + "timestamp": "2026-05-29T19:48:55Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179746#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575490848#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179746#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575490848#step:7:1" }, { "name": "Test 3 - Check Help Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179746#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575490848#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179746#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575490848#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179746#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575490848#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048179746#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575490848#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.448205+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.654919+00:00", "publish_state": "published" } } diff --git a/data/test-results/thanos.json b/data/test-results/thanos.json index f017106c3e..2d82fa5368 100644 --- a/data/test-results/thanos.json +++ b/data/test-results/thanos.json @@ -5,10 +5,10 @@ "version": "0.38.0" }, "run": { - "id": "25877406767", + "id": "26658714432", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155719", - "timestamp": "2026-05-14T18:18:44Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469344", + "timestamp": "2026-05-29T19:48:49Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 1, + "duration_seconds": 3, "details": [ { "name": "Test 1 - Check Thanos binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155719#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469344#step:6:1" }, { "name": "Test 2 - Check version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155719#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469344#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155719#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469344#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155719#step:9:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469344#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155719#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469344#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155719#step:11:1", + "duration_seconds": 2, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469344#step:11:1", "current_version": "0.38.0", "latest_version": "0.39.0", "next_installed_version": "version", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.448425+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.655101+00:00", "publish_state": "published" } } diff --git a/data/test-results/thoughtworks_talisman.json b/data/test-results/thoughtworks_talisman.json index 1c0563ed6e..0497292372 100644 --- a/data/test-results/thoughtworks_talisman.json +++ b/data/test-results/thoughtworks_talisman.json @@ -5,10 +5,10 @@ "version": "1.37.0" }, "run": { - "id": "25877419588", + "id": "26658724696", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192375", - "timestamp": "2026-05-14T18:18:55Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504191", + "timestamp": "2026-05-29T19:49:02Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Artifact Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192375#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504191#step:6:1" }, { "name": "Test 2 - Version Check", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192375#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504191#step:7:1" }, { "name": "Test 3 - Help Output Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192375#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504191#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192375#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504191#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192375#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504191#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192375#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504191#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.448631+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.655304+00:00", "publish_state": "published" } } diff --git a/data/test-results/threatmapper.json b/data/test-results/threatmapper.json index 210e908a08..256092ebb7 100644 --- a/data/test-results/threatmapper.json +++ b/data/test-results/threatmapper.json @@ -5,10 +5,10 @@ "version": "2.1.1" }, "run": { - "id": "25877363365", + "id": "26658674448", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001003", - "timestamp": "2026-05-14T18:17:46Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334523", + "timestamp": "2026-05-29T19:47:57Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Artifact Existence", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001003#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334523#step:6:1" }, { "name": "Test 2 - Version Check", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001003#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334523#step:7:1" }, { "name": "Test 3 - Configuration Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001003#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334523#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001003#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334523#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001003#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334523#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "skipped", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001003#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334523#step:11:1", "current_version": "2.1.1", "latest_version": "2.1.1", "next_installed_version": "not_installed", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "skipped", "regression_decision": "no_newer_stable_available", - "production_refreshed_at": "2026-05-14T19:37:17.448829+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.655488+00:00", "publish_state": "published" } } diff --git a/data/test-results/tiffin.json b/data/test-results/tiffin.json index 665032e4f5..52b9f4dc53 100644 --- a/data/test-results/tiffin.json +++ b/data/test-results/tiffin.json @@ -5,10 +5,10 @@ "version": "0.3.2" }, "run": { - "id": "25877363365", + "id": "26658674448", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000779", - "timestamp": "2026-05-14T18:17:48Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334524", + "timestamp": "2026-05-29T19:47:57Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Build Artifact", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000779#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334524#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000779#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334524#step:7:1" }, { "name": "Test 3 - Check Cargo Metadata", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000779#step:8:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334524#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000779#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334524#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000779#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334524#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 11, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000779#step:11:1", + "duration_seconds": 10, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334524#step:11:1", "current_version": "0.3.2", "latest_version": "0.4.0", "next_installed_version": "0.4.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.449032+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.655665+00:00", "publish_state": "published" } } diff --git a/data/test-results/tikv.json b/data/test-results/tikv.json index c22ef8a438..3197ace2d6 100644 --- a/data/test-results/tikv.json +++ b/data/test-results/tikv.json @@ -5,10 +5,10 @@ "version": "7.5.5" }, "run": { - "id": "25877399008", + "id": "26658707245", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126031", - "timestamp": "2026-05-14T18:18:31Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445359", + "timestamp": "2026-05-29T19:48:38Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 12, + "duration_seconds": 11, "details": [ { "name": "Test 1 - Binary Existence", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126031#step:6:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445359#step:6:1" }, { "name": "Test 2 - Version Check", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126031#step:7:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445359#step:7:1" }, { "name": "Test 3 - Help Output Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126031#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445359#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126031#step:9:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445359#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126031#step:10:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445359#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 10, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126031#step:11:1", + "duration_seconds": 9, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445359#step:11:1", "current_version": "7.5.5", "latest_version": "v7.5.6", "next_installed_version": "7.5.6", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.449237+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.655841+00:00", "publish_state": "published" } } diff --git a/data/test-results/tilelang.json b/data/test-results/tilelang.json index 7a5d84fa46..2c0dd9b6f9 100644 --- a/data/test-results/tilelang.json +++ b/data/test-results/tilelang.json @@ -5,10 +5,10 @@ "version": "0.1.6.post2" }, "run": { - "id": "25877435852", + "id": "26658737633", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251780", - "timestamp": "2026-05-14T18:19:15Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550002", + "timestamp": "2026-05-29T19:49:20Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check package-specific baseline markers", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251780#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550002#step:8:1" }, { "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251780#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550002#step:9:1" }, { "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251780#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550002#step:10:1" }, { "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251780#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550002#step:11:1" }, { "name": "Test 5 - Run scoped Arm preflight proof", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251780#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550002#step:12:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251780#step:13:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550002#step:13:1", "current_version": "0.1.6.post2", "latest_version": "0.1.8", "next_installed_version": "0.1.8", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.449438+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.656014+00:00", "publish_state": "published" } } diff --git a/data/test-results/timber.json b/data/test-results/timber.json index 7ccb66bc87..1074653a1d 100644 --- a/data/test-results/timber.json +++ b/data/test-results/timber.json @@ -5,10 +5,10 @@ "version": "2.0.0" }, "run": { - "id": "25877375677", + "id": "26658685142", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044729", - "timestamp": "2026-05-14T18:18:03Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370851", + "timestamp": "2026-05-29T19:48:16Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 2, + "duration_seconds": 3, "details": [ { "name": "Test 1 - Artifact Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044729#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370851#step:6:1" }, { "name": "Test 2 - Version Check", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044729#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370851#step:7:1" }, { "name": "Test 3 - Configuration Validation", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044729#step:8:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370851#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044729#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370851#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044729#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370851#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044729#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370851#step:11:1", "current_version": "2.0.0", "latest_version": "2.1.0", "next_installed_version": "2.1.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.449646+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.656190+00:00", "publish_state": "published" } } diff --git a/data/test-results/timescaledb.json b/data/test-results/timescaledb.json index 7218dae5ed..ae92db31f7 100644 --- a/data/test-results/timescaledb.json +++ b/data/test-results/timescaledb.json @@ -5,10 +5,10 @@ "version": "2.26.4" }, "run": { - "id": "25877363365", + "id": "26658674448", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001214", - "timestamp": "2026-05-14T18:17:47Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334482", + "timestamp": "2026-05-29T19:47:58Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check extension assets exist", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001214#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334482#step:6:1" }, { "name": "Test 2 - Check package version", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001214#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334482#step:7:1" }, { "name": "Test 3 - Check control metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001214#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334482#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001214#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334482#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 7, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001214#step:10:1" + "duration_seconds": 8, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334482#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001214#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334482#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.449866+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.656400+00:00", "publish_state": "published" } } diff --git a/data/test-results/tinker.json b/data/test-results/tinker.json index 0be6c18472..656d851ea8 100644 --- a/data/test-results/tinker.json +++ b/data/test-results/tinker.json @@ -5,10 +5,10 @@ "version": "26.1.2" }, "run": { - "id": "25877359516", + "id": "26658670904", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991068", - "timestamp": "2026-05-14T18:17:44Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321463", + "timestamp": "2026-05-29T19:47:53Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check analyze binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991068#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321463#step:7:1" }, { "name": "Test 2 - Check minimize binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991068#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321463#step:8:1" }, { "name": "Test 3 - Check dynamic binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991068#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321463#step:9:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991068#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321463#step:10:1" }, { "name": "Test 5 - Functional Validation (Analyze Help)", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991068#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321463#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "skipped", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991068#step:12:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321463#step:12:1", "current_version": "26.1.2", "latest_version": "26.1.2", "next_installed_version": "26.1.2", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "skipped", "regression_decision": "no_newer_stable_available", - "production_refreshed_at": "2026-05-14T19:37:17.450078+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.656576+00:00", "publish_state": "published" } } diff --git a/data/test-results/tinyproxy.json b/data/test-results/tinyproxy.json index 1b19211526..61a34576a5 100644 --- a/data/test-results/tinyproxy.json +++ b/data/test-results/tinyproxy.json @@ -5,10 +5,10 @@ "version": "1.11.1" }, "run": { - "id": "25877383844", + "id": "26658692522", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071442", - "timestamp": "2026-05-14T18:18:14Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394997", + "timestamp": "2026-05-29T19:48:20Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071442#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394997#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071442#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394997#step:7:1" }, { "name": "Test 3 - Check Help Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071442#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394997#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071442#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394997#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071442#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394997#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071442#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394997#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.450283+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.656751+00:00", "publish_state": "published" } } diff --git a/data/test-results/tinyxml.json b/data/test-results/tinyxml.json index f5f03ad80b..1abd0f2f01 100644 --- a/data/test-results/tinyxml.json +++ b/data/test-results/tinyxml.json @@ -5,10 +5,10 @@ "version": "10.0.0" }, "run": { - "id": "25877375677", + "id": "26658685142", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044850", - "timestamp": "2026-05-14T18:18:02Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370476", + "timestamp": "2026-05-29T19:48:12Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Artifact Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044850#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370476#step:6:1" }, { "name": "Test 2 - Version Check", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044850#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370476#step:7:1" }, { "name": "Test 3 - Package Configuration Check", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044850#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370476#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044850#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370476#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044850#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370476#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048044850#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370476#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.450463+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.656930+00:00", "publish_state": "published" } } diff --git a/data/test-results/torchtune.json b/data/test-results/torchtune.json index 097e8e6c82..7c529cfaf5 100644 --- a/data/test-results/torchtune.json +++ b/data/test-results/torchtune.json @@ -5,10 +5,10 @@ "version": "0.6.1+cpu" }, "run": { - "id": "25877367704", + "id": "26658677990", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026763", - "timestamp": "2026-05-14T18:17:55Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347627", + "timestamp": "2026-05-29T19:48:02Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 12, + "duration_seconds": 11, "details": [ { "name": "Test 1 - Check torchtune import", "status": "passed", "duration_seconds": 4, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026763#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347627#step:6:1" }, { "name": "Test 2 - Check torchtune version via python", "status": "passed", "duration_seconds": 3, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026763#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347627#step:7:1" }, { "name": "Test 3 - Check package metadata and prerequisite resolution", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026763#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347627#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026763#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347627#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 4, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026763#step:10:1" + "duration_seconds": 3, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347627#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026763#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347627#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.450676+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.657099+00:00", "publish_state": "published" } } diff --git a/data/test-results/tornado.json b/data/test-results/tornado.json index a2bc6d0c6b..ac2c15b13a 100644 --- a/data/test-results/tornado.json +++ b/data/test-results/tornado.json @@ -2,13 +2,13 @@ "schema_version": "2.0", "package": { "name": "Tornado", - "version": "6.5.5" + "version": "6.5.6" }, "run": { - "id": "25877371674", + "id": "26658681575", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031019", - "timestamp": "2026-05-14T18:17:58Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357240", + "timestamp": "2026-05-29T19:48:07Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 0, + "duration_seconds": 1, "details": [ { "name": "Test 1 - Check Tornado module import", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031019#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357240#step:6:1" }, { "name": "Test 2 - Check version output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031019#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357240#step:7:1" }, { "name": "Test 3 - Check pip show", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031019#step:8:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357240#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031019#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357240#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031019#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357240#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031019#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357240#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.450884+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.657282+00:00", "publish_state": "published" } } diff --git a/data/test-results/trf.json b/data/test-results/trf.json index 66aed85a91..4d5ecd2268 100644 --- a/data/test-results/trf.json +++ b/data/test-results/trf.json @@ -5,10 +5,10 @@ "version": "v4.09.1" }, "run": { - "id": "25877399008", + "id": "26658707245", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125523", - "timestamp": "2026-05-14T18:18:31Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445366", + "timestamp": "2026-05-29T19:48:39Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125523#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445366#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125523#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445366#step:7:1" }, { "name": "Test 3 - Check Help Output or Configuration", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125523#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445366#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125523#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445366#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125523#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445366#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "skipped", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125523#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445366#step:11:1", "current_version": "v4.09.1", "latest_version": "v4.09.1", "next_installed_version": "v4.09.1", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "skipped", "regression_decision": "no_newer_stable_available", - "production_refreshed_at": "2026-05-14T19:37:17.451095+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.657464+00:00", "publish_state": "published" } } diff --git a/data/test-results/trino.json b/data/test-results/trino.json index 7b509490e5..ee77576c53 100644 --- a/data/test-results/trino.json +++ b/data/test-results/trino.json @@ -5,10 +5,10 @@ "version": "469" }, "run": { - "id": "25877419588", + "id": "26658724696", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192347", - "timestamp": "2026-05-14T18:18:54Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503433", + "timestamp": "2026-05-29T19:49:00Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 13, + "duration_seconds": 14, "details": [ { "name": "Test 1 - Artifact Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192347#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503433#step:6:1" }, { "name": "Test 2 - Version Check", "status": "passed", - "duration_seconds": 9, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192347#step:7:1" + "duration_seconds": 7, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503433#step:7:1" }, { "name": "Test 3 - Configuration Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192347#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503433#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192347#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503433#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 6, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192347#step:10:1" + "duration_seconds": 7, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503433#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192347#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503433#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.451298+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.657638+00:00", "publish_state": "published" } } diff --git a/data/test-results/triton.json b/data/test-results/triton.json index 9abbe434ee..5656832463 100644 --- a/data/test-results/triton.json +++ b/data/test-results/triton.json @@ -5,10 +5,10 @@ "version": "3.5.0" }, "run": { - "id": "25877435852", + "id": "26658737633", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251891", - "timestamp": "2026-05-14T18:19:16Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549974", + "timestamp": "2026-05-29T19:49:23Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 13, + "duration_seconds": 10, "details": [ { "name": "Test 1 - Package installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251891#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549974#step:7:1" }, { "name": "Test 2 - Version metadata matches baseline", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251891#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549974#step:8:1" }, { "name": "Test 3 - Installed files metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251891#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549974#step:9:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251891#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549974#step:10:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251891#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549974#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 13, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251891#step:12:1", + "duration_seconds": 10, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549974#step:12:1", "current_version": "3.5.0", "latest_version": "3.5.1", "next_installed_version": "3.5.1", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.451474+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.657809+00:00", "publish_state": "published" } } diff --git a/data/test-results/trivy.json b/data/test-results/trivy.json index 7c1960b668..12fa98bb66 100644 --- a/data/test-results/trivy.json +++ b/data/test-results/trivy.json @@ -5,10 +5,10 @@ "version": "0.69.2" }, "run": { - "id": "25877423406", + "id": "26658727918", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209568", - "timestamp": "2026-05-14T18:19:10Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516037", + "timestamp": "2026-05-29T19:49:06Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 2, + "duration_seconds": 3, "details": [ { "name": "Test 1 - Check trivy binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209568#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516037#step:6:1" }, { "name": "Test 2 - Check version output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209568#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516037#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209568#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516037#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209568#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516037#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209568#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516037#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209568#step:11:1", + "duration_seconds": 2, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516037#step:11:1", "current_version": "0.69.2", "latest_version": "0.69.3", "next_installed_version": "0.69.3", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.451667+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.657982+00:00", "publish_state": "published" } } diff --git a/data/test-results/tuf.json b/data/test-results/tuf.json index 48ffd933d1..34dee7873a 100644 --- a/data/test-results/tuf.json +++ b/data/test-results/tuf.json @@ -2,13 +2,13 @@ "schema_version": "2.0", "package": { "name": "The Update Framework (TUF)", - "version": "6.0.0" + "version": "7.0.0" }, "run": { - "id": "25877427741", + "id": "26658731236", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217725", - "timestamp": "2026-05-14T18:19:10Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529492", + "timestamp": "2026-05-29T19:49:14Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -25,38 +25,38 @@ { "name": "Test 1 - Check TUF module installation", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217725#step:6:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529492#step:6:1" }, { "name": "Test 2 - Check TUF version attribute", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217725#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529492#step:7:1" }, { "name": "Test 3 - Check package metadata output", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217725#step:8:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529492#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217725#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529492#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217725#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529492#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877427741/job/76048217725#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658731236/job/78575529492#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.451880+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.658153+00:00", "publish_state": "published" } } diff --git a/data/test-results/turbovnc.json b/data/test-results/turbovnc.json index 98283da021..808f64607a 100644 --- a/data/test-results/turbovnc.json +++ b/data/test-results/turbovnc.json @@ -5,10 +5,10 @@ "version": "3.0" }, "run": { - "id": "25877435852", + "id": "26658737633", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252024", - "timestamp": "2026-05-14T18:19:20Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550274", + "timestamp": "2026-05-29T19:49:21Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 12, + "duration_seconds": 3, "details": [ { "name": "Test 1 - Check package-specific baseline markers", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252024#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550274#step:8:1" }, { "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252024#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550274#step:9:1" }, { "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252024#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550274#step:10:1" }, { "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252024#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550274#step:11:1" }, { "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "duration_seconds": 6, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252024#step:12:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550274#step:12:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 12, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252024#step:13:1", + "duration_seconds": 3, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550274#step:13:1", "current_version": "3.0", "latest_version": "3.3", "next_installed_version": "3.3", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.452053+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.658345+00:00", "publish_state": "published" } } diff --git a/data/test-results/typescript.json b/data/test-results/typescript.json index c6385ccf2d..841bef7f85 100644 --- a/data/test-results/typescript.json +++ b/data/test-results/typescript.json @@ -5,10 +5,10 @@ "version": "6.0.3" }, "run": { - "id": "25877415436", + "id": "26658721315", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180596", - "timestamp": "2026-05-14T18:18:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491877", + "timestamp": "2026-05-29T19:48:57Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180596#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491877#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180596#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491877#step:7:1" }, { "name": "Test 3 - Check Help Output or Configuration", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180596#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491877#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180596#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491877#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180596#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491877#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180596#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491877#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.452372+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.658615+00:00", "publish_state": "published" } } diff --git a/data/test-results/ubuntu.json b/data/test-results/ubuntu.json index 028d1b1ebf..a82cba7332 100644 --- a/data/test-results/ubuntu.json +++ b/data/test-results/ubuntu.json @@ -5,10 +5,10 @@ "version": "24.04" }, "run": { - "id": "25877359516", + "id": "26658670904", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047989969", - "timestamp": "2026-05-14T18:17:46Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321496", + "timestamp": "2026-05-29T19:47:52Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 24, + "duration_seconds": 22, "details": [ { "name": "Test 1 - Check image architecture", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047989969#step:6:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321496#step:6:1" }, { "name": "Test 2 - Check OS release file", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047989969#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321496#step:7:1" }, { "name": "Test 3 - Install package with apt", "status": "passed", - "duration_seconds": 11, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047989969#step:8:1" + "duration_seconds": 8, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321496#step:8:1" }, { "name": "Test 4 - Check architecture inside container", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047989969#step:9:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321496#step:9:1" }, { "name": "Test 5 - Simple command execution", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047989969#step:10:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321496#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 12, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047989969#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321496#step:11:1", "current_version": "24.04", "latest_version": "25.10", "next_installed_version": "25.10", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.452587+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.658790+00:00", "publish_state": "published" } } diff --git a/data/test-results/ubuntucore.json b/data/test-results/ubuntucore.json index f5c8c581eb..6f496ed5bf 100644 --- a/data/test-results/ubuntucore.json +++ b/data/test-results/ubuntucore.json @@ -5,10 +5,10 @@ "version": "20" }, "run": { - "id": "25877387746", + "id": "26658696365", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083656", - "timestamp": "2026-05-14T18:18:17Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407497", + "timestamp": "2026-05-29T19:48:25Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 36, + "duration_seconds": 31, "details": [ { "name": "Test 1 - Baseline artifact existence", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083656#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407497#step:6:1" }, { "name": "Test 2 - Baseline index validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083656#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407497#step:7:1" }, { "name": "Test 3 - Baseline checksum manifest validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083656#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407497#step:8:1" }, { "name": "Test 4 - Architecture verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083656#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407497#step:9:1" }, { "name": "Test 5 - Baseline image integrity validation", "status": "passed", - "duration_seconds": 35, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083656#step:10:1" + "duration_seconds": 30, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407497#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083656#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407497#step:11:1", "current_version": "20", "latest_version": "26", "next_installed_version": "26", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "validated_next_release_metadata", - "production_refreshed_at": "2026-05-14T19:37:17.452812+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.658968+00:00", "publish_state": "published" } } diff --git a/data/test-results/ubuntudesktop.json b/data/test-results/ubuntudesktop.json index 7ed3728156..b8f3440a37 100644 --- a/data/test-results/ubuntudesktop.json +++ b/data/test-results/ubuntudesktop.json @@ -5,10 +5,10 @@ "version": "23.04" }, "run": { - "id": "25877435852", + "id": "26658737633", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251824", - "timestamp": "2026-05-14T18:19:16Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550019", + "timestamp": "2026-05-29T19:49:21Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check package-specific baseline markers", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251824#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550019#step:8:1" }, { "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251824#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550019#step:9:1" }, { "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251824#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550019#step:10:1" }, { "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251824#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550019#step:11:1" }, { "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251824#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550019#step:12:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251824#step:13:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550019#step:13:1", "current_version": "23.04", "latest_version": "26.04", "next_installed_version": "26.04", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.453001+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.659141+00:00", "publish_state": "published" } } diff --git a/data/test-results/ucx.json b/data/test-results/ucx.json index b6584e527e..941678630b 100644 --- a/data/test-results/ucx.json +++ b/data/test-results/ucx.json @@ -5,10 +5,10 @@ "version": "1.16.0+ds-5ubuntu1" }, "run": { - "id": "25877435852", + "id": "26658737633", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251775", - "timestamp": "2026-05-14T18:19:16Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550036", + "timestamp": "2026-05-29T19:49:21Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check package-specific baseline markers", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251775#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550036#step:8:1" }, { "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251775#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550036#step:9:1" }, { "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251775#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550036#step:10:1" }, { "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251775#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550036#step:11:1" }, { "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251775#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550036#step:12:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251775#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550036#step:13:1" } ] }, @@ -72,7 +72,7 @@ "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", "regression_status": "passed", - "production_refreshed_at": "2026-05-14T19:37:17.453208+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.659342+00:00", "publish_state": "published" } } diff --git a/data/test-results/ultralytics.json b/data/test-results/ultralytics.json index 43d5855816..601ddf2acb 100644 --- a/data/test-results/ultralytics.json +++ b/data/test-results/ultralytics.json @@ -2,13 +2,13 @@ "schema_version": "2.0", "package": { "name": "Ultralytics", - "version": "8.4.50" + "version": "8.4.56" }, "run": { - "id": "25877367704", + "id": "26658677990", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026709", - "timestamp": "2026-05-14T18:17:56Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347221", + "timestamp": "2026-05-29T19:48:02Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 5, + "duration_seconds": 4, "details": [ { "name": "Test 1 - Check ultralytics binary exists", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026709#step:6:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347221#step:6:1" }, { "name": "Test 2 - Check ultralytics version command", "status": "passed", - "duration_seconds": 4, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026709#step:7:1" + "duration_seconds": 2, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347221#step:7:1" }, { "name": "Test 3 - Check ultralytics help output", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026709#step:8:1" + "duration_seconds": 2, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347221#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026709#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347221#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026709#step:10:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347221#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048026709#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347221#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.453421+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.659517+00:00", "publish_state": "published" } } diff --git a/data/test-results/ultramarine-linux.json b/data/test-results/ultramarine-linux.json index bc58b3b614..b7dc59f3e1 100644 --- a/data/test-results/ultramarine-linux.json +++ b/data/test-results/ultramarine-linux.json @@ -5,10 +5,10 @@ "version": "43" }, "run": { - "id": "25877367704", + "id": "26658677990", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027102", - "timestamp": "2026-05-14T18:17:55Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347424", + "timestamp": "2026-05-29T19:48:03Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -25,38 +25,38 @@ { "name": "Test 1 - Baseline artifact existence", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027102#step:6:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347424#step:6:1" }, { "name": "Test 2 - Baseline index validation", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027102#step:7:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347424#step:7:1" }, { "name": "Test 3 - Baseline checksum manifest validation", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027102#step:8:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347424#step:8:1" }, { "name": "Test 4 - Architecture verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027102#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347424#step:9:1" }, { "name": "Test 5 - Baseline image validation", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027102#step:10:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347424#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "skipped", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027102#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347424#step:11:1", "current_version": "43", "latest_version": "43", "next_installed_version": "43", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "skipped", "regression_decision": "no_newer_stable_available", - "production_refreshed_at": "2026-05-14T19:37:17.453608+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.659682+00:00", "publish_state": "published" } } diff --git a/data/test-results/unixbench.json b/data/test-results/unixbench.json index 30ac19ef0c..70f2e2c80d 100644 --- a/data/test-results/unixbench.json +++ b/data/test-results/unixbench.json @@ -5,10 +5,10 @@ "version": "5.1.3" }, "run": { - "id": "25877387746", + "id": "26658696365", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084833", - "timestamp": "2026-05-14T18:18:16Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407677", + "timestamp": "2026-05-29T19:48:24Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Runner Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084833#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407677#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084833#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407677#step:7:1" }, { "name": "Test 3 - Check Configuration or Usage", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084833#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407677#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084833#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407677#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 15, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084833#step:10:1" + "duration_seconds": 16, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407677#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 16, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084833#step:11:1", + "duration_seconds": 15, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407677#step:11:1", "current_version": "5.1.3", "latest_version": "6.0.0", "next_installed_version": "6.0.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.453830+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.659861+00:00", "publish_state": "published" } } diff --git a/data/test-results/unleash.json b/data/test-results/unleash.json index 4f52fc35a7..331ecf9d43 100644 --- a/data/test-results/unleash.json +++ b/data/test-results/unleash.json @@ -5,10 +5,10 @@ "version": "6.10.0" }, "run": { - "id": "25877371674", + "id": "26658681575", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031789", - "timestamp": "2026-05-14T18:17:58Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358050", + "timestamp": "2026-05-29T19:48:07Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 15, + "duration_seconds": 16, "details": [ { "name": "Test 1 - Check Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031789#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358050#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031789#step:7:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358050#step:7:1" }, { "name": "Test 3 - Check Help Output", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031789#step:8:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358050#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031789#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358050#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 15, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031789#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358050#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031789#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358050#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.454017+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.660041+00:00", "publish_state": "published" } } diff --git a/data/test-results/uui.json b/data/test-results/uui.json index 080e3ed043..b308812132 100644 --- a/data/test-results/uui.json +++ b/data/test-results/uui.json @@ -5,10 +5,10 @@ "version": "6.4.3" }, "run": { - "id": "25877379982", + "id": "26658688675", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057412", - "timestamp": "2026-05-14T18:18:10Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380568", + "timestamp": "2026-05-29T19:48:16Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 1, + "duration_seconds": 0, "details": [ { "name": "Test 1 - Artifact Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057412#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380568#step:6:1" }, { "name": "Test 2 - Version Check", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057412#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380568#step:7:1" }, { "name": "Test 3 - Configuration Validation", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057412#step:8:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380568#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057412#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380568#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057412#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380568#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057412#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380568#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.454214+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.660209+00:00", "publish_state": "published" } } diff --git a/data/test-results/uv.json b/data/test-results/uv.json index 7a7cca8dd8..8515a3e062 100644 --- a/data/test-results/uv.json +++ b/data/test-results/uv.json @@ -5,10 +5,10 @@ "version": "0.5.25" }, "run": { - "id": "25877371674", + "id": "26658681575", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031582", - "timestamp": "2026-05-14T18:18:00Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358270", + "timestamp": "2026-05-29T19:48:08Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 0, + "duration_seconds": 1, "details": [ { "name": "Test 1 - Artifact Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031582#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358270#step:6:1" }, { "name": "Test 2 - Version Check", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031582#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358270#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031582#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358270#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031582#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358270#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031582#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358270#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031582#step:11:1", + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358270#step:11:1", "current_version": "0.5.25", "latest_version": "0.5.26", "next_installed_version": "0.5.26", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.454394+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.660419+00:00", "publish_state": "published" } } diff --git a/data/test-results/uyuni.json b/data/test-results/uyuni.json index 74a633768c..24d7ea0711 100644 --- a/data/test-results/uyuni.json +++ b/data/test-results/uyuni.json @@ -5,10 +5,10 @@ "version": "2026.04" }, "run": { - "id": "25877392111", + "id": "26658699892", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096547", - "timestamp": "2026-05-14T18:18:25Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421052", + "timestamp": "2026-05-29T19:48:30Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check baseline image pulled", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096547#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421052#step:6:1" }, { "name": "Test 2 - Verify baseline tag metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096547#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421052#step:7:1" }, { "name": "Test 3 - Container smoke command", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096547#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421052#step:8:1" }, { "name": "Test 4 - Verify image architecture", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096547#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421052#step:9:1" }, { "name": "Test 5 - Validate Uyuni package footprint", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096547#step:10:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421052#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "skipped", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096547#step:11:1", + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421052#step:11:1", "current_version": "2026.04", "latest_version": "2026.04", "next_installed_version": "not_installed", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "skipped", "regression_decision": "no_newer_stable_available", - "production_refreshed_at": "2026-05-14T19:37:17.454578+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.660600+00:00", "publish_state": "published" } } diff --git a/data/test-results/v8-javascript.json b/data/test-results/v8-javascript.json index b5fdba4800..6e721f1dfa 100644 --- a/data/test-results/v8-javascript.json +++ b/data/test-results/v8-javascript.json @@ -5,10 +5,10 @@ "version": "11.3.244.8-node.33" }, "run": { - "id": "25877371674", + "id": "26658681575", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031855", - "timestamp": "2026-05-14T18:17:59Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358680", + "timestamp": "2026-05-29T19:48:08Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Runtime Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031855#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358680#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031855#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358680#step:7:1" }, { "name": "Test 3 - Check Configuration or Help Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031855#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358680#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031855#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358680#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031855#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358680#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031855#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358680#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.454774+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.660773+00:00", "publish_state": "published" } } diff --git a/data/test-results/valgrind.json b/data/test-results/valgrind.json index cd587f1c28..dfa32b2fb9 100644 --- a/data/test-results/valgrind.json +++ b/data/test-results/valgrind.json @@ -5,10 +5,10 @@ "version": "3.23.0" }, "run": { - "id": "25877399008", + "id": "26658707245", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126172", - "timestamp": "2026-05-14T18:18:32Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445558", + "timestamp": "2026-05-29T19:48:38Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,49 +20,49 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 108, + "duration_seconds": 109, "details": [ { "name": "Test 1 - Check valgrind binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126172#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445558#step:6:1" }, { "name": "Test 2 - Check exact version output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126172#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445558#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126172#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445558#step:8:1" }, { "name": "Test 4 - Architecture verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126172#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445558#step:9:1" }, { "name": "Test 5 - Functional validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126172#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445558#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 107, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048126172#step:11:1", + "duration_seconds": 108, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445558#step:11:1", "current_version": "3.23.0", - "latest_version": "3.27.0", - "next_installed_version": "3.27.0", + "latest_version": "3.27.1", + "next_installed_version": "3.27.1", "decision": "next_install_validated", "regression_result": "Next version installed successfully on Arm64", - "comparison": "Current pinned Valgrind version 3.23.0 passed smoke tests in this run. Regression validation rebuilt candidate version 3.27.0 on Arm64, the isolated candidate binary reported version 3.27.0, and memcheck still reported the expected leak summary." + "comparison": "Current pinned Valgrind version 3.23.0 passed smoke tests in this run. Regression validation rebuilt candidate version 3.27.1 on Arm64, the isolated candidate binary reported version 3.27.1, and memcheck still reported the expected leak summary." } ] }, @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.454965+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.660945+00:00", "publish_state": "published" } } diff --git a/data/test-results/valkey.json b/data/test-results/valkey.json index 78d4933f72..2bd4d07637 100644 --- a/data/test-results/valkey.json +++ b/data/test-results/valkey.json @@ -5,10 +5,10 @@ "version": "8.0.2" }, "run": { - "id": "25877392111", + "id": "26658699892", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096525", - "timestamp": "2026-05-14T18:18:22Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421150", + "timestamp": "2026-05-29T19:48:30Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 40, + "duration_seconds": 39, "details": [ { "name": "Test 1 - Check Valkey binaries exist", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096525#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421150#step:6:1" }, { "name": "Test 2 - Check version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096525#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421150#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096525#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421150#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096525#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421150#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096525#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421150#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 40, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096525#step:11:1", + "duration_seconds": 39, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421150#step:11:1", "current_version": "8.0.2", "latest_version": "8.0.3", "next_installed_version": "8.0.3", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.455157+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.661119+00:00", "publish_state": "published" } } diff --git a/data/test-results/varnish.json b/data/test-results/varnish.json index 29f8bc7358..39e2f655be 100644 --- a/data/test-results/varnish.json +++ b/data/test-results/varnish.json @@ -5,10 +5,10 @@ "version": "7.7.2" }, "run": { - "id": "25877379982", + "id": "26658688675", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057169", - "timestamp": "2026-05-14T18:18:05Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380579", + "timestamp": "2026-05-29T19:48:15Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 13, + "duration_seconds": 12, "details": [ { "name": "Test 1 - Image Availability", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057169#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380579#step:6:1" }, { "name": "Test 2 - Version Check", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057169#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380579#step:7:1" }, { "name": "Test 3 - Help Output", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057169#step:8:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380579#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057169#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380579#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 3, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057169#step:10:1" + "duration_seconds": 2, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380579#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 10, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057169#step:11:1", + "duration_seconds": 9, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380579#step:11:1", "current_version": "7.7.2", "latest_version": "7.7.3", "next_installed_version": "7.7.3", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.455340+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.661308+00:00", "publish_state": "published" } } diff --git a/data/test-results/vcpkg.json b/data/test-results/vcpkg.json index aad3524b45..c9be5ae752 100644 --- a/data/test-results/vcpkg.json +++ b/data/test-results/vcpkg.json @@ -5,10 +5,10 @@ "version": "25.04.09" }, "run": { - "id": "25877435852", + "id": "26658737633", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251935", - "timestamp": "2026-05-14T18:19:15Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550054", + "timestamp": "2026-05-29T19:49:23Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check package-specific baseline markers", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251935#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550054#step:8:1" }, { "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251935#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550054#step:9:1" }, { "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251935#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550054#step:10:1" }, { "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251935#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550054#step:11:1" }, { "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251935#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550054#step:12:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251935#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550054#step:13:1" } ] }, @@ -72,7 +72,7 @@ "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", "regression_status": "passed", - "production_refreshed_at": "2026-05-14T19:37:17.455523+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.661483+00:00", "publish_state": "published" } } diff --git a/data/test-results/vectorscan.json b/data/test-results/vectorscan.json index 3db35d19fc..a93515cd24 100644 --- a/data/test-results/vectorscan.json +++ b/data/test-results/vectorscan.json @@ -5,10 +5,10 @@ "version": "5.4.11" }, "run": { - "id": "25877395502", + "id": "26658703674", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109480", - "timestamp": "2026-05-14T18:18:27Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433219", + "timestamp": "2026-05-29T19:48:33Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 255, + "duration_seconds": 250, "details": [ { "name": "Test 1 - Check built artifacts exist", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109480#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433219#step:6:1" }, { "name": "Test 2 - Check exact version output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109480#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433219#step:7:1" }, { "name": "Test 3 - Check hsbench help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109480#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433219#step:8:1" }, { "name": "Test 4 - Architecture verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109480#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433219#step:9:1" }, { "name": "Test 5 - Functional validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109480#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433219#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 255, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877395502/job/76048109480#step:11:1", + "duration_seconds": 251, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658703674/job/78575433219#step:11:1", "current_version": "5.4.11", "latest_version": "5.4.12", "next_installed_version": "5.4.12", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.455706+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.661657+00:00", "publish_state": "published" } } diff --git a/data/test-results/velocity.json b/data/test-results/velocity.json index 9b7473749f..5c2b606224 100644 --- a/data/test-results/velocity.json +++ b/data/test-results/velocity.json @@ -5,10 +5,10 @@ "version": "2.3" }, "run": { - "id": "25877359516", + "id": "26658670904", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991399", - "timestamp": "2026-05-14T18:17:45Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321483", + "timestamp": "2026-05-29T19:47:54Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 15, + "duration_seconds": 14, "details": [ { "name": "Test 1 - Create Template Test Class", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991399#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321483#step:8:1" }, { "name": "Test 2 - Compile Project", "status": "passed", - "duration_seconds": 12, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991399#step:9:1" + "duration_seconds": 11, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321483#step:9:1" }, { "name": "Test 3 - Run Template Test", "status": "passed", "duration_seconds": 3, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991399#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321483#step:10:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991399#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321483#step:11:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991399#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321483#step:12:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991399#step:13:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321483#step:13:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.455918+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.661845+00:00", "publish_state": "published" } } diff --git a/data/test-results/velox.json b/data/test-results/velox.json index 67941fe30b..1ba2a94ad2 100644 --- a/data/test-results/velox.json +++ b/data/test-results/velox.json @@ -5,10 +5,10 @@ "version": "2026.03.13.00" }, "run": { - "id": "25877435852", + "id": "26658737633", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251928", - "timestamp": "2026-05-14T18:19:17Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550306", + "timestamp": "2026-05-29T19:49:21Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 7, + "duration_seconds": 6, "details": [ { "name": "Test 1 - Check package-specific baseline markers", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251928#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550306#step:8:1" }, { "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251928#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550306#step:9:1" }, { "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251928#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550306#step:10:1" }, { "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251928#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550306#step:11:1" }, { "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251928#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550306#step:12:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 5, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251928#step:13:1", + "duration_seconds": 4, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550306#step:13:1", "current_version": "2026.03.13.00", "latest_version": "2026.05.01.00", "next_installed_version": "2026.05.01.00", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.456094+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.662016+00:00", "publish_state": "published" } } diff --git a/data/test-results/verible.json b/data/test-results/verible.json index bba0b1b932..479fae7364 100644 --- a/data/test-results/verible.json +++ b/data/test-results/verible.json @@ -5,10 +5,10 @@ "version": "v0.0-2950-g1bb4ef62" }, "run": { - "id": "25877435852", + "id": "26658737633", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251976", - "timestamp": "2026-05-14T18:19:18Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550174", + "timestamp": "2026-05-29T19:49:24Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check package-specific baseline markers", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251976#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550174#step:8:1" }, { "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251976#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550174#step:9:1" }, { "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251976#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550174#step:10:1" }, { "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251976#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550174#step:11:1" }, { "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251976#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550174#step:12:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251976#step:13:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550174#step:13:1", "current_version": "v0.0-2950-g1bb4ef62", "latest_version": "0.0-4053-g89d4d98a", "next_installed_version": "0.0-4053-g89d4d98a", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.456269+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.662194+00:00", "publish_state": "published" } } diff --git a/data/test-results/verilator.json b/data/test-results/verilator.json index fa3693cbea..d4801536b1 100644 --- a/data/test-results/verilator.json +++ b/data/test-results/verilator.json @@ -5,10 +5,10 @@ "version": "5.020" }, "run": { - "id": "25877435852", + "id": "26658737633", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251839", - "timestamp": "2026-05-14T18:19:19Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550124", + "timestamp": "2026-05-29T19:49:21Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 0, + "duration_seconds": 1, "details": [ { "name": "Test 1 - Check verilator binary", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251839#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550124#step:7:1" }, { "name": "Test 2 - Check verilator version command", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251839#step:8:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550124#step:8:1" }, { "name": "Test 3 - Check verilator help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251839#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550124#step:9:1" }, { "name": "Test 4 - Lint a minimal Verilog module", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251839#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550124#step:10:1" }, { "name": "Test 5 - Preprocess a minimal Verilog module", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251839#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550124#step:11:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251839#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550124#step:12:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.456446+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.662410+00:00", "publish_state": "published" } } diff --git a/data/test-results/veriloggen.json b/data/test-results/veriloggen.json index fc280d8055..63af7f49d2 100644 --- a/data/test-results/veriloggen.json +++ b/data/test-results/veriloggen.json @@ -5,10 +5,10 @@ "version": "0.4.1" }, "run": { - "id": "25877435852", + "id": "26658737633", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251819", - "timestamp": "2026-05-14T18:19:22Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549907", + "timestamp": "2026-05-29T19:49:27Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 23, + "duration_seconds": 25, "details": [ { "name": "Test 1 - Check package-specific baseline markers", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251819#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549907#step:9:1" }, { "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251819#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549907#step:10:1" }, { "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251819#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549907#step:11:1" }, { "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251819#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549907#step:12:1" }, { "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "duration_seconds": 10, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251819#step:13:1" + "duration_seconds": 12, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549907#step:13:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 13, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251819#step:14:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549907#step:14:1", "current_version": "0.4.1", "latest_version": "2.3.0", "next_installed_version": "2.3.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.456617+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.662596+00:00", "publish_state": "published" } } diff --git a/data/test-results/vespa-open-source.json b/data/test-results/vespa-open-source.json index 0bf38bd454..f995114428 100644 --- a/data/test-results/vespa-open-source.json +++ b/data/test-results/vespa-open-source.json @@ -5,10 +5,10 @@ "version": "8.640.27" }, "run": { - "id": "25877419588", + "id": "26658724696", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192670", - "timestamp": "2026-05-14T18:18:59Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503335", + "timestamp": "2026-05-29T19:49:01Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 30, + "duration_seconds": 17, "details": [ { "name": "Test 1 - Check Image Availability", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192670#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503335#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192670#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503335#step:7:1" }, { "name": "Test 3 - Check Help Output", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192670#step:8:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503335#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192670#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503335#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192670#step:10:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503335#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 29, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192670#step:11:1", + "duration_seconds": 16, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503335#step:11:1", "current_version": "8.640.27", "latest_version": "8.643.19", "next_installed_version": "8.643.19", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.456924+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.662867+00:00", "publish_state": "published" } } diff --git a/data/test-results/victoriametrics.json b/data/test-results/victoriametrics.json index 6f4c6c22b0..8d2c359f27 100644 --- a/data/test-results/victoriametrics.json +++ b/data/test-results/victoriametrics.json @@ -5,10 +5,10 @@ "version": "1.137.0" }, "run": { - "id": "25877379982", + "id": "26658688675", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057139", - "timestamp": "2026-05-14T18:18:05Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380643", + "timestamp": "2026-05-29T19:48:15Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057139#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380643#step:6:1" }, { "name": "Test 2 - Version Check", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057139#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380643#step:7:1" }, { "name": "Test 3 - Configuration Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057139#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380643#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057139#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380643#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057139#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380643#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057139#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380643#step:11:1", "current_version": "1.137.0", "latest_version": "1.138.0", "next_installed_version": "1.138.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.457111+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.663051+00:00", "publish_state": "published" } } diff --git a/data/test-results/videomass.json b/data/test-results/videomass.json index 5084aba08d..8966457bd0 100644 --- a/data/test-results/videomass.json +++ b/data/test-results/videomass.json @@ -5,10 +5,10 @@ "version": "1.4.4" }, "run": { - "id": "25877435852", + "id": "26658737633", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252087", - "timestamp": "2026-05-14T18:19:19Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550108", + "timestamp": "2026-05-29T19:49:20Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 6, + "duration_seconds": 5, "details": [ { "name": "Test 1 - Package installed", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252087#step:7:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550108#step:7:1" }, { "name": "Test 2 - Version metadata matches baseline", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252087#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550108#step:8:1" }, { "name": "Test 3 - Installed files metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252087#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550108#step:9:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252087#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550108#step:10:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252087#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550108#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 5, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252087#step:12:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550108#step:12:1", "current_version": "1.4.4", "latest_version": "1.4.5", "next_installed_version": "1.4.5", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.457290+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.663227+00:00", "publish_state": "published" } } diff --git a/data/test-results/vidgear.json b/data/test-results/vidgear.json index 1e19483309..9a6bc23e9c 100644 --- a/data/test-results/vidgear.json +++ b/data/test-results/vidgear.json @@ -5,10 +5,10 @@ "version": "0.1.0" }, "run": { - "id": "25877435852", + "id": "26658737633", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251842", - "timestamp": "2026-05-14T18:19:22Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550098", + "timestamp": "2026-05-29T19:49:29Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 14, + "duration_seconds": 13, "details": [ { "name": "Test 1 - Check package-specific baseline markers", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251842#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550098#step:9:1" }, { "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251842#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550098#step:10:1" }, { "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251842#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550098#step:11:1" }, { "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251842#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550098#step:12:1" }, { "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "duration_seconds": 11, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251842#step:13:1" + "duration_seconds": 10, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550098#step:13:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 14, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251842#step:14:1", + "duration_seconds": 13, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550098#step:14:1", "current_version": "0.1.0", "latest_version": "0.3.4", "next_installed_version": "0.3.4", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.457470+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.663445+00:00", "publish_state": "published" } } diff --git a/data/test-results/visualreview.json b/data/test-results/visualreview.json index 58c910d860..9755e408a1 100644 --- a/data/test-results/visualreview.json +++ b/data/test-results/visualreview.json @@ -5,10 +5,10 @@ "version": "0.1.4" }, "run": { - "id": "25877387746", + "id": "26658696365", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083707", - "timestamp": "2026-05-14T18:18:21Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407301", + "timestamp": "2026-05-29T19:48:29Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083707#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407301#step:7:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083707#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407301#step:8:1" }, { "name": "Test 3 - Check Help Output or Configuration", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083707#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407301#step:9:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083707#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407301#step:10:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 5, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083707#step:11:1" + "duration_seconds": 4, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407301#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 4, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048083707#step:12:1", + "duration_seconds": 5, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407301#step:12:1", "current_version": "0.1.4", "latest_version": "0.1.5", "next_installed_version": "0.1.5", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.457648+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.663628+00:00", "publish_state": "published" } } diff --git a/data/test-results/vitess.json b/data/test-results/vitess.json index 1152098ddf..bab0cef9f3 100644 --- a/data/test-results/vitess.json +++ b/data/test-results/vitess.json @@ -5,10 +5,10 @@ "version": "0.20.6" }, "run": { - "id": "25877399008", + "id": "26658707245", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125657", - "timestamp": "2026-05-14T18:18:34Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445982", + "timestamp": "2026-05-29T19:48:38Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 46, + "duration_seconds": 47, "details": [ { "name": "Test 1 - Check Vitess clients exist", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125657#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445982#step:6:1" }, { "name": "Test 2 - Check exact tag provenance", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125657#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445982#step:7:1" }, { "name": "Test 3 - Check vtctldclient help", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125657#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445982#step:8:1" }, { "name": "Test 4 - Architecture verification", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125657#step:9:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445982#step:9:1" }, { "name": "Test 5 - Functional validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125657#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445982#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 46, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125657#step:11:1", + "duration_seconds": 47, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445982#step:11:1", "current_version": "0.20.6", "latest_version": "20.0.7", "next_installed_version": "0.20.7", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.457845+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.663808+00:00", "publish_state": "published" } } diff --git a/data/test-results/vllm.json b/data/test-results/vllm.json index 5756d8da8f..c413954c5f 100644 --- a/data/test-results/vllm.json +++ b/data/test-results/vllm.json @@ -5,10 +5,10 @@ "version": "0.10.2" }, "run": { - "id": "25877379982", + "id": "26658688675", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057287", - "timestamp": "2026-05-14T18:18:06Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380466", + "timestamp": "2026-05-29T19:48:15Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 9, + "duration_seconds": 8, "details": [ { "name": "Test 1 - Check vLLM import", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057287#step:6:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380466#step:6:1" }, { "name": "Test 2 - Check exact version metadata", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057287#step:7:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380466#step:7:1" }, { "name": "Test 3 - Check wheel metadata is aarch64", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057287#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380466#step:8:1" }, { "name": "Test 4 - Architecture verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057287#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380466#step:9:1" }, { "name": "Test 5 - Functional validation", "status": "passed", - "duration_seconds": 7, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057287#step:10:1" + "duration_seconds": 6, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380466#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057287#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380466#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.458021+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.663980+00:00", "publish_state": "published" } } diff --git a/data/test-results/volcano.json b/data/test-results/volcano.json index fe7e76facb..e889f51fc8 100644 --- a/data/test-results/volcano.json +++ b/data/test-results/volcano.json @@ -5,10 +5,10 @@ "version": "v1.10.0" }, "run": { - "id": "25877359516", + "id": "26658670904", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991520", - "timestamp": "2026-05-14T18:17:44Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321690", + "timestamp": "2026-05-29T19:47:54Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 4, + "duration_seconds": 5, "details": [ { "name": "Test 1 - Check vcctl binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991520#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321690#step:6:1" }, { "name": "Test 2 - Check repository contains vcctl sources", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991520#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321690#step:7:1" }, { "name": "Test 3 - Check vcctl help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991520#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321690#step:8:1" }, { "name": "Test 4 - Architecture verification", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991520#step:9:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321690#step:9:1" }, { "name": "Test 5 - Functional validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991520#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321690#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 4, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877359516/job/76047991520#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658670904/job/78575321690#step:11:1", "current_version": "v1.10.0", "latest_version": "v1.10.1", "next_installed_version": "v1.10.1", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.458193+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.664151+00:00", "publish_state": "published" } } diff --git a/data/test-results/vpp.json b/data/test-results/vpp.json index 8ead6024bf..d999cbf81f 100644 --- a/data/test-results/vpp.json +++ b/data/test-results/vpp.json @@ -5,10 +5,10 @@ "version": "26.02-release" }, "run": { - "id": "25877379982", + "id": "26658688675", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057180", - "timestamp": "2026-05-14T18:18:05Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380891", + "timestamp": "2026-05-29T19:48:15Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check VPP binaries exist", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057180#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380891#step:6:1" }, { "name": "Test 2 - Check exact version output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057180#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380891#step:7:1" }, { "name": "Test 3 - Check CLI help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057180#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380891#step:8:1" }, { "name": "Test 4 - Architecture verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057180#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380891#step:9:1" }, { "name": "Test 5 - Functional validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057180#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380891#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057180#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380891#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.458369+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.664363+00:00", "publish_state": "published" } } diff --git a/data/test-results/vscode.json b/data/test-results/vscode.json index 03046621bc..ce3d460f33 100644 --- a/data/test-results/vscode.json +++ b/data/test-results/vscode.json @@ -2,13 +2,13 @@ "schema_version": "2.0", "package": { "name": "Visual Studio Code (VSCode)", - "version": "1.120.0" + "version": "1.122.1" }, "run": { - "id": "25877399008", + "id": "26658707245", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125815", - "timestamp": "2026-05-14T18:18:32Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445476", + "timestamp": "2026-05-29T19:48:39Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 1, + "duration_seconds": 0, "details": [ { "name": "Test 1 - Check Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125815#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445476#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125815#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445476#step:7:1" }, { "name": "Test 3 - Check Help Output or Configuration", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125815#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445476#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125815#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445476#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125815#step:10:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445476#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125815#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575445476#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.458541+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.664553+00:00", "publish_state": "published" } } diff --git a/data/test-results/vsftpd.json b/data/test-results/vsftpd.json index 969da52404..2e8dbcb9d1 100644 --- a/data/test-results/vsftpd.json +++ b/data/test-results/vsftpd.json @@ -5,10 +5,10 @@ "version": "3.0.5-0ubuntu3.1" }, "run": { - "id": "25877383844", + "id": "26658692522", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071445", - "timestamp": "2026-05-14T18:18:12Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394964", + "timestamp": "2026-05-29T19:48:20Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071445#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394964#step:6:1" }, { "name": "Test 2 - Package Version Check", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071445#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394964#step:7:1" }, { "name": "Test 3 - Configuration Startup Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071445#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394964#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071445#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394964#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071445#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394964#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071445#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394964#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.458718+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.664734+00:00", "publish_state": "published" } } diff --git a/data/test-results/vtk.json b/data/test-results/vtk.json index d91f5d1a29..d56a84f4f9 100644 --- a/data/test-results/vtk.json +++ b/data/test-results/vtk.json @@ -5,10 +5,10 @@ "version": "9.1.0" }, "run": { - "id": "25877371674", + "id": "26658681575", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031075", - "timestamp": "2026-05-14T18:17:58Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357249", + "timestamp": "2026-05-29T19:48:09Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 1, + "duration_seconds": 0, "details": [ { "name": "Test 1 - Check VTK runtime availability", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031075#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357249#step:6:1" }, { "name": "Test 2 - Check VTK version output", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031075#step:7:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357249#step:7:1" }, { "name": "Test 3 - Check VTK Python API help", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031075#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357249#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031075#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357249#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031075#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357249#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031075#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575357249#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.458922+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.664911+00:00", "publish_state": "published" } } diff --git a/data/test-results/vue.json b/data/test-results/vue.json index cf1906a24c..b21c7cb1f6 100644 --- a/data/test-results/vue.json +++ b/data/test-results/vue.json @@ -5,10 +5,10 @@ "version": "5.0.9" }, "run": { - "id": "25877423406", + "id": "26658727918", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210371", - "timestamp": "2026-05-14T18:19:12Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516329", + "timestamp": "2026-05-29T19:49:09Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 35, + "duration_seconds": 29, "details": [ { "name": "Test 1 - Check vue binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210371#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516329#step:6:1" }, { "name": "Test 2 - Check vue version command", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210371#step:7:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516329#step:7:1" }, { "name": "Test 3 - Check vue help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210371#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516329#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210371#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516329#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 35, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210371#step:10:1" + "duration_seconds": 28, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516329#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210371#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516329#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.459096+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.665086+00:00", "publish_state": "published" } } diff --git a/data/test-results/vvdec.json b/data/test-results/vvdec.json index bf3784d580..c7350be2a4 100644 --- a/data/test-results/vvdec.json +++ b/data/test-results/vvdec.json @@ -5,10 +5,10 @@ "version": "3.0.0" }, "run": { - "id": "25877423406", + "id": "26658727918", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209991", - "timestamp": "2026-05-14T18:19:09Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515990", + "timestamp": "2026-05-29T19:49:05Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209991#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515990#step:6:1" }, { "name": "Test 2 - Version Check", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209991#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515990#step:7:1" }, { "name": "Test 3 - Help Output Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209991#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515990#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209991#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515990#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209991#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515990#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 32, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048209991#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575515990#step:11:1", "current_version": "3.0.0", "latest_version": "3.1.0", "next_installed_version": "3.1.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.459269+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.665285+00:00", "publish_state": "published" } } diff --git a/data/test-results/warp.json b/data/test-results/warp.json index d63eaeea40..e0c974cd61 100644 --- a/data/test-results/warp.json +++ b/data/test-results/warp.json @@ -5,10 +5,10 @@ "version": "1.0.0-beta.6" }, "run": { - "id": "25877435852", + "id": "26658737633", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251941", - "timestamp": "2026-05-14T18:19:16Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549955", + "timestamp": "2026-05-29T19:49:20Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 21, + "duration_seconds": 22, "details": [ { "name": "Test 1 - Check package-specific baseline markers", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251941#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549955#step:8:1" }, { "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251941#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549955#step:9:1" }, { "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251941#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549955#step:10:1" }, { "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251941#step:11:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549955#step:11:1" }, { "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", - "duration_seconds": 11, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251941#step:12:1" + "duration_seconds": 12, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549955#step:12:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 10, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251941#step:13:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575549955#step:13:1", "current_version": "1.0.0-beta.6", "latest_version": "1.12.1", "next_installed_version": "1.12.1", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.459441+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.665482+00:00", "publish_state": "published" } } diff --git a/data/test-results/wasmtime.json b/data/test-results/wasmtime.json index 0afe73b186..5ece484a33 100644 --- a/data/test-results/wasmtime.json +++ b/data/test-results/wasmtime.json @@ -5,10 +5,10 @@ "version": "31.0.0" }, "run": { - "id": "25877419588", + "id": "26658724696", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192294", - "timestamp": "2026-05-14T18:19:02Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503991", + "timestamp": "2026-05-29T19:49:02Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check wasmtime binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192294#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503991#step:6:1" }, { "name": "Test 2 - Check wasmtime version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192294#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503991#step:7:1" }, { "name": "Test 3 - Check wasmtime help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192294#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503991#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192294#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503991#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192294#step:10:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503991#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192294#step:11:1", + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503991#step:11:1", "current_version": "31.0.0", "latest_version": "32.0.0", "next_installed_version": "32.0.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.459613+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.665666+00:00", "publish_state": "published" } } diff --git a/data/test-results/wave.json b/data/test-results/wave.json index f34e67ff12..8bcb7f1945 100644 --- a/data/test-results/wave.json +++ b/data/test-results/wave.json @@ -5,10 +5,10 @@ "version": "1.16.0" }, "run": { - "id": "25877375677", + "id": "26658685142", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045280", - "timestamp": "2026-05-14T18:18:02Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370677", + "timestamp": "2026-05-29T19:48:11Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 65, + "duration_seconds": 64, "details": [ { "name": "Test 1 - Check source tree and Gradle wrapper", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045280#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370677#step:7:1" }, { "name": "Test 2 - Check exact version file", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045280#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370677#step:8:1" }, { "name": "Test 3 - Check build info metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045280#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370677#step:9:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045280#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370677#step:10:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 9, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045280#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370677#step:11:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 56, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048045280#step:12:1", + "duration_seconds": 55, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575370677#step:12:1", "current_version": "1.16.0", "latest_version": "1.16.1", "next_installed_version": "1.16.1", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.459807+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.665852+00:00", "publish_state": "published" } } diff --git a/data/test-results/weavenet.json b/data/test-results/weavenet.json index 1b7f304c3e..4bb0aff0ab 100644 --- a/data/test-results/weavenet.json +++ b/data/test-results/weavenet.json @@ -5,10 +5,10 @@ "version": "2.8.0" }, "run": { - "id": "25877403044", + "id": "26658710721", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140819", - "timestamp": "2026-05-14T18:18:38Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456370", + "timestamp": "2026-05-29T19:48:43Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check weave script exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140819#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456370#step:6:1" }, { "name": "Test 2 - Check exact version output", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140819#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456370#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140819#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456370#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140819#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456370#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140819#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456370#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140819#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456370#step:11:1", "current_version": "2.8.0", "latest_version": "2.8.1", "next_installed_version": "2.8.1", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.459988+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.666028+00:00", "publish_state": "published" } } diff --git a/data/test-results/weaviate.json b/data/test-results/weaviate.json index 8e945891fc..c61f23569f 100644 --- a/data/test-results/weaviate.json +++ b/data/test-results/weaviate.json @@ -5,10 +5,10 @@ "version": "1.28.4" }, "run": { - "id": "25877403044", + "id": "26658710721", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140565", - "timestamp": "2026-05-14T18:18:39Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456101", + "timestamp": "2026-05-29T19:48:44Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 9, + "duration_seconds": 8, "details": [ { "name": "Test 1 - Check Weaviate image exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140565#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456101#step:6:1" }, { "name": "Test 2 - Check version endpoint", "status": "passed", - "duration_seconds": 4, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140565#step:7:1" + "duration_seconds": 3, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456101#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140565#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456101#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140565#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456101#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 4, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140565#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456101#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140565#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456101#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.460173+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.666197+00:00", "publish_state": "published" } } diff --git a/data/test-results/wget.json b/data/test-results/wget.json index aefe8bd63a..ed095ed5a3 100644 --- a/data/test-results/wget.json +++ b/data/test-results/wget.json @@ -5,10 +5,10 @@ "version": "1.24.5" }, "run": { - "id": "25877363365", + "id": "26658674448", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000919", - "timestamp": "2026-05-14T18:17:48Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334974", + "timestamp": "2026-05-29T19:47:56Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Wget binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000919#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334974#step:6:1" }, { "name": "Test 2 - Check version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000919#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334974#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000919#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334974#step:8:1" }, { "name": "Test 4 - Architecture verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000919#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334974#step:9:1" }, { "name": "Test 5 - Functional validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000919#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334974#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 34, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000919#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334974#step:11:1", "current_version": "1.24.5", "latest_version": "1.25.0", "next_installed_version": "1.25.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.460341+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.666412+00:00", "publish_state": "published" } } diff --git a/data/test-results/whisper.json b/data/test-results/whisper.json index 9b15b1d94e..965b87e0d1 100644 --- a/data/test-results/whisper.json +++ b/data/test-results/whisper.json @@ -5,10 +5,10 @@ "version": "20250625" }, "run": { - "id": "25877411197", + "id": "26658717942", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175217", - "timestamp": "2026-05-14T18:18:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479473", + "timestamp": "2026-05-29T19:48:51Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 4, + "duration_seconds": 5, "details": [ { "name": "Test 1 - Check whisper CLI exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175217#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479473#step:6:1" }, { "name": "Test 2 - Check package version via import", "status": "passed", "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175217#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479473#step:7:1" }, { "name": "Test 3 - Check whisper help output", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175217#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479473#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175217#step:9:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479473#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175217#step:10:1" + "duration_seconds": 2, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479473#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175217#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479473#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.460498+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.666594+00:00", "publish_state": "published" } } diff --git a/data/test-results/wildfly.json b/data/test-results/wildfly.json index 12def16e7a..0000e7f342 100644 --- a/data/test-results/wildfly.json +++ b/data/test-results/wildfly.json @@ -5,10 +5,10 @@ "version": "35.0.0.Final" }, "run": { - "id": "25877383844", + "id": "26658692522", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071707", - "timestamp": "2026-05-14T18:18:13Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394976", + "timestamp": "2026-05-29T19:48:19Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 16, + "duration_seconds": 17, "details": [ { "name": "Test 1 - Check Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071707#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394976#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071707#step:7:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394976#step:7:1" }, { "name": "Test 3 - Check Help Output", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071707#step:8:1" + "duration_seconds": 3, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394976#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071707#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394976#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 4, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071707#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394976#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 9, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071707#step:11:1", + "duration_seconds": 10, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394976#step:11:1", "current_version": "35.0.0.Final", "latest_version": "35.0.1.Final", "next_installed_version": "35.0.1.Final", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.460660+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.666764+00:00", "publish_state": "published" } } diff --git a/data/test-results/wireshark.json b/data/test-results/wireshark.json index 5619ba2a70..1169996ad7 100644 --- a/data/test-results/wireshark.json +++ b/data/test-results/wireshark.json @@ -2,13 +2,13 @@ "schema_version": "2.0", "package": { "name": "Wireshark", - "version": "4.6.3" + "version": "4.6.6" }, "run": { - "id": "25877419588", + "id": "26658724696", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192362", - "timestamp": "2026-05-14T18:18:55Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504055", + "timestamp": "2026-05-29T19:49:02Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,49 +20,49 @@ "passed": 5, "failed": 0, "skipped": 1, - "duration_seconds": 0, + "duration_seconds": 1, "details": [ { "name": "Test 1 - Check tshark binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192362#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504055#step:6:1" }, { "name": "Test 2 - Check exact version output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192362#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504055#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192362#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504055#step:8:1" }, { "name": "Test 4 - Architecture verification", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192362#step:9:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504055#step:9:1" }, { "name": "Test 5 - Functional validation", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192362#step:10:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504055#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "skipped", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192362#step:11:1", - "current_version": "4.6.3", - "latest_version": "4.6.3", - "next_installed_version": "4.6.3", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504055#step:11:1", + "current_version": "4.6.6", + "latest_version": "4.6.6", + "next_installed_version": "4.6.6", "decision": "no_newer_stable_available", "regression_result": "No newer stable Wireshark release is available for Arm64 validation", - "comparison": "Wireshark 4.6.3 is both the pinned Arm64 source baseline and the newest stable public Wireshark source release currently published, so there is no newer stable source tarball to validate in Test 6 yet." + "comparison": "Wireshark 4.6.6 is both the pinned Arm64 source baseline and the newest stable public Wireshark source release currently published, so there is no newer stable source tarball to validate in Test 6 yet." } ] }, @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "skipped", "regression_decision": "no_newer_stable_available", - "production_refreshed_at": "2026-05-14T19:37:17.460877+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.666953+00:00", "publish_state": "published" } } diff --git a/data/test-results/woocommerce.json b/data/test-results/woocommerce.json index ed561d28d2..8f564c060b 100644 --- a/data/test-results/woocommerce.json +++ b/data/test-results/woocommerce.json @@ -5,10 +5,10 @@ "version": "9.5.1" }, "run": { - "id": "25877411197", + "id": "26658717942", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175287", - "timestamp": "2026-05-14T18:18:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479664", + "timestamp": "2026-05-29T19:48:51Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Plugin File Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175287#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479664#step:6:1" }, { "name": "Test 2 - Exact Version Check", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175287#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479664#step:7:1" }, { "name": "Test 3 - PHP Lint And Plugin Metadata Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175287#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479664#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175287#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479664#step:9:1" }, { "name": "Test 5 - WordPress And Plugin Smoke", "status": "passed", "duration_seconds": 3, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175287#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479664#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 4, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877411197/job/76048175287#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658717942/job/78575479664#step:11:1", "current_version": "9.5.1", "latest_version": "9.5.2", "next_installed_version": "9.5.2", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.461197+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.667290+00:00", "publish_state": "published" } } diff --git a/data/test-results/wordpress.json b/data/test-results/wordpress.json index e59aa0c5e1..451dca22f1 100644 --- a/data/test-results/wordpress.json +++ b/data/test-results/wordpress.json @@ -5,10 +5,10 @@ "version": "6.8" }, "run": { - "id": "25877406767", + "id": "26658714432", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155435", - "timestamp": "2026-05-14T18:18:45Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469229", + "timestamp": "2026-05-29T19:48:49Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,43 +26,43 @@ "name": "Test 1 - Check Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155435#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469229#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155435#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469229#step:7:1" }, { "name": "Test 3 - Check Help Output or Configuration", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155435#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469229#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155435#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469229#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155435#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469229#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 4, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155435#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469229#step:11:1", "current_version": "6.8", - "latest_version": "6.9.4", - "next_installed_version": "6.9.4", + "latest_version": "7.0", + "next_installed_version": "7.0", "decision": "next_install_validated", "regression_result": "Next version installed successfully on Arm64", - "comparison": "Current pinned WordPress version 6.8 passed source tarball validation in this run, and candidate release 6.9.4 also passed PHP lint plus installer-page smoke on Arm64 from a fresh isolated install." + "comparison": "Current pinned WordPress version 6.8 passed source tarball validation in this run, and candidate release 7.0 also passed PHP lint plus installer-page smoke on Arm64 from a fresh isolated install." } ] }, @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.461394+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.667487+00:00", "publish_state": "published" } } diff --git a/data/test-results/wrf.json b/data/test-results/wrf.json index b8219c2f31..b9d1584b2a 100644 --- a/data/test-results/wrf.json +++ b/data/test-results/wrf.json @@ -5,10 +5,10 @@ "version": "4.7.0" }, "run": { - "id": "25877419588", + "id": "26658724696", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192602", - "timestamp": "2026-05-14T18:19:01Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504012", + "timestamp": "2026-05-29T19:49:01Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 616, + "duration_seconds": 634, "details": [ { "name": "Test 1 - Check wrf binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192602#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504012#step:6:1" }, { "name": "Test 2 - Check wrf version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192602#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504012#step:7:1" }, { "name": "Test 3 - Check WRF case assets", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192602#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504012#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192602#step:9:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504012#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192602#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504012#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 616, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192602#step:11:1", + "duration_seconds": 633, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504012#step:11:1", "current_version": "4.7.0", "latest_version": "4.7.1", "next_installed_version": "4.7.1", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.461583+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.667671+00:00", "publish_state": "published" } } diff --git a/data/test-results/wrk.json b/data/test-results/wrk.json index e0fbc08428..465b1647b0 100644 --- a/data/test-results/wrk.json +++ b/data/test-results/wrk.json @@ -5,10 +5,10 @@ "version": "4.1.0" }, "run": { - "id": "25877367704", + "id": "26658677990", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027113", - "timestamp": "2026-05-14T18:17:55Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347318", + "timestamp": "2026-05-29T19:48:02Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 10, + "duration_seconds": 9, "details": [ { "name": "Test 1 - Check wrk binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027113#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347318#step:6:1" }, { "name": "Test 2 - Check repository contents", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027113#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347318#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027113#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347318#step:8:1" }, { "name": "Test 4 - Architecture verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027113#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347318#step:9:1" }, { "name": "Test 5 - Functional validation", "status": "passed", "duration_seconds": 4, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027113#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347318#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 6, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877367704/job/76048027113#step:11:1", + "duration_seconds": 5, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658677990/job/78575347318#step:11:1", "current_version": "4.1.0", "latest_version": "4.2.0", "next_installed_version": "4.2.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.461852+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.667848+00:00", "publish_state": "published" } } diff --git a/data/test-results/wsl.json b/data/test-results/wsl.json index 3014d59ca4..9b28610cf3 100644 --- a/data/test-results/wsl.json +++ b/data/test-results/wsl.json @@ -5,10 +5,10 @@ "version": "2.0.0" }, "run": { - "id": "25877435852", + "id": "26658737633", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251963", - "timestamp": "2026-05-14T18:19:16Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550266", + "timestamp": "2026-05-29T19:49:20Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check package-specific baseline markers", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251963#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550266#step:8:1" }, { "name": "Test 2 - Check package-specific version and release evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251963#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550266#step:9:1" }, { "name": "Test 3 - Check package-specific docs and entrypoints", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251963#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550266#step:10:1" }, { "name": "Test 4 - Verify Arm64 runner and lane assumptions", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251963#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550266#step:11:1" }, { "name": "Test 5 - Run bounded package-specific smoke", "status": "passed", "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251963#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550266#step:12:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 4, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251963#step:13:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550266#step:13:1", "current_version": "2.0.0", "latest_version": "2.7.3", "next_installed_version": "2.7.3", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "limited_cpu_smoke_validated", - "production_refreshed_at": "2026-05-14T19:37:17.462077+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.668020+00:00", "publish_state": "published" } } diff --git a/data/test-results/xalan.json b/data/test-results/xalan.json index 13815a90b3..e566ee3a13 100644 --- a/data/test-results/xalan.json +++ b/data/test-results/xalan.json @@ -5,10 +5,10 @@ "version": "1.12.0" }, "run": { - "id": "25877392111", + "id": "26658699892", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096490", - "timestamp": "2026-05-14T18:18:23Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421038", + "timestamp": "2026-05-29T19:48:30Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096490#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421038#step:6:1" }, { "name": "Test 2 - Version Check", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096490#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421038#step:7:1" }, { "name": "Test 3 - Help Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096490#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421038#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096490#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421038#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096490#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421038#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877392111/job/76048096490#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658699892/job/78575421038#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.462311+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.668199+00:00", "publish_state": "published" } } diff --git a/data/test-results/xebium.json b/data/test-results/xebium.json index 6131c2c81f..ac1a23e4c8 100644 --- a/data/test-results/xebium.json +++ b/data/test-results/xebium.json @@ -5,10 +5,10 @@ "version": "0.6" }, "run": { - "id": "25877419588", + "id": "26658724696", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192516", - "timestamp": "2026-05-14T18:19:00Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504200", + "timestamp": "2026-05-29T19:49:02Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 32, + "duration_seconds": 30, "details": [ { "name": "Test 1 - Check Xebium jar artifacts exist", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192516#step:6:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504200#step:6:1" }, { "name": "Test 2 - Check exact version metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192516#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504200#step:7:1" }, { "name": "Test 3 - Check built classes are present", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192516#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504200#step:8:1" }, { "name": "Test 4 - Architecture verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192516#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504200#step:9:1" }, { "name": "Test 5 - Functional artifact validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192516#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504200#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 31, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192516#step:11:1", + "duration_seconds": 29, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575504200#step:11:1", "current_version": "0.6", "latest_version": "0.14", "next_installed_version": "0.14", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.462542+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.668411+00:00", "publish_state": "published" } } diff --git a/data/test-results/xen_ci.json b/data/test-results/xen_ci.json index 37d3845687..63b91cae2b 100644 --- a/data/test-results/xen_ci.json +++ b/data/test-results/xen_ci.json @@ -5,10 +5,10 @@ "version": "4.3.0" }, "run": { - "id": "25877399008", + "id": "26658707245", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125307", - "timestamp": "2026-05-14T18:18:32Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575444495", + "timestamp": "2026-05-29T19:48:38Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 2, + "duration_seconds": 1, "details": [ { "name": "Test 1 - Check baseline source tree", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125307#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575444495#step:6:1" }, { "name": "Test 2 - Check release tag version", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125307#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575444495#step:7:1" }, { "name": "Test 3 - Check configure help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125307#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575444495#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125307#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575444495#step:9:1" }, { "name": "Test 5 - Functional source validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125307#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575444495#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877399008/job/76048125307#step:11:1", + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658707245/job/78575444495#step:11:1", "current_version": "4.3.0", "latest_version": "4.4.0", "next_installed_version": "4.4.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.462784+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.680154+00:00", "publish_state": "published" } } diff --git a/data/test-results/xerces.json b/data/test-results/xerces.json index 29e6f1d841..11954a197c 100644 --- a/data/test-results/xerces.json +++ b/data/test-results/xerces.json @@ -5,10 +5,10 @@ "version": "3.2.4" }, "run": { - "id": "25877371674", + "id": "26658681575", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031857", - "timestamp": "2026-05-14T18:17:59Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358443", + "timestamp": "2026-05-29T19:48:07Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Header Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031857#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358443#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031857#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358443#step:7:1" }, { "name": "Test 3 - Check Configuration or Linkage", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031857#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358443#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031857#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358443#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031857#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358443#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031857#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358443#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.463007+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.680411+00:00", "publish_state": "published" } } diff --git a/data/test-results/xgboost.json b/data/test-results/xgboost.json index 51a4ba66e9..c54eb21e88 100644 --- a/data/test-results/xgboost.json +++ b/data/test-results/xgboost.json @@ -5,10 +5,10 @@ "version": "1.6.2" }, "run": { - "id": "25877387746", + "id": "26658696365", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084830", - "timestamp": "2026-05-14T18:18:16Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407780", + "timestamp": "2026-05-29T19:48:24Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -25,38 +25,38 @@ { "name": "Test 1 - Module import validation", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084830#step:6:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407780#step:6:1" }, { "name": "Test 2 - Exact version check", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084830#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407780#step:7:1" }, { "name": "Test 3 - API surface validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084830#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407780#step:8:1" }, { "name": "Test 4 - Architecture verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084830#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407780#step:9:1" }, { "name": "Test 5 - Functional training smoke", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084830#step:10:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407780#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877387746/job/76048084830#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658696365/job/78575407780#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.463241+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.680604+00:00", "publish_state": "published" } } diff --git a/data/test-results/xml2.json b/data/test-results/xml2.json index 4497b18f33..c66abdc289 100644 --- a/data/test-results/xml2.json +++ b/data/test-results/xml2.json @@ -5,10 +5,10 @@ "version": "1.3.6" }, "run": { - "id": "25877423406", + "id": "26658727918", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210225", - "timestamp": "2026-05-14T18:19:11Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516303", + "timestamp": "2026-05-29T19:49:08Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 1, + "duration_seconds": 0, "details": [ { "name": "Test 1 - Package Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210225#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516303#step:6:1" }, { "name": "Test 2 - Exact Version Check", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210225#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516303#step:7:1" }, { "name": "Test 3 - Help Output", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210225#step:8:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516303#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210225#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516303#step:9:1" }, { "name": "Test 5 - Functional XML And HTML Smoke", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210225#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516303#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877423406/job/76048210225#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658727918/job/78575516303#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.463474+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.680796+00:00", "publish_state": "published" } } diff --git a/data/test-results/xmlsec.json b/data/test-results/xmlsec.json index d0479fe6cd..8a788042be 100644 --- a/data/test-results/xmlsec.json +++ b/data/test-results/xmlsec.json @@ -5,10 +5,10 @@ "version": "1.2.39" }, "run": { - "id": "25877419588", + "id": "26658724696", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192463", - "timestamp": "2026-05-14T18:18:58Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503998", + "timestamp": "2026-05-29T19:49:01Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check xmlsec1 binary exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192463#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503998#step:6:1" }, { "name": "Test 2 - Check version metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192463#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503998#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192463#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503998#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192463#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503998#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192463#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503998#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192463#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503998#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.463693+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.680967+00:00", "publish_state": "published" } } diff --git a/data/test-results/xpra.json b/data/test-results/xpra.json index 7a66627c0d..a566740ce6 100644 --- a/data/test-results/xpra.json +++ b/data/test-results/xpra.json @@ -5,10 +5,10 @@ "version": "3.1.5+dfsg1-0.2ubuntu1" }, "run": { - "id": "25877435852", + "id": "26658737633", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252069", - "timestamp": "2026-05-14T18:19:18Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550094", + "timestamp": "2026-05-29T19:49:21Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 0, + "duration_seconds": 1, "details": [ { "name": "Test 1 - Package-manager install evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252069#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550094#step:6:1" }, { "name": "Test 2 - Installed Arm64 package metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252069#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550094#step:7:1" }, { "name": "Test 3 - CLI version starts on Arm", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252069#step:8:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550094#step:8:1" }, { "name": "Test 4 - Arm64 runner gate", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252069#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550094#step:9:1" }, { "name": "Test 5 - Headless runtime smoke", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252069#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550094#step:10:1" }, { "name": "Test 6 - Regression validation applicability", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048252069#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550094#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.463923+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.681155+00:00", "publish_state": "published" } } diff --git a/data/test-results/xschem.json b/data/test-results/xschem.json index 46cbaba9a2..3cf0dfe09c 100644 --- a/data/test-results/xschem.json +++ b/data/test-results/xschem.json @@ -5,10 +5,10 @@ "version": "3.4.4-1" }, "run": { - "id": "25877435852", + "id": "26658737633", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251785", - "timestamp": "2026-05-14T18:19:15Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550119", + "timestamp": "2026-05-29T19:49:21Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Package-manager install evidence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251785#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550119#step:6:1" }, { "name": "Test 2 - Installed Arm64 package metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251785#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550119#step:7:1" }, { "name": "Test 3 - CLI version starts on Arm", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251785#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550119#step:8:1" }, { "name": "Test 4 - Arm64 runner gate", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251785#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550119#step:9:1" }, { "name": "Test 5 - Headless runtime smoke", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251785#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550119#step:10:1" }, { "name": "Test 6 - Regression validation applicability", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251785#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550119#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.464154+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.681352+00:00", "publish_state": "published" } } diff --git a/data/test-results/xtrabackup.json b/data/test-results/xtrabackup.json index 51f04e1a76..8a81456c23 100644 --- a/data/test-results/xtrabackup.json +++ b/data/test-results/xtrabackup.json @@ -5,10 +5,10 @@ "version": "8.0.35-33" }, "run": { - "id": "25877363365", + "id": "26658674448", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000050", - "timestamp": "2026-05-14T18:17:49Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333729", + "timestamp": "2026-05-29T19:47:56Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 1, + "duration_seconds": 0, "details": [ { "name": "Test 1 - Binary existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000050#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333729#step:6:1" }, { "name": "Test 2 - Exact version check", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000050#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333729#step:7:1" }, { "name": "Test 3 - Help output validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000050#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333729#step:8:1" }, { "name": "Test 4 - Architecture verification", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000050#step:9:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333729#step:9:1" }, { "name": "Test 5 - Print-defaults functional smoke", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000050#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333729#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000050#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333729#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.464381+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.681528+00:00", "publish_state": "published" } } diff --git a/data/test-results/xxhash.json b/data/test-results/xxhash.json index af8c28d08e..cb57207ac0 100644 --- a/data/test-results/xxhash.json +++ b/data/test-results/xxhash.json @@ -5,10 +5,10 @@ "version": "3.7.0" }, "run": { - "id": "25877375677", + "id": "26658685142", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043629", - "timestamp": "2026-05-14T18:18:02Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369848", + "timestamp": "2026-05-29T19:48:11Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Module Import", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043629#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369848#step:6:1" }, { "name": "Test 2 - One-shot hash APIs", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043629#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369848#step:7:1" }, { "name": "Test 3 - Streaming hash update", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043629#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369848#step:8:1" }, { "name": "Test 4 - Hash object copy preserves state", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043629#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369848#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043629#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369848#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877375677/job/76048043629#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658685142/job/78575369848#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.464588+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.681697+00:00", "publish_state": "published" } } diff --git a/data/test-results/xxljob.json b/data/test-results/xxljob.json index e401e7da93..54721eab30 100644 --- a/data/test-results/xxljob.json +++ b/data/test-results/xxljob.json @@ -5,10 +5,10 @@ "version": "3.2.0" }, "run": { - "id": "25877406767", + "id": "26658714432", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155361", - "timestamp": "2026-05-14T18:18:42Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469331", + "timestamp": "2026-05-29T19:48:50Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 21, + "duration_seconds": 22, "details": [ { "name": "Test 1 - Check admin jar exists", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155361#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469331#step:6:1" }, { "name": "Test 2 - Check exact version provenance", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155361#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469331#step:7:1" }, { "name": "Test 3 - Check layer listing output", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155361#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469331#step:8:1" }, { "name": "Test 4 - Architecture verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155361#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469331#step:9:1" }, { "name": "Test 5 - Functional jar validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155361#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469331#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 20, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155361#step:11:1", + "duration_seconds": 21, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469331#step:11:1", "current_version": "3.2.0", "latest_version": "3.3.0", "next_installed_version": "3.3.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.464834+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.681865+00:00", "publish_state": "published" } } diff --git a/data/test-results/yarn.json b/data/test-results/yarn.json index 1f6a8270d3..32dc79eb55 100644 --- a/data/test-results/yarn.json +++ b/data/test-results/yarn.json @@ -5,10 +5,10 @@ "version": "4.9.0" }, "run": { - "id": "25877371674", + "id": "26658681575", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031741", - "timestamp": "2026-05-14T18:18:03Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358026", + "timestamp": "2026-05-29T19:48:10Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Launcher availability", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031741#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358026#step:7:1" }, { "name": "Test 2 - Exact version check", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031741#step:8:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358026#step:8:1" }, { "name": "Test 3 - Help output validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031741#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358026#step:9:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031741#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358026#step:10:1" }, { "name": "Test 5 - Functional validation", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031741#step:11:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358026#step:11:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877371674/job/76048031741#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658681575/job/78575358026#step:12:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.465048+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.682036+00:00", "publish_state": "published" } } diff --git a/data/test-results/ycsb.json b/data/test-results/ycsb.json index 209836b61a..96dee7a3eb 100644 --- a/data/test-results/ycsb.json +++ b/data/test-results/ycsb.json @@ -5,10 +5,10 @@ "version": "0.15.0" }, "run": { - "id": "25877419588", + "id": "26658724696", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192610", - "timestamp": "2026-05-14T18:19:09Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503956", + "timestamp": "2026-05-29T19:49:03Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 17, + "duration_seconds": 20, "details": [ { "name": "Test 1 - Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192610#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503956#step:6:1" }, { "name": "Test 2 - Version Check", "status": "passed", - "duration_seconds": 5, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192610#step:7:1" + "duration_seconds": 4, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503956#step:7:1" }, { "name": "Test 3 - Help Output Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192610#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503956#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192610#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503956#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192610#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503956#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 15, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877419588/job/76048192610#step:11:1", + "duration_seconds": 18, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658724696/job/78575503956#step:11:1", "current_version": "0.15.0", "latest_version": "0.16.0", "next_installed_version": "0.16.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.465253+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.682195+00:00", "publish_state": "published" } } diff --git a/data/test-results/ydata-profiling.json b/data/test-results/ydata-profiling.json index 197adf667c..0a09622375 100644 --- a/data/test-results/ydata-profiling.json +++ b/data/test-results/ydata-profiling.json @@ -5,10 +5,10 @@ "version": "4.18.4" }, "run": { - "id": "25877363365", + "id": "26658674448", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000158", - "timestamp": "2026-05-14T18:17:48Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333839", + "timestamp": "2026-05-29T19:47:56Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 14, + "duration_seconds": 10, "details": [ { "name": "Test 1 - Check ydata-profiling import", "status": "passed", - "duration_seconds": 6, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000158#step:6:1" + "duration_seconds": 3, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333839#step:6:1" }, { "name": "Test 2 - Check version via python", "status": "passed", - "duration_seconds": 4, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000158#step:7:1" + "duration_seconds": 3, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333839#step:7:1" }, { "name": "Test 3 - Check help output", "status": "passed", "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000158#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333839#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000158#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333839#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 2, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000158#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333839#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048000158#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575333839#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.465455+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.682403+00:00", "publish_state": "published" } } diff --git a/data/test-results/yosys.json b/data/test-results/yosys.json index 85317b005c..0a828ee8f5 100644 --- a/data/test-results/yosys.json +++ b/data/test-results/yosys.json @@ -5,10 +5,10 @@ "version": "0.33" }, "run": { - "id": "25877435852", + "id": "26658737633", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251753", - "timestamp": "2026-05-14T18:19:16Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550024", + "timestamp": "2026-05-29T19:49:21Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check yosys binary", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251753#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550024#step:7:1" }, { "name": "Test 2 - Check yosys version command", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251753#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550024#step:8:1" }, { "name": "Test 3 - Check yosys help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251753#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550024#step:9:1" }, { "name": "Test 4 - Check read_verilog command help", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251753#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550024#step:10:1" }, { "name": "Test 5 - Synthesize a minimal Verilog module", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251753#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550024#step:11:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877435852/job/76048251753#step:12:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658737633/job/78575550024#step:12:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.465634+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.682571+00:00", "publish_state": "published" } } diff --git a/data/test-results/yugabytedb.json b/data/test-results/yugabytedb.json index 73fb1b85eb..9015c299ae 100644 --- a/data/test-results/yugabytedb.json +++ b/data/test-results/yugabytedb.json @@ -5,10 +5,10 @@ "version": "2025.1.0.1" }, "run": { - "id": "25877383844", + "id": "26658692522", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071580", - "timestamp": "2026-05-14T18:18:12Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394531", + "timestamp": "2026-05-29T19:48:19Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 19, + "duration_seconds": 20, "details": [ { "name": "Test 1 - Artifact Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071580#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394531#step:6:1" }, { "name": "Test 2 - Version Check", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071580#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394531#step:7:1" }, { "name": "Test 3 - Help Output Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071580#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394531#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071580#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394531#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 18, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071580#step:10:1" + "duration_seconds": 20, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394531#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071580#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394531#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.465857+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.682739+00:00", "publish_state": "published" } } diff --git a/data/test-results/zabbix.json b/data/test-results/zabbix.json index 420a26df3d..024b9dd447 100644 --- a/data/test-results/zabbix.json +++ b/data/test-results/zabbix.json @@ -5,10 +5,10 @@ "version": "7.0.24" }, "run": { - "id": "25877406767", + "id": "26658714432", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155265", - "timestamp": "2026-05-14T18:18:42Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469452", + "timestamp": "2026-05-29T19:48:49Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 1, + "duration_seconds": 2, "details": [ { "name": "Test 1 - Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155265#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469452#step:6:1" }, { "name": "Test 2 - Exact Version Check", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155265#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469452#step:7:1" }, { "name": "Test 3 - Help Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155265#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469452#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155265#step:9:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469452#step:9:1" }, { "name": "Test 5 - Functional Agent Smoke", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155265#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469452#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155265#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469452#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.466068+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.682917+00:00", "publish_state": "published" } } diff --git a/data/test-results/zed.json b/data/test-results/zed.json index 9d5c5c27be..68e854767c 100644 --- a/data/test-results/zed.json +++ b/data/test-results/zed.json @@ -5,10 +5,10 @@ "version": "v0.28.0" }, "run": { - "id": "25877403044", + "id": "26658710721", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140894", - "timestamp": "2026-05-14T18:18:39Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456117", + "timestamp": "2026-05-29T19:48:44Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140894#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456117#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140894#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456117#step:7:1" }, { "name": "Test 3 - Check Help Output or Configuration", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140894#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456117#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140894#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456117#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140894#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456117#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140894#step:11:1", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456117#step:11:1", "current_version": "v0.28.0", "latest_version": "v0.29.0", "next_installed_version": "v0.29.0", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_install_validated", - "production_refreshed_at": "2026-05-14T19:37:17.466250+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.683094+00:00", "publish_state": "published" } } diff --git a/data/test-results/zeroc_ice.json b/data/test-results/zeroc_ice.json index 14fd23d569..aad103f901 100644 --- a/data/test-results/zeroc_ice.json +++ b/data/test-results/zeroc_ice.json @@ -5,10 +5,10 @@ "version": "3.7.10" }, "run": { - "id": "25877379982", + "id": "26658688675", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057286", - "timestamp": "2026-05-14T18:18:06Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380535", + "timestamp": "2026-05-29T19:48:15Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057286#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380535#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057286#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380535#step:7:1" }, { "name": "Test 3 - Check Help Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057286#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380535#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057286#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380535#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057286#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380535#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877379982/job/76048057286#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658688675/job/78575380535#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.466560+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.683397+00:00", "publish_state": "published" } } diff --git a/data/test-results/zerotier.json b/data/test-results/zerotier.json index 69060e4e1f..e266596103 100644 --- a/data/test-results/zerotier.json +++ b/data/test-results/zerotier.json @@ -2,13 +2,13 @@ "schema_version": "2.0", "package": { "name": "Zerotier", - "version": "1.16.1" + "version": "1.16.2" }, "run": { - "id": "25877406767", + "id": "26658714432", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155238", - "timestamp": "2026-05-14T18:18:42Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469431", + "timestamp": "2026-05-29T19:48:49Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155238#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469431#step:6:1" }, { "name": "Test 2 - Version Check", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155238#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469431#step:7:1" }, { "name": "Test 3 - Help Output Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155238#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469431#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155238#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469431#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155238#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469431#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877406767/job/76048155238#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658714432/job/78575469431#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.466787+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.683575+00:00", "publish_state": "published" } } diff --git a/data/test-results/zlib.json b/data/test-results/zlib.json index d6b0af6a7a..3b912a89f2 100644 --- a/data/test-results/zlib.json +++ b/data/test-results/zlib.json @@ -5,10 +5,10 @@ "version": "1.3" }, "run": { - "id": "25877363365", + "id": "26658674448", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001074", - "timestamp": "2026-05-14T18:17:48Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334784", + "timestamp": "2026-05-29T19:47:57Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Header Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001074#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334784#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001074#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334784#step:7:1" }, { "name": "Test 3 - Check Build Configuration", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001074#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334784#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001074#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334784#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001074#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334784#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877363365/job/76048001074#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658674448/job/78575334784#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.466996+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.683745+00:00", "publish_state": "published" } } diff --git a/data/test-results/zookeeper.json b/data/test-results/zookeeper.json index ce8f7d9aaa..8e23469252 100644 --- a/data/test-results/zookeeper.json +++ b/data/test-results/zookeeper.json @@ -5,10 +5,10 @@ "version": "3.9.1" }, "run": { - "id": "25877403044", + "id": "26658710721", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140997", - "timestamp": "2026-05-14T18:18:39Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456434", + "timestamp": "2026-05-29T19:48:43Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 3, + "duration_seconds": 2, "details": [ { "name": "Test 1 - Check Binary Existence", "status": "passed", - "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140997#step:6:1" + "duration_seconds": 1, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456434#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140997#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456434#step:7:1" }, { "name": "Test 3 - Check Help Output or Configuration", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140997#step:8:1" + "duration_seconds": 0, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456434#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140997#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456434#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", - "duration_seconds": 3, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140997#step:10:1" + "duration_seconds": 2, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456434#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877403044/job/76048140997#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658710721/job/78575456434#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.467197+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.683912+00:00", "publish_state": "published" } } diff --git a/data/test-results/zstandard.json b/data/test-results/zstandard.json index e433749c2e..f486ac0583 100644 --- a/data/test-results/zstandard.json +++ b/data/test-results/zstandard.json @@ -5,10 +5,10 @@ "version": "1.5.7" }, "run": { - "id": "25877415436", + "id": "26658721315", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180571", - "timestamp": "2026-05-14T18:18:50Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491918", + "timestamp": "2026-05-29T19:48:56Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -26,37 +26,37 @@ "name": "Test 1 - Check Binary Existence", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180571#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491918#step:6:1" }, { "name": "Test 2 - Check Version Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180571#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491918#step:7:1" }, { "name": "Test 3 - Check Help Output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180571#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491918#step:8:1" }, { "name": "Test 4 - Architecture Verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180571#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491918#step:9:1" }, { "name": "Test 5 - Functional Validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180571#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491918#step:10:1" }, { "name": "Regression applicability - package manager installed", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877415436/job/76048180571#step:11:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658721315/job/78575491918#step:11:1" } ] }, @@ -71,7 +71,7 @@ "regression_applicability": "not_applicable", "regression_reason": "package_manager_installed", "regression_note": "Regression validation not applicable: tested package installed via package manager in Tests 1-5.", - "production_refreshed_at": "2026-05-14T19:37:17.467396+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.684092+00:00", "publish_state": "published" } } diff --git a/data/test-results/zulip.json b/data/test-results/zulip.json index af0dc3a33f..b5955b77c9 100644 --- a/data/test-results/zulip.json +++ b/data/test-results/zulip.json @@ -5,10 +5,10 @@ "version": "11.4" }, "run": { - "id": "25877383844", + "id": "26658692522", "attempt": "1", - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071731", - "timestamp": "2026-05-14T18:18:15Z", + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394314", + "timestamp": "2026-05-29T19:48:19Z", "status": "success", "runner": { "os": "ubuntu-24.04", @@ -20,43 +20,43 @@ "passed": 6, "failed": 0, "skipped": 0, - "duration_seconds": 1, + "duration_seconds": 3, "details": [ { "name": "Test 1 - Check release bundle contents", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071731#step:6:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394314#step:6:1" }, { "name": "Test 2 - Check version metadata", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071731#step:7:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394314#step:7:1" }, { "name": "Test 3 - Check installer help output", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071731#step:8:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394314#step:8:1" }, { "name": "Test 4 - Architecture verification", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071731#step:9:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394314#step:9:1" }, { "name": "Test 5 - Functional release bundle validation", "status": "passed", "duration_seconds": 0, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071731#step:10:1" + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394314#step:10:1" }, { "name": "Test 6 - Regression Validation", "status": "passed", - "duration_seconds": 1, - "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/25877383844/job/76048071731#step:11:1", + "duration_seconds": 3, + "url": "https://github.com/ArmDeveloperEcosystem/ecosystem-dashboard-for-arm/actions/runs/26658692522/job/78575394314#step:11:1", "current_version": "11.4", "latest_version": "11.5", "next_installed_version": "11.5", @@ -79,7 +79,7 @@ "regression_note": "", "regression_status": "passed", "regression_decision": "next_bundle_validated", - "production_refreshed_at": "2026-05-14T19:37:17.467585+00:00", + "production_refreshed_at": "2026-05-29T21:05:15.684284+00:00", "publish_state": "published" } }