File tree Expand file tree Collapse file tree 1 file changed +18
-2
lines changed Expand file tree Collapse file tree 1 file changed +18
-2
lines changed Original file line number Diff line number Diff line change @@ -113,13 +113,19 @@ jobs:
113
113
114
114
python setup.py bdist_wheel --py-limited-api=cp37 --dist-dir=%cd%\\wheelhouse -v
115
115
shell : cmd
116
-
116
+
117
+ - name : Copy OpenBLAS DLL to wheelhouse
118
+ run : |
119
+ copy openblas\bin\libopenblas.dll wheelhouse\
120
+ shell : cmd
121
+
117
122
- name : Saving all wheels
118
123
uses : actions/upload-artifact@v4
119
124
with :
120
125
name : wheel-${{ matrix.with_contrib }}-${{ matrix.without_gui }}-${{ matrix.build_sdist }}-${{ matrix.platform }}
121
126
path : |
122
127
wheelhouse/opencv*
128
+ wheelhouse/libopenblas.dll
123
129
124
130
Test :
125
131
needs : [Build]
@@ -161,8 +167,18 @@ jobs:
161
167
with :
162
168
name : wheel-${{ matrix.with_contrib }}-${{ matrix.without_gui }}-${{ matrix.build_sdist }}-${{ matrix.platform }}
163
169
path : wheelhouse/
164
-
165
170
171
+ - name : Add OpenBLAS DLL to PATH
172
+ run : |
173
+ set "PATH=%CD%\wheelhouse;%PATH%"
174
+ echo %PATH%
175
+ shell : cmd
176
+
177
+ - name : Check OpenBLAS DLL presence
178
+ run : |
179
+ where libopenblas.dll || echo "OpenBLAS DLL not found"
180
+ shell : cmd
181
+
166
182
- name : Package installation
167
183
run : |
168
184
cd ${{ github.workspace }}/tests
You can’t perform that action at this time.
0 commit comments