summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormattip <matti.picus@gmail.com>2021-10-03 10:21:11 +0300
committermattip <matti.picus@gmail.com>2021-10-03 10:21:11 +0300
commitbe7149588e622b284d983455ed4a6ab502293cfa (patch)
treed56ff65a2cde1ad6854ae456ac806acbc02f57b2
parent382befec16270beb0b8de3ee15f411d231dbc9ec (diff)
downloadnumpy-be7149588e622b284d983455ed4a6ab502293cfa.tar.gz
add pypy windows test run
-rw-r--r--azure-pipelines.yml6
-rw-r--r--azure-steps-windows.yml2
2 files changed, 7 insertions, 1 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
index 714f62912..3255b0758 100644
--- a/azure-pipelines.yml
+++ b/azure-pipelines.yml
@@ -249,6 +249,12 @@ stages:
TEST_MODE: full
BITS: 64
NPY_USE_BLAS_ILP64: '1'
+ PyPy38-64bit-fast:
+ PYTHON_VERSION: 'PyPy'
+ PYTHON_ARCH: 'x64'
+ TEST_MODE: fast
+ BITS: 64
+ NPY_USE_BLAS_ILP64: '1'
steps:
- template: azure-steps-windows.yml
diff --git a/azure-steps-windows.yml b/azure-steps-windows.yml
index 9a5f9bb70..34f9797de 100644
--- a/azure-steps-windows.yml
+++ b/azure-steps-windows.yml
@@ -6,7 +6,7 @@ steps:
architecture: $(PYTHON_ARCH)
condition: not(contains(variables['PYTHON_VERSION'], 'PyPy'))
- powershell: |
- $url = "http://buildbot.pypy.org/nightly/py3.7/pypy-c-jit-latest-win64.zip"
+ $url = "http://buildbot.pypy.org/nightly/py3.8/pypy-c-jit-latest-win64.zip"
$output = "pypy.zip"
$wc = New-Object System.Net.WebClient
$wc.DownloadFile($url, $output)