Skip to content

Commit f28383d

Browse files
author
pfeatherstone
committed
trying to test BLAS and MKL on windows
1 parent 751ab65 commit f28383d

File tree

1 file changed

+15
-2
lines changed

1 file changed

+15
-2
lines changed

.github/workflows/build_cpp.yml

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -207,13 +207,26 @@ jobs:
207207
run: ./build_blas_bindings/dtest --runall -q
208208

209209
windows:
210-
runs-on: windows-latest
210+
name: ${{ matrix.name }}
211+
runs-on: ${{ matrix.os }}
212+
strategy:
213+
fail-fast: false
214+
matrix:
215+
include:
216+
- name: windows-latest-openblas
217+
os : windows-latest
218+
extra_packages : openblas:x64-windows
219+
220+
- name: windows-latest-mkl
221+
os : windows-latest
222+
extra_packages : intel-mkl:x64-windows
223+
211224
steps:
212225
- name: Checkout repository
213226
uses: actions/checkout@v4
214227

215228
- name: Install dependencies
216-
run: choco install --no-progress --yes cmake
229+
run: vcpkg install ${{ matrix.extra_packages }}
217230

218231
- name: Configure
219232
run: cmake dlib/test -B build

0 commit comments

Comments
 (0)