Skip to content

Commit 72867d9

Browse files
committed
Don't test 32 bit on windows
1 parent f774dbf commit 72867d9

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/ci.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,18 @@ jobs:
101101
rust-target: "x86_64-pc-windows-msvc",
102102
},
103103
]
104+
exclude:
105+
# PyPy 3.6 is EOL and not working on macos-latest (now macos-11)
106+
- python-version: pypy-3.6
107+
platform: { os: "macos-latest", python-architecture: "x64" }
108+
# There is no 64-bit pypy on windows for pypy-3.6
109+
- python-version: pypy-3.6
110+
platform: { os: "windows-latest", python-architecture: "x64" }
111+
# PyPy doesn't release 32-bit Windows builds any more
112+
- python-version: pypy-3.7
113+
platform: { os: "windows-latest", python-architecture: "x86" }
114+
- python-version: pypy-3.8
115+
platform: { os: "windows-latest", python-architecture: "x86" }
104116
include:
105117
# PyPy3.6 still runs on macos-10.15
106118
- rust: stable

0 commit comments

Comments
 (0)