From 7d9980205981d30ebeeaf4efbb24c0168d40a7ad Mon Sep 17 00:00:00 2001 From: YuYuKunKun <167679715+YuYuKunKun@users.noreply.github.com> Date: Wed, 27 May 2026 01:05:56 +0800 Subject: [PATCH] Delete Linux aarch64 build steps from publish.yml Removed the Linux aarch64 build configuration from the workflow. --- .github/workflows/publish.yml | 37 +---------------------------------- 1 file changed, 1 insertion(+), 36 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index e6be808..8faba07 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -45,42 +45,7 @@ jobs: name: wheels-linux-x86_64 path: chanlun-py/dist/ - # ============================================================ - # Linux aarch64 (宿主机交叉编译,非 manylinux) - # ============================================================ - linux-aarch64: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - - name: 安装 Python - uses: actions/setup-python@v5 - with: - python-version: '3.12' - - - name: 安装 Rust 工具链 + aarch64 目标 - uses: dtolnay/rust-toolchain@stable - with: - targets: aarch64-unknown-linux-gnu - - - name: 安装 aarch64 交叉编译器 - run: | - sudo apt-get update - sudo apt-get install -y gcc-aarch64-linux-gnu - - - name: 构建 wheel - uses: PyO3/maturin-action@v1 - with: - target: aarch64 - working-directory: chanlun-py - args: --release --out dist - - - name: 上传 wheel 产物 - uses: actions/upload-artifact@v4 - with: - name: wheels-linux-aarch64 - path: chanlun-py/dist/ - + # ============================================================ # macOS wheels (x86_64 + arm64) # ============================================================