diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2021-01-19 08:52:28 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-19 08:52:28 -0700 |
commit | e51b87a9f1bfa9ed2a8a80b96f90bb3bb460941d (patch) | |
tree | 3ba1f340f0ec949ffe315c568a3d31d1dc288349 | |
parent | af8e67c4fd368bae710b01f32611b10dfab02b61 (diff) | |
parent | 6d596fdf6dd6f7c9b93207f9e704c22f03438781 (diff) | |
download | numpy-e51b87a9f1bfa9ed2a8a80b96f90bb3bb460941d.tar.gz |
Merge pull request #18164 from mattip/pypy-win64
TST: add a pypy37 windows 64-bit build
-rw-r--r-- | azure-pipelines.yml | 5 | ||||
-rw-r--r-- | azure-steps-windows.yml | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 5f7afdaaf..b56d596a5 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -206,6 +206,11 @@ stages: PYTHON_ARCH: 'x64' TEST_MODE: full BITS: 64 + PyPy37-64bit-full: + PYTHON_VERSION: 'PyPy3.7' + PYTHON_ARCH: 'x64' + TEST_MODE: fast + BITS: 64 Python38-32bit-fast: PYTHON_VERSION: '3.8' PYTHON_ARCH: 'x86' diff --git a/azure-steps-windows.yml b/azure-steps-windows.yml index 28762f5d9..6a69db753 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.6/pypy-c-jit-latest-win32.zip" + $url = "http://buildbot.pypy.org/nightly/py3.7/pypy-c-jit-latest-win64.zip" $output = "pypy.zip" $wc = New-Object System.Net.WebClient $wc.DownloadFile($url, $output) |