Skip to content

Commit fa4111e

Browse files
committed
Remove 32-bit tests
Meson randomly tries to select the 64-bit Python, which then breaks the compilation. Probably fixable (see eg mesonbuild/meson-python#610) but not really worth the effort as 32-bit Windows is anyway quite outdated.
1 parent 2deaf4d commit fa4111e

1 file changed

Lines changed: 1 addition & 8 deletions

File tree

.github/workflows/main.yml

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,23 +18,16 @@ jobs:
1818
matrix:
1919
os: [ubuntu-latest, macos-latest, windows-latest]
2020
python-version: ['3.12', '3.13', '3.14']
21-
architecture: [x64, x86]
22-
exclude:
23-
- os: ubuntu-latest
24-
architecture: x86
25-
- os: macos-latest
26-
architecture: x86
2721
steps:
2822
- name: Set up the repository
2923
uses: actions/checkout@v4
3024
with:
3125
submodules: recursive
3226
fetch-depth: 0
33-
- name: Set up Python ${{ matrix.python-version }}
27+
- name: Set up Python
3428
uses: actions/setup-python@v5
3529
with:
3630
python-version: ${{ matrix.python-version }}
37-
architecture: ${{ matrix.architecture }}
3831
- name: Build
3932
run: |
4033
python -m pip install --upgrade pip

0 commit comments

Comments
 (0)