From 72867d9ff5bcb25e71df1e6ea316d7b71b084a82 Mon Sep 17 00:00:00 2001 From: mejrs Date: Tue, 12 Apr 2022 18:14:49 +0200 Subject: [PATCH] Don't test 32 bit on windows --- .github/workflows/ci.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e777fa9a013..bcb977d1955 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -101,6 +101,18 @@ jobs: rust-target: "x86_64-pc-windows-msvc", }, ] + exclude: + # PyPy 3.6 is EOL and not working on macos-latest (now macos-11) + - python-version: pypy-3.6 + platform: { os: "macos-latest", python-architecture: "x64" } + # There is no 64-bit pypy on windows for pypy-3.6 + - python-version: pypy-3.6 + platform: { os: "windows-latest", python-architecture: "x64" } + # PyPy doesn't release 32-bit Windows builds any more + - python-version: pypy-3.7 + platform: { os: "windows-latest", python-architecture: "x86" } + - python-version: pypy-3.8 + platform: { os: "windows-latest", python-architecture: "x86" } include: # PyPy3.6 still runs on macos-10.15 - rust: stable