From 9255b43f628ea4546980167649c0497ffad5eede Mon Sep 17 00:00:00 2001 From: Brandon Ording Date: Mon, 20 Jan 2025 17:43:03 -0500 Subject: [PATCH] Use arm runner image for musl-arm64 --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5482c7d4..02614d18 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -37,7 +37,7 @@ jobs: name: linux-musl-x64 - os: ubuntu-24.04 name: linux-musl-arm - - os: ubuntu-24.04 + - os: ubuntu-24.04-arm name: linux-musl-arm64 - os: macos-13 name: osx-x64 @@ -56,7 +56,7 @@ jobs: if: runner.os == 'macOS' run: ./build.libgit2.sh - name: Setup QEMU - if: matrix.name == 'linux-musl-arm' || matrix.name == 'linux-musl-arm64' + if: matrix.name == 'linux-musl-arm' run: docker run --rm --privileged multiarch/qemu-user-static:register --reset - name: Build Linux if: runner.os == 'Linux'