Skip to content

Commit 2c0d88e

Browse files
committed
ci : fix openblas build
1 parent 0fbaac9 commit 2c0d88e

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ jobs:
308308
- name: Build using CMake w/ OpenBLAS
309309
shell: msys2 {0}
310310
run: |
311-
cmake -B build -DGGML_OPENBLAS=ON
311+
cmake -B build -DGGML_BLAS=ON -DGGML_BLAS_VENDOR=OpenBLAS
312312
cmake --build build --config ${{ matrix.build }} -j $(nproc)
313313
314314
windows:
@@ -417,7 +417,8 @@ jobs:
417417
run: >
418418
cmake -S . -B ./build -A ${{ matrix.arch }}
419419
-DCMAKE_BUILD_TYPE=${{ matrix.build }}
420-
-DGGML_OPENBLAS=${{ matrix.blas }}
420+
-DGGML_BLAS=${{ matrix.blas }}
421+
-DGGML_BLAS_VENDOR=OpenBLAS
421422
-DCMAKE_LIBRARY_PATH="$env:OPENBLAS_PATH/lib"
422423
-DWHISPER_SDL2=${{ matrix.sdl2 }}
423424

0 commit comments

Comments
 (0)