Skip to content

Commit

Permalink
chore(ci): upgrade to manylinux_2_28 for aarch64 Python wheels (#5522)
Browse files Browse the repository at this point in the history
  • Loading branch information
messense authored Jan 8, 2025
1 parent b212297 commit 1c287eb
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions .github/workflows/release_python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,8 @@ jobs:
- { os: windows-latest }
- { os: macos-latest, target: "universal2-apple-darwin" }
- { os: ubuntu-latest, target: "x86_64" }
- { os: ubuntu-latest, target: "aarch64" }
- { os: ubuntu-latest, target: "aarch64", manylinux: "manylinux_2_28" }
- { os: ubuntu-latest, target: "armv7l" }
env:
# Workaround ring 0.17 build issue
CFLAGS_aarch64_unknown_linux_gnu: "-D__ARM_ARCH=8"
steps:
- uses: actions/checkout@v4
- name: Setup Rust toolchain
Expand All @@ -75,15 +72,15 @@ jobs:
command: build
args: --release -o dist -i python3.11 --features=pyo3/extension-module,services-all,abi3
sccache: true
manylinux: auto
manylinux: ${{ matrix.manylinux || 'auto' }}
- uses: PyO3/maturin-action@v1
with:
working-directory: "bindings/python"
target: "${{ matrix.target }}"
command: build
args: --release -o dist -i python3.10 --features=pyo3/extension-module,services-all
sccache: true
manylinux: auto
manylinux: ${{ matrix.manylinux || 'auto' }}
- name: Build free-threaded wheels
# windows free-threading building doesn't work on windows
# https://github.com/apache/opendal/pull/5449#issuecomment-2560469190
Expand All @@ -95,7 +92,7 @@ jobs:
command: build
args: --release -o dist -i python3.13t --features=pyo3/extension-module,services-all
sccache: true
manylinux: auto
manylinux: ${{ matrix.manylinux || 'auto' }}
- name: Upload wheels
uses: actions/upload-artifact@v3
with:
Expand Down

0 comments on commit 1c287eb

Please sign in to comment.