From 1da4dc82fa7996d4edda05890dca65aeceaafd6d Mon Sep 17 00:00:00 2001 From: Daniel Bevenius Date: Fri, 11 Sep 2026 16:13:24 +0200 Subject: [PATCH] ci : rename cublas to cuda in release.yml (#4057) This commit renames the cublas jobs and release artifacts to just use cuda instead of cublas. The motivation for this is that I think that the cublas naming came for a time when the ggml-cuda backend mostly or perhaps completely delegated to cublas. But this is not the case any more and naming this cuda would make sense now. This is also consistent with how llama.cpp names their cuda binary build artifacts. --- .github/workflows/release.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 033d6b2a3..e72f2c7cc 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -320,7 +320,7 @@ jobs: name: whisper-blas-bin-${{ matrix.arch }}.zip path: whisper-blas-bin-${{ matrix.arch }}.zip - windows-cublas: + windows-cuda: runs-on: windows-2022 needs: determine-tag strategy: @@ -521,14 +521,14 @@ jobs: - name: Pack bin artifacts shell: pwsh run: | - Compress-Archive -Path "build/bin/${{ matrix.build }}" -DestinationPath "whisper-cublas-${{ matrix.cuda-toolkit }}-bin-${{ matrix.arch }}.zip" + Compress-Archive -Path "build/bin/${{ matrix.build }}" -DestinationPath "whisper-bin-win-cuda-${{ matrix.cuda-toolkit }}-${{ matrix.arch }}.zip" - name: Upload binaries if: ${{ needs.determine-tag.outputs.should_release == 'true' }} uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6 with: - name: whisper-cublas-${{ matrix.cuda-toolkit }}-bin-${{ matrix.arch }}.zip - path: whisper-cublas-${{ matrix.cuda-toolkit }}-bin-${{ matrix.arch }}.zip + name: whisper-bin-win-cuda-${{ matrix.cuda-toolkit }}-${{ matrix.arch }}.zip + path: whisper-bin-win-cuda-${{ matrix.cuda-toolkit }}-${{ matrix.arch }}.zip windows-arm64-cpu: runs-on: windows-2022 @@ -866,7 +866,7 @@ jobs: - ios-xcode-build - windows - windows-blas - - windows-cublas + - windows-cuda - windows-arm64-cpu - windows-arm64-opencl-adreno - windows-arm64-cuda