diff options
-rw-r--r-- | azure-pipelines.yml | 2 | ||||
-rw-r--r-- | azure-steps-windows.yml | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 29fc6c614..3a626eeae 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -171,6 +171,8 @@ stages: PYTHON_ARCH: 'x64' TEST_MODE: full BITS: 64 + NPY_USE_BLAS_ILP64: '1' + OPENBLAS_SUFFIX: '64_' steps: - template: azure-steps-windows.yml - job: Linux_PyPy3 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 |