File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -162,6 +162,7 @@ jobs:
162
162
with :
163
163
python-version : ${{ matrix.python-version }}
164
164
architecture : ${{ matrix.platform }}
165
+
165
166
- name : Download a wheel accordingly to matrix
166
167
uses : actions/download-artifact@v4
167
168
with :
@@ -187,12 +188,12 @@ jobs:
187
188
188
189
- name : Package installation
189
190
run : |
190
- cd ${{ github.workspace }}/tests
191
- &python -m pip install --user --no-warn-script-location (ls "../wheelhouse/opencv*.whl")
192
- if ($LastExitCode -ne 0) {throw $LastExitCode}
193
191
# Copy DLL next to cv2.pyd (Python 3.8+ needs this)
194
192
$cv2_path = python -c "import cv2; import os; print(os.path.dirname(cv2.__file__))"
195
193
Copy-Item "${{ github.workspace }}\wheelhouse\libopenblas.dll" "$cv2_path\libopenblas.dll"
194
+ cd ${{ github.workspace }}/tests
195
+ &python -m pip install --user --no-warn-script-location (ls "../wheelhouse/opencv*.whl")
196
+ if ($LastExitCode -ne 0) {throw $LastExitCode}
196
197
python get_build_info.py
197
198
shell : powershell
198
199
env :
You can’t perform that action at this time.
0 commit comments