Skip to content

Commit 968a007

Browse files
authored
Update build_wheels_windows.yml
1 parent f57c90e commit 968a007

File tree

1 file changed

+12
-6
lines changed

1 file changed

+12
-6
lines changed

.github/workflows/build_wheels_windows.yml

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -168,15 +168,21 @@ jobs:
168168
name: wheel-${{ matrix.with_contrib }}-${{ matrix.without_gui }}-${{ matrix.build_sdist }}-${{ matrix.platform }}
169169
path: wheelhouse/
170170

171+
- name: Show contents of wheelhouse
172+
run: |
173+
echo "== wheelhouse contents =="
174+
dir /b wheelhouse
175+
shell: cmd
176+
171177
- name: Add OpenBLAS DLL to PATH
172178
run: |
173-
set "PATH=%CD%\wheelhouse;%PATH%"
179+
set "PATH=${{ github.workspace }}\wheelhouse;%PATH%"
180+
echo "== PATH =="
174181
echo %PATH%
175-
shell: cmd
176-
177-
- name: Check OpenBLAS DLL presence
178-
run: |
179-
where libopenblas.dll || echo "OpenBLAS DLL not found"
182+
echo "== Checking for libopenblas.dll =="
183+
where libopenblas.dll || (
184+
echo "ERROR: libopenblas.dll not found!" & exit /b 1
185+
)
180186
shell: cmd
181187

182188
- name: Package installation

0 commit comments

Comments
 (0)