Skip to content

Commit 5b5ba5a

Browse files
committed
fix: drop x86
1 parent 2a6da64 commit 5b5ba5a

File tree

1 file changed

+9
-16
lines changed

1 file changed

+9
-16
lines changed

.github/workflows/pypi.yaml

Lines changed: 9 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -19,19 +19,12 @@ jobs:
1919
strategy:
2020
fail-fast: false
2121
matrix:
22-
platform:
23-
- target: x86_64
24-
manylinux: "2_28"
25-
- target: x86
26-
manylinux: "2014"
27-
- target: aarch64
28-
manylinux: "2_28"
29-
- target: armv7
30-
manylinux: "2_28"
31-
- target: s390x
32-
manylinux: "2_28"
33-
- target: ppc64le
34-
manylinux: "2_28"
22+
target:
23+
- x86_64
24+
- aarch64
25+
- armv7
26+
- s390x
27+
- ppc64le
3528
steps:
3629
- uses: actions/checkout@v4
3730
with:
@@ -42,14 +35,14 @@ jobs:
4235
- name: Build wheels
4336
uses: PyO3/maturin-action@v1
4437
with:
45-
target: ${{ matrix.platform.target }}
38+
target: ${{ matrix.target }}
4639
args: --release --out dist -i 3.11 -F pyo3/abi3-py311 -F duckdb-bundled
4740
sccache: ${{ !startsWith(github.ref, 'refs/tags/') }}
48-
manylinux: ${{ matrix.platform.manylinux }}
41+
manylinux: "2_28"
4942
- name: Upload wheels
5043
uses: actions/upload-artifact@v4
5144
with:
52-
name: wheels-linux-${{ matrix.platform.target }}
45+
name: wheels-linux-${{ matrix.target }}
5346
path: dist
5447

5548
musllinux:

0 commit comments

Comments
 (0)