File tree Expand file tree Collapse file tree 1 file changed +12
-6
lines changed Expand file tree Collapse file tree 1 file changed +12
-6
lines changed Original file line number Diff line number Diff line change @@ -168,15 +168,21 @@ jobs:
168
168
name : wheel-${{ matrix.with_contrib }}-${{ matrix.without_gui }}-${{ matrix.build_sdist }}-${{ matrix.platform }}
169
169
path : wheelhouse/
170
170
171
+ - name : Show contents of wheelhouse
172
+ run : |
173
+ echo "== wheelhouse contents =="
174
+ dir /b wheelhouse
175
+ shell : cmd
176
+
171
177
- name : Add OpenBLAS DLL to PATH
172
178
run : |
173
- set "PATH=%CD%\wheelhouse;%PATH%"
179
+ set "PATH=${{ github.workspace }}\wheelhouse;%PATH%"
180
+ echo "== PATH =="
174
181
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
+ )
180
186
shell : cmd
181
187
182
188
- name : Package installation
You can’t perform that action at this time.
0 commit comments