File tree Expand file tree Collapse file tree 1 file changed +20
-1
lines changed
Expand file tree Collapse file tree 1 file changed +20
-1
lines changed Original file line number Diff line number Diff line change @@ -244,7 +244,26 @@ jobs:
244244 if : ${{ matrix.build_mkl && (steps.cache-oneapi.outputs.cache-hit != 'true') }}
245245 run : |
246246 curl -L -o base.exe https://registrationcenter-download.intel.com/akdlm/IRC_NAS/f5881e61-dcdc-40f1-9bd9-717081ac623c/intel-oneapi-base-toolkit-2025.2.1.46_offline.exe
247- base.exe -a --silent --eula accept
247+ ./base.exe -a --silent --eula accept
248+
249+ # - name: Prepare deps dir
250+ # run: mkdir -p "C:/deps/openblas-${OPENBLAS_VER}"
251+
252+ # - name: Cache OpenBLAS
253+ # id: cache-openblas
254+ # uses: actions/cache@v3
255+ # with:
256+ # path: C:/deps/openblas-${{ env.OPENBLAS_VER }}
257+ # key: openblas-win-${{ env.OPENBLAS_VER }}-x64
258+
259+ # - name: Download & extract OpenBLAS (LP64) if cache miss
260+ # if: steps.cache-openblas.outputs.cache-hit != 'true'
261+ # run: |
262+ # ZIP="OpenBLAS-${OPENBLAS_VER}-x64.zip" # use ...-x64-64.zip for ILP64
263+ # URL="https://sourceforge.net/projects/openblas/files/v${OPENBLAS_VER}/${ZIP}/download"
264+ # curl -L -o openblas.zip "$URL"
265+ # # Extract into our prefix (PowerShell Expand-Archive is reliable)
266+ # powershell -Command "Expand-Archive -Path openblas.zip -DestinationPath 'C:\deps\openblas-${env:OPENBLAS_VER}' -Force"
248267
249268 - name : Configure
250269 run : |
You can’t perform that action at this time.
0 commit comments