File tree Expand file tree Collapse file tree 5 files changed +12
-26
lines changed
Expand file tree Collapse file tree 5 files changed +12
-26
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ concurrency:
1111 cancel-in-progress : true
1212
1313env :
14- duckdb-version : " 1.2.2 "
14+ duckdb-version : " 1.3.0 "
1515
1616jobs :
1717 test :
Original file line number Diff line number Diff line change 99 workflow_dispatch :
1010
1111env :
12- duckdb-version : " 1.2.2 "
12+ duckdb-version : " 1.3.0 "
1313
1414jobs :
1515 deploy :
Original file line number Diff line number Diff line change @@ -17,20 +17,14 @@ jobs:
1717 linux :
1818 runs-on : ubuntu-latest
1919 strategy :
20+ fail-fast : false
2021 matrix :
21- platform :
22- - target : x86_64
23- manylinux : auto
24- - target : x86
25- manylinux : auto
26- - target : aarch64
27- manylinux : " 2_28"
28- - target : armv7
29- manylinux : auto
30- - target : s390x
31- manylinux : auto
32- - target : ppc64le
33- manylinux : auto
22+ target :
23+ - x86_64
24+ - aarch64
25+ - armv7
26+ - s390x
27+ - ppc64le
3428 steps :
3529 - uses : actions/checkout@v4
3630 with :
@@ -41,14 +35,14 @@ jobs:
4135 - name : Build wheels
4236 uses : PyO3/maturin-action@v1
4337 with :
44- target : ${{ matrix.platform. target }}
38+ target : ${{ matrix.target }}
4539 args : --release --out dist -i 3.11 -F pyo3/abi3-py311 -F duckdb-bundled
4640 sccache : ${{ !startsWith(github.ref, 'refs/tags/') }}
47- manylinux : ${{ matrix.platform.manylinux }}
41+ manylinux : " 2_28 "
4842 - name : Upload wheels
4943 uses : actions/upload-artifact@v4
5044 with :
51- name : wheels-linux-${{ matrix.platform. target }}
45+ name : wheels-linux-${{ matrix.target }}
5246 path : dist
5347
5448 musllinux :
Original file line number Diff line number Diff line change @@ -49,6 +49,3 @@ futures-util = "0.3.31"
4949
5050[build-dependencies ]
5151cargo-lock = " 10"
52-
53- [patch .crates-io ]
54- duckdb = { git = " https://github.com/gadomski/duckdb-rs/" , branch = " arrow-v55" }
You can’t perform that action at this time.
0 commit comments