From f03fcd280bce201aa8d494405d29847a6b67f491 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 12 Dec 2025 15:14:45 +0000 Subject: [PATCH 1/3] Initial plan From bed93e99f4cc861a3b8b63aa6b51a6a2aa8ccc3a Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 12 Dec 2025 15:26:46 +0000 Subject: [PATCH 2/3] Remove unavailable tt-forge-fe Docker image from test matrix The Docker image ghcr.io/tenstorrent/tt-forge-fe/tt-forge-fe-ci-ubuntu-22-04:dt-8ee183d6fc5ceb4feb9feff9b2674560c43d8a00b38c7b892449220a1d3d5691 is no longer available (manifest unknown error). Since the test matrix already includes ubuntu:22.04 coverage, removing this specific configuration maintains test coverage while fixing the workflow failure. Co-authored-by: jbakerTT <223292507+jbakerTT@users.noreply.github.com> --- .github/workflows/test_show_telemetry.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/test_show_telemetry.yml b/.github/workflows/test_show_telemetry.yml index 44fe7bea..4ab99225 100644 --- a/.github/workflows/test_show_telemetry.yml +++ b/.github/workflows/test_show_telemetry.yml @@ -17,7 +17,6 @@ jobs: matrix: config: - { "runs-on": "ubuntu-latest" } - - { "runs-on": "ubuntu-22.04", "image": "ghcr.io/tenstorrent/tt-forge-fe/tt-forge-fe-ci-ubuntu-22-04:dt-8ee183d6fc5ceb4feb9feff9b2674560c43d8a00b38c7b892449220a1d3d5691" } - { "runs-on": "ubuntu-22.04", "image": "ubuntu:22.04" } - { "runs-on": "ubuntu-24.04", "image": "ubuntu:24.04" } From 9aa1a81b6b7e8d47436b7cbd3ce7fa16a3be1a20 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 12 Dec 2025 21:55:51 +0000 Subject: [PATCH 3/3] Use :latest tag for tt-forge-fe Docker image to auto-update Changed from specific digest-based tag to :latest tag so the workflow always uses the most recent image and won't fail when old images are removed. Co-authored-by: jbakerTT <223292507+jbakerTT@users.noreply.github.com> --- .github/workflows/test_show_telemetry.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/test_show_telemetry.yml b/.github/workflows/test_show_telemetry.yml index 4ab99225..cd6c42fe 100644 --- a/.github/workflows/test_show_telemetry.yml +++ b/.github/workflows/test_show_telemetry.yml @@ -17,6 +17,7 @@ jobs: matrix: config: - { "runs-on": "ubuntu-latest" } + - { "runs-on": "ubuntu-22.04", "image": "ghcr.io/tenstorrent/tt-forge-fe/tt-forge-fe-ci-ubuntu-22-04:latest" } - { "runs-on": "ubuntu-22.04", "image": "ubuntu:22.04" } - { "runs-on": "ubuntu-24.04", "image": "ubuntu:24.04" }