Skip to content

Commit 7101ea0

Browse files
committed
linux 32:
1 parent 3f06ecc commit 7101ea0

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/workflows/build-wheels.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ jobs:
3333
# https://github.com/github/feedback/discussions/7835#discussioncomment-1769026
3434
buildplat:
3535
- [ubuntu-24.04, manylinux_x86_64]
36-
- [ubuntu-24.04, manylinux_i686]
3736
- [ubuntu-24.04-arm, manylinux_aarch64]
3837
- [ubuntu-24.04, musllinux_x86_64] # No OpenBlas, no test
3938
- [ubuntu-24.04, musllinux_i686]
@@ -42,11 +41,21 @@ jobs:
4241
- [macos-14, macosx_arm64]
4342
- [windows-2022, win_amd64]
4443
- [windows-2022, win32]
44+
buildplat_linux_32:
45+
- [ubuntu-24.04, manylinux_i686]
46+
- [ubuntu-24.04, musllinux_i686]
4547
python: ["cp38", "cp39","cp310", "cp311","cp312", "cp313"]
4648

4749
steps:
4850
- uses: actions/checkout@v4
51+
4952
- name: Build wheels
5053
uses: pypa/[email protected]
5154
env:
5255
CIBW_BUILD: ${{ matrix.python }}-${{ matrix.buildplat[1] }}
56+
57+
- name: Build linux 32bit wheels
58+
uses: pypa/[email protected]
59+
env:
60+
CIBW_BUILD: ${{ matrix.python }}-${{ matrix.buildplat_linux_32[1] }}
61+
CIBW_ARCH: auto32

0 commit comments

Comments
 (0)