diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2c9a13b6..1a765b1f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -98,9 +98,10 @@ jobs: uses: actions/checkout@v4 - name: Set up QEMU - uses: docker/setup-qemu-action@v3 - with: - platforms: arm + run: | + sudo apt-get update + sudo apt-get install -y qemu-user-static binfmt-support + docker run --rm --privileged multiarch/qemu-user-static --reset -p yes - name: Build ARMv7l uses: ./.github/actions/build-linux-arm diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 41fce4bc..759b3eed 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -85,9 +85,10 @@ jobs: uses: actions/checkout@v4 - name: Set up QEMU - uses: docker/setup-qemu-action@v3 - with: - platforms: arm + run: | + sudo apt-get update + sudo apt-get install -y qemu-user-static binfmt-support + docker run --rm --privileged multiarch/qemu-user-static --reset -p yes - name: Build ARMv7l uses: ./.github/actions/build-linux-arm