diff options
author | Pauli Virtanen <pav@iki.fi> | 2019-12-16 21:25:17 +0200 |
---|---|---|
committer | Pauli Virtanen <pav@iki.fi> | 2019-12-21 23:13:19 +0200 |
commit | b1c8dd9979caf899e6e5c758faef27b8453c334a (patch) | |
tree | 147c9469cf695e798ef1994b8e2d896fa8f51dfb /azure-steps-windows.yml | |
parent | 4903971fce8fdd4dc38e66706432962a0a94e8d7 (diff) | |
download | numpy-b1c8dd9979caf899e6e5c758faef27b8453c334a.tar.gz |
CI: use openblas64_ on azure windows
Diffstat (limited to 'azure-steps-windows.yml')
-rw-r--r-- | azure-steps-windows.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/azure-steps-windows.yml b/azure-steps-windows.yml index 26d7a667d..f17039455 100644 --- a/azure-steps-windows.yml +++ b/azure-steps-windows.yml @@ -11,7 +11,7 @@ steps: - powershell: | $pyversion = python -c "from __future__ import print_function; import sys; print(sys.version.split()[0])" Write-Host "Python Version: $pyversion" - $target = "C:\\hostedtoolcache\\windows\\Python\\$pyversion\\$(PYTHON_ARCH)\\lib\\openblas.a" + $target = "C:\\hostedtoolcache\\windows\\Python\\$pyversion\\$(PYTHON_ARCH)\\lib\\openblas$env:OPENBLAS_SUFFIX.a" Write-Host "target path: $target" $openblas = python tools/openblas_support.py cp $openblas $target |