From 6c06a33465f2ec524401e5417b9fee96efdaadc4 Mon Sep 17 00:00:00 2001 From: Ben Lovell Date: Mon, 1 Sep 2025 18:36:13 +0200 Subject: [PATCH] chore: make armv7-unknown-linux-musleabihf optional armv7-unknown-linux-musleabihf is a [Tier 2 without Host Tools](https://doc.rust-lang.org/beta/rustc/platform-support.html#tier-2-without-host-tools) target. That means that we should expect it to not always build, as they do not provide any guarantees that it will. Since there's already a arm-unknown-linux-gnueabihf target, I don't think it should be the end of the world if the LLVM version doesn't build - at least there's still a binary for that platform. So in order to deal with the intermittent builds, I'm making this job not block --- .github/workflows/build-binaries.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/build-binaries.yml b/.github/workflows/build-binaries.yml index 365af733..2b9b181a 100644 --- a/.github/workflows/build-binaries.yml +++ b/.github/workflows/build-binaries.yml @@ -320,6 +320,7 @@ jobs: musllinux-cross: if: ${{ !contains(github.event.pull_request.labels.*.name, 'no-build') }} runs-on: ubuntu-latest + continue-on-error: ${{ matrix.platform.target == 'armv7-unknown-linux-musleabihf' }} strategy: matrix: platform: