Skip to content

Commit d1bf13d

Browse files
committed
ci : use absolute paths for libs and include dirs
1 parent 6307485 commit d1bf13d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -675,8 +675,8 @@ jobs:
675675
-DCMAKE_BUILD_TYPE=${{ matrix.build }}
676676
-DGGML_BLAS=${{ matrix.blas }}
677677
-DGGML_BLAS_VENDOR=OpenBLAS
678-
-DBLAS_LIBRARIES="OpenBLAS-${{matrix.blasver}}/lib/libopenblas.lib"
679-
-DBLAS_INCLUDE_DIRS="OpenBLAS-${{matrix.blasver}}/include"
678+
-DBLAS_LIBRARIES="$env:GITHUB_WORKSPACE/OpenBLAS-${{matrix.blasver}}/lib/libopenblas.lib"
679+
-DBLAS_INCLUDE_DIRS="$env:GITHUB_WORKSPACE/OpenBLAS-${{matrix.blasver}}/include"
680680
-DWHISPER_SDL2=${{ matrix.sdl2 }}
681681
682682
- name: Build
@@ -686,7 +686,7 @@ jobs:
686686
687687
- name: Copy openblas.dll
688688
if: matrix.blas == 'ON'
689-
run: copy "OpenBLAS-${{matrix.blasver}}/bin/libopenblas.dll" build/bin/${{ matrix.build }}
689+
run: copy "$env:GITHUB_WORKSPACE/OpenBLAS-${{matrix.blasver}}/bin/libopenblas.dll" build/bin/${{ matrix.build }}
690690

691691
- name: Copy SDL2.dll
692692
if: matrix.sdl2 == 'ON'

0 commit comments

Comments
 (0)