From e70f0f1b912013ed473a6ffb5f967a2371309a8c Mon Sep 17 00:00:00 2001 From: Wilfred Hughes Date: Mon, 27 Nov 2023 18:13:25 +0000 Subject: [PATCH] Disable cross-compiling aarch64 on macos --- .github/workflows/test.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index aae625d4d6..c4a1b47574 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -15,7 +15,11 @@ jobs: - { target: x86_64-pc-windows-msvc, os: windows-latest } - { target: aarch64-unknown-linux-gnu, os: ubuntu-20.04, use-cross: true } - - { target: aarch64-apple-darwin, os: macos-latest, use-cross: true } + + # TODO: Support cross-compiling on macOS on CI, see + # https://github.com/cross-rs/cross-toolchains#apple-targets + # + # - { target: aarch64-apple-darwin, os: macos-latest, use-cross: true } # musl binaries produced by GitHub actions segfault when run, see # https://github.com/Wilfred/difftastic/issues/563