From 2b5bc27db79e57528ee8a42608a537742d67aec4 Mon Sep 17 00:00:00 2001 From: Googlefan Date: Sun, 23 Feb 2025 05:45:23 +0000 Subject: [PATCH] tell me that I can use arm64 runner, f*** microsoft, update the doc NOW --- .github/workflows/CI.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 7f32a3e..4fe5faa 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -22,23 +22,19 @@ jobs: platform: - runner: ubuntu-latest target: x86_64 - - runner: ubuntu-latest + - runner: ubuntu-24.04-arm64 target: aarch64 steps: - uses: actions/checkout@v4 - uses: actions/setup-python@v5 with: python-version: 3.x - - uses: docker/setup-qemu-action@v3 - with: - platforms: linux/${{ matrix.platform.target }} - - run: docker build . -f .github/workflows/CI.Dockerfile --tag ci --platform linux/${{ matrix.platform.target }} + - run: docker build . -f .github/workflows/CI.Dockerfile --tag ci - name: Build wheels uses: PyO3/maturin-action@v1 with: target: ${{ matrix.platform.target }} args: --release --out dist --find-interpreter - docker-options: --platform linux/${{ matrix.platform.target }} sccache: 'true' manylinux: auto container: ci