From 1d3331b5cb6a75352171f3586cff9a901d50dc0a Mon Sep 17 00:00:00 2001 From: KingJ Date: Thu, 11 Sep 2025 20:19:09 +0100 Subject: [PATCH] fix(rocm): Rename tag suffix for hipblas whisper build to match backend config (#6247) Rename tag suffix for hipblas whisper to match backend config hipblas images generally have the suffix `-gpu-rocm-hipblas-X`. One exception to this currently is the hipblas build of Whisper which has the suffix `gpu-hipblas-whisper. However, as `backend/index.yaml` references the image tag for Whisper using the more consistent form (i.e. `latest-gpu-rocm-hipblas-whisper`), it is not possible to add the backend as raised in #6114. Therefore, rename the suffix for hipblas whisper images to use the more consistent form, aligning with other hipblas builds as well as the expected image name in `backend/index.yaml`. Signed-off-by: Kingsley Jarrett --- .github/workflows/backend.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/backend.yml b/.github/workflows/backend.yml index 779739575..72b334b44 100644 --- a/.github/workflows/backend.yml +++ b/.github/workflows/backend.yml @@ -775,7 +775,7 @@ jobs: cuda-minor-version: "" platforms: 'linux/amd64' tag-latest: 'auto' - tag-suffix: '-gpu-hipblas-whisper' + tag-suffix: '-gpu-rocm-hipblas-whisper' base-image: "rocm/dev-ubuntu-22.04:6.4.3" runs-on: 'ubuntu-latest' skip-drivers: 'false'