File tree Expand file tree Collapse file tree 1 file changed +15
-2
lines changed
Expand file tree Collapse file tree 1 file changed +15
-2
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments