Skip to content

Commit b492445

Browse files
authored
Update build_wheels_windows.yml
1 parent 02edf94 commit b492445

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/build_wheels_windows.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,9 @@ jobs:
118118
uses: actions/upload-artifact@v4
119119
with:
120120
name: wheel-${{ matrix.with_contrib }}-${{ matrix.without_gui }}-${{ matrix.build_sdist }}-${{ matrix.platform }}
121-
path: wheelhouse/opencv*
121+
path: |
122+
wheelhouse/opencv*
123+
openblas/**
122124
123125
Test:
124126
needs: [Build]
@@ -160,14 +162,12 @@ jobs:
160162
with:
161163
name: wheel-${{ matrix.with_contrib }}-${{ matrix.without_gui }}-${{ matrix.build_sdist }}-${{ matrix.platform }}
162164
path: wheelhouse/
163-
- name: check DLL
164-
shell: powershell
165-
run: |
166-
dir "$PWD\openblas\bin\libopenblas*.dll"
165+
166+
167167
- name: Package installation
168168
run: |
169169
$env:OpenBLAS_HOME = "$PWD"
170-
$env:PATH = "$env:OpenBLAS_HOME\openblas\bin;$env:PATH"
170+
$env:PATH = "$env:OpenBLAS_HOME\wheelhouse\openblas\bin;$env:PATH"
171171
Write-Host "OpenBLAS_HOME=$env:OpenBLAS_HOME"
172172
cd ${{ github.workspace }}/tests
173173
&python -m pip install --user --no-warn-script-location (ls "../wheelhouse/opencv*.whl")

0 commit comments

Comments
 (0)