From cae8038e197e612b020146e9bcffbb13e1f358ad Mon Sep 17 00:00:00 2001 From: Christopher Berner Date: Sat, 27 Apr 2024 17:32:48 -0700 Subject: [PATCH] Fix fuzzer on aarch64 OSX CI --- .github/workflows/ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 87b6ddbd..69b94a48 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -46,6 +46,12 @@ jobs: components: rustfmt, clippy default: true + - name: OSX x86 rust + if: startsWith(matrix.os, 'macos') + run: | + # For some reason this is required to run the fuzzer on OSX + rustup target add x86_64-apple-darwin + - name: Install cargo-deny if: steps.rust-cache.outputs.cache-hit != 'true' run: rustup run --install 1.74 cargo install --force --version 0.14.17 cargo-deny --locked