We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d5718fb commit 3e4312cCopy full SHA for 3e4312c
.github/workflows/build_wheels_windows.yml
@@ -162,9 +162,9 @@ jobs:
162
path: wheelhouse/
163
- name: Package installation
164
run: |
165
- set "OpenBLAS_HOME=%CD%"
166
- echo OpenBLAS_HOME=%OpenBLAS_HOME%
167
- set "PATH=%OpenBLAS_HOME%\openblas\bin;%PATH%"
+ $env:OpenBLAS_HOME = (Get-Location).Path
+ Write-Host "OpenBLAS_HOME=$env:OpenBLAS_HOME"
+ $env:PATH = "$env:OpenBLAS_HOME\openblas\bin;$env:PATH"
168
cd ${{ github.workspace }}/tests
169
&python -m pip install --user --no-warn-script-location (ls "../wheelhouse/opencv*.whl")
170
if ($LastExitCode -ne 0) {throw $LastExitCode}
0 commit comments