Skip to content

Commit 3be6151

Browse files
committed
maint: don't try to test 32 bit Linux
1 parent cf386b5 commit 3be6151

File tree

1 file changed

+0
-30
lines changed

1 file changed

+0
-30
lines changed

.github/workflows/buildwheel.yml

-30
Original file line numberDiff line numberDiff line change
@@ -64,33 +64,3 @@ jobs:
6464
- run: venv/bin/pip install -U pip
6565
- run: venv/bin/pip install --find-links wheelhouse python_flint
6666
- run: venv/bin/python test/test.py
67-
68-
test_wheels_linux32:
69-
#
70-
# This uses architecture: x86 to select a 32 bit build of Python although
71-
# the host OS and hardware will still be 64 bit Linux. The wheels
72-
# themselves are built with cibuildwheel in a 32 bit Linux docker
73-
# container. Hopefully this is enough to test 32 bit mode...
74-
#
75-
needs: build_wheels
76-
name: Test ${{ matrix.python-version }} wheel with 32 bit Python on Linux
77-
runs-on: ubuntu-20.04
78-
strategy:
79-
fail-fast: false
80-
matrix:
81-
python-version: ['3.9', '3.10', '3.11']
82-
83-
steps:
84-
- uses: actions/checkout@v3
85-
- uses: actions/setup-python@v4
86-
with:
87-
python-version: ${{ matrix.python-version }}
88-
architecture: x86
89-
- uses: actions/download-artifact@v3
90-
with:
91-
name: artifact
92-
path: wheelhouse
93-
- run: python -m venv venv
94-
- run: venv/bin/pip install -U pip
95-
- run: venv/bin/pip install --find-links wheelhouse python_flint
96-
- run: venv/bin/python test/test.py

0 commit comments

Comments
 (0)