Skip to content

Commit

Permalink
Test 32-bit Windows only with the latest Python version
Browse files Browse the repository at this point in the history
  • Loading branch information
messense committed Mar 15, 2022
1 parent 15e9c23 commit ca5066f
Showing 1 changed file with 10 additions and 13 deletions.
23 changes: 10 additions & 13 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,20 +109,7 @@ jobs:
python-architecture: "x64",
rust-target: "x86_64-pc-windows-msvc",
},
{
os: "windows-latest",
python-architecture: "x86",
rust-target: "i686-pc-windows-msvc",
},
]
exclude:
# 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" }
- python-version: pypy-3.9
platform: { os: "windows-latest", python-architecture: "x86" }
include:
# Test minimal supported Rust version
- rust: 1.48.0
Expand All @@ -145,6 +132,16 @@ jobs:
rust-target: "x86_64-unknown-linux-gnu",
}
extra_features: "nightly"

# Test 32-bit Windows only with the latest Python version
- rust: stable
python-version: "3.10"
platform:
{
os: "windows-latest",
python-architecture: "x86",
rust-target: "i686-pc-windows-msvc",
}
steps:
- uses: actions/checkout@v2

Expand Down

0 comments on commit ca5066f

Please sign in to comment.