diff options
author | Tyler Reddy <tyler.je.reddy@gmail.com> | 2018-12-06 14:02:46 -0800 |
---|---|---|
committer | Tyler Reddy <tyler.je.reddy@gmail.com> | 2018-12-06 14:07:04 -0800 |
commit | ae7c953523369613065760ecafd95b72887ef68b (patch) | |
tree | d5ff7d2368f0a8273153b98b1ec192e1d28b724e /azure-pipelines.yml | |
parent | 2970e41fcd33b20fecba5c089b24650836d24a7d (diff) | |
download | numpy-ae7c953523369613065760ecafd95b72887ef68b.tar.gz |
TST: sync Azure Win openblas
* bump the version of openblas used
for Windows Azure CI testing to match
with wheel builds
Diffstat (limited to 'azure-pipelines.yml')
-rw-r--r-- | azure-pipelines.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml index a6c1925c5..812315bc2 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -88,8 +88,8 @@ jobs: variables: # openblas URLs from numpy-wheels # appveyor / Windows config - OPENBLAS_32: "https://3f23b170c54c2533c070-1c8a9b3114517dc5fe17b7c3f8c63a43.ssl.cf2.rackcdn.com/openblas-v0.3.0-win32-gcc_7_1_0.zip" - OPENBLAS_64: "https://3f23b170c54c2533c070-1c8a9b3114517dc5fe17b7c3f8c63a43.ssl.cf2.rackcdn.com/openblas-v0.3.0-win_amd64-gcc_7_1_0.zip" + OPENBLAS_32: "https://3f23b170c54c2533c070-1c8a9b3114517dc5fe17b7c3f8c63a43.ssl.cf2.rackcdn.com/openblas-v0.3.3-186-g701ea883-win32-gcc_7_1_0.zip" + OPENBLAS_64: "https://3f23b170c54c2533c070-1c8a9b3114517dc5fe17b7c3f8c63a43.ssl.cf2.rackcdn.com/openblas-v0.3.3-186-g701ea883-win_amd64-gcc_7_1_0.zip" strategy: maxParallel: 6 matrix: @@ -156,7 +156,7 @@ jobs: Write-Host "Python Version: $pyversion" $target = "C:\\hostedtoolcache\\windows\\Python\\$pyversion\\$(PYTHON_ARCH)\\lib\\openblas.a" Write-Host "target path: $target" - cp $tmpdir\$(BITS)\lib\libopenblas_v0.3.0-gcc_7_1_0.a $target + cp $tmpdir\$(BITS)\lib\libopenblas_v0.3.3-186-g701ea883-gcc_7_1_0.a $target displayName: 'Download / Install OpenBLAS' - powershell: | choco install -y mingw --forcex86 --force |