Skip to content

Commit 159b58d

Browse files
committed
ci : fix WHISPER_CUDA -> GGML_CUDA
1 parent cd00615 commit 159b58d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.devops/cublas.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ COPY . .
2121
# Set nvcc architecture
2222
ENV CUDA_DOCKER_ARCH=${CUDA_DOCKER_ARCH}
2323
# Enable cuBLAS
24-
ENV WHISPER_CUBLAS=1
24+
ENV GGML_CUDA=1
2525

2626
RUN make
2727

.devops/main-cuda.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ ARG CUDA_DOCKER_ARCH=all
1414
# Set nvcc architecture
1515
ENV CUDA_DOCKER_ARCH=${CUDA_DOCKER_ARCH}
1616
# Enable cuBLAS
17-
ENV WHISPER_CUBLAS=1
17+
ENV GGML_CUDA=1
1818

1919
RUN apt-get update && \
2020
apt-get install -y build-essential \

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -481,7 +481,7 @@ jobs:
481481
run: >
482482
cmake -S . -B ./build -A ${{ matrix.arch }}
483483
-DCMAKE_BUILD_TYPE=${{ matrix.build }}
484-
-DWHISPER_CUDA=${{ matrix.cublas }}
484+
-DGGML_CUDA=${{ matrix.cublas }}
485485
-DWHISPER_SDL2=${{ matrix.sdl2 }}
486486
487487
- name: Build ${{ matrix.cuda-toolkit }}

0 commit comments

Comments
 (0)