File tree Expand file tree Collapse file tree 1 file changed +9
-16
lines changed Expand file tree Collapse file tree 1 file changed +9
-16
lines changed Original file line number Diff line number Diff line change @@ -19,19 +19,12 @@ jobs:
19
19
strategy :
20
20
fail-fast : false
21
21
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
35
28
steps :
36
29
- uses : actions/checkout@v4
37
30
with :
@@ -42,14 +35,14 @@ jobs:
42
35
- name : Build wheels
43
36
uses : PyO3/maturin-action@v1
44
37
with :
45
- target : ${{ matrix.platform. target }}
38
+ target : ${{ matrix.target }}
46
39
args : --release --out dist -i 3.11 -F pyo3/abi3-py311 -F duckdb-bundled
47
40
sccache : ${{ !startsWith(github.ref, 'refs/tags/') }}
48
- manylinux : ${{ matrix.platform.manylinux }}
41
+ manylinux : " 2_28 "
49
42
- name : Upload wheels
50
43
uses : actions/upload-artifact@v4
51
44
with :
52
- name : wheels-linux-${{ matrix.platform. target }}
45
+ name : wheels-linux-${{ matrix.target }}
53
46
path : dist
54
47
55
48
musllinux :
You can’t perform that action at this time.
0 commit comments