From b91d90d6b935363a07a5e8d374025cd9728e927d Mon Sep 17 00:00:00 2001 From: Tamir Duberstein Date: Wed, 23 Aug 2023 12:41:33 -0400 Subject: [PATCH] github: build qemu from source if bad signature See https://github.com/Homebrew/homebrew-core/issues/140244. --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fdb8b994..c6deec21 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -204,6 +204,8 @@ jobs: echo /usr/local/opt/findutils/libexec/gnubin >> $GITHUB_PATH echo /usr/local/opt/gnu-tar/libexec/gnubin >> $GITHUB_PATH echo /usr/local/opt/llvm/bin >> $GITHUB_PATH + # https://github.com/Homebrew/homebrew-core/issues/140244 + codesign --verify $(which qemu-system-x86_64) || brew reinstall qemu --build-from-source - name: bpf-linker if: runner.os == 'macOS'