Skip to content

Commit 72fef36

Browse files
committed
apply fix
1 parent 8c6b6f4 commit 72fef36

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

.github/workflows/release_python_nightly.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
- { os: windows-latest }
5858
- { os: macos-latest, target: "universal2-apple-darwin" }
5959
- { os: ubuntu-latest, target: "x86_64" }
60-
- { os: ubuntu-latest, target: "aarch64" }
60+
- { os: ubuntu-latest, target: "aarch64", manylinux: "manylinux_2_28" }
6161
- { os: ubuntu-latest, target: "armv7l" }
6262
steps:
6363
- uses: actions/checkout@v4
@@ -72,13 +72,10 @@ jobs:
7272
- uses: PyO3/maturin-action@v1
7373
with:
7474
target: ${{ matrix.target }}
75-
manylinux: auto
75+
manylinux: ${{ matrix.manylinux || 'auto' }}
7676
working-directory: "bindings/python"
7777
command: build
7878
args: --release -o dist
79-
env:
80-
# Workaround ring 0.17 build issue
81-
CFLAGS_aarch64_unknown_linux_gnu: "-D__ARM_ARCH=8"
8279
- name: Upload wheels
8380
uses: actions/upload-artifact@v4
8481
with:

0 commit comments

Comments
 (0)